Releases: Parallels/vagrant-parallels
Releases · Parallels/vagrant-parallels
v1.4.3
v1.4.2 - Parallels Desktop 11 for Mac
Enhancements:
- Added validation for Parallels Desktop 11 editions
Note: In Parallels Desktop 11 for Mac, only Pro and Business editions are compatible with this Vagrant provider. The Standard edition doesn't have a command line functionality and can not be used with Vagrant.
v1.4.1
v1.4.0
Feature:
- [Pre-release] Create VM as a linked clone: when enabled, the first
vagrant up
run will create a linked clone instead of a full clone of the box. This feature is available only starting since Parallels Desktop 11 (will be officially released in Q3 2015)
Bugfix:
v1.3.13
v1.3.12
v1.3.10
v1.3.9
Fix:
- Yet another fix for network configuration in Windows [GH-170#comment]
v1.3.8
v1.3.7
Fix:
- Fixed issue of "vagrant up" failure after disabling DHCPv4 server for Host-Only [GH-163]
Enhancement
- Added customization step
'post-import'
, which is triggered right after the importing new VM from a box [GH-165].
It is useful to call any actions which should be done only once, for example, new device adding:
config.vm.provider "parallels" do |v|
v.customize("post-import", ["set", :id, "--device-add", "hdd", "--image", "/path/to/new_disk.hdd", "--type", "expand"])
end