Skip to content

Releases: Parallels/vagrant-parallels

v1.3.6 - Compatibility with Parallels Desktop 10.1.2 and higher

23 Dec 07:29
Compare
Choose a tag to compare

Fix:

  • Fixed issue of private networking and NFS shared folders in Parallels Desktop >= 10.1.2 [GH-160]

v1.3.5

20 Dec 21:38
Compare
Choose a tag to compare

Fixes:

  • Fixed regenerate SourceVmUuid for multiple machines in parallel mode [GH-153]
  • Fixed issue when Parallels Tools are never detected as "installed" [GH-156]

v1.3.4

31 Oct 07:51
Compare
Choose a tag to compare

Enhancement:

  • NFS synced folders don't require private_network set up anymore [GH-152].

v1.3.3

12 Oct 16:01
Compare
Choose a tag to compare

Fix:

  • Fixed error of private_network adapter configuration in multi-machine Vagrant environment [GH-148]

v1.3.0

10 Oct 07:56
Compare
Choose a tag to compare

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 and fmode options are not supported by prl_fs filesystem, the informative error message will be displayed. [GH-135]
  • Added sync_folders action support (relevant for using with docker provider) [GH-142]
  • Added support of name parameter in private_network definition [GH-136]

Fix:

  • Fixed error "Unable to connect to Parallels Service", occurred right after Parallels Desktop quit.

v1.2.2

25 Aug 14:10
Compare
Choose a tag to compare

Fixed an exception in recover method of handle_forwarded_port_collisions action with Parallels Desktop 8, 9

v1.2.1

22 Aug 06:31
Compare
Choose a tag to compare

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

13 Aug 07:06
Compare
Choose a tag to compare

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:
    • 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
  • Added regen_box_uuid customization option, which is true by default.
    Being forced to false, this option disables an automatic regeneration of box UUID. In this case the SMBIOS 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

05 Aug 12:36
Compare
Choose a tag to compare

Fixes (only for Parallels Desktop 10, which is in closed beta):

  • Forwarded ports are cleaned before VM suspend and restored before VM resume.
  • 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 is true by default.
    Being forced to false, this option disables an automatic regeneration of box UUID. In this case the SMBIOS 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

05 Aug 12:01
Compare
Choose a tag to compare

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