Releases: Parallels/vagrant-parallels
Releases · Parallels/vagrant-parallels
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
v1.3.6 - Compatibility with Parallels Desktop 10.1.2 and higher
Fix:
- Fixed issue of private networking and NFS shared folders in Parallels Desktop >= 10.1.2 [GH-160]
v1.3.5
v1.3.4
v1.3.3
v1.3.0
Enhancements:
- Provider is marked as parallel. Now
vagrant up
will bootstrap all defined machines simultaneously (relevant to Multi-Machine environments) - Provider priority is set higher than 'virtualbox'. So that,
parallels
will be detected as default provider for Vagrant > 1.6 - Added sanity check of mount options for synced folders in Linux. Since
dmode
andfmode
options are not supported byprl_fs
filesystem, the informative error message will be displayed. [GH-135] - Added
sync_folders
action support (relevant for using withdocker
provider) [GH-142] - Added support of
name
parameter inprivate_network
definition [GH-136]
Fix:
- Fixed error "Unable to connect to Parallels Service", occurred right after Parallels Desktop quit.