Releases: Parallels/vagrant-parallels
Releases · Parallels/vagrant-parallels
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.
v1.2.2
v1.2.1
Fix:
- Reboot the VM right after Parallels Tools installation/upgrade [GH-133]
Enhancement:
- Added
post-comm
customization step. It works like other customization commands, but it triggers during the VM boot, right after Vagrant will be able to execute a commands in the VM.
Usage example:
config.vm.provider "parallels" do |v|
v.customize('post-comm', ["exec", :id, "date > /boot_time"])
end
v1.2.0
Fixes (only for Parallels Desktop 10):
- Port Forwarding feature added. SSH sessions are working through the forwarded port by default.
- All Password Restrictions will be disabled while the
vagrant up
[GH-67]
Enhancement:
- Turned back an advanced synced folders for Linux, like it is implemented in the VirtualBox provider:
- Added
regen_box_uuid
customization option, which istrue
by default.
Being forced tofalse
, this option disables an automatic regeneration of box UUID. In this case theSMBIOS UUID
of each new VM will be copied from the box (template). It allows to save the activation status of Windows-based virtual machines.
How to use:
config.vm.provider "parallels" do |v|
v.regen_box_uuid = false
end
Bunch of refactoring
v1.2.0.rc2 - Port Forwarding & Import fixes
Fixes (only for Parallels Desktop 10, which is in closed beta):
- Forwarded ports are cleaned before VM
suspend
and restored before VMresume
. - Collision of forwarded ports can be repaired in
resume
as well (unlike VirtualBox, which has a known issue hashicorp/vagrant#1740)
Enhancement:
- Added
regen_box_uuid
customization option, which istrue
by default.
Being forced tofalse
, this option disables an automatic regeneration of box UUID. In this case theSMBIOS UUID
of each new VM will be copied from the box (template). It allows to save the activation status of Windows-based virtual machines.
Requested by #113 (comment)
How to use:
config.vm.provider "parallels" do |v|
v.regen_box_uuid = false
end
v1.2.0.rc1 New synced folders & Compatibility with Parallels Desktop 10 Beta
Pre-release
Turned back an advanced synced folders for Linux, like it is implemented in the VirtualBox provider:
- Possibility to set mount options [GH-100] [GH-103]
- Shared folders aren't missed after suspend/resume, [GH-102] is fixed
- It is possible to share single folder to the some mount points, [GH-105] is fixed
Changes related to Parallels Desktop 10 Closed Beta:
- Port Forwarding feature added. SSH sessions are working through the forwarded port by default.
- All Password Restrictions will be disabled while the
vagrant up
[GH-67]
Bunch of refactoring