Skip to content

Releases: Parallels/vagrant-parallels

v1.4.3

26 Aug 15:23
Compare
Choose a tag to compare
  • Fixed error of linked clone creation in parallels mode [GH-206]
  • Source code refactoring

v1.4.2 - Parallels Desktop 11 for Mac

19 Aug 07:54
Compare
Choose a tag to compare

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

27 Jun 07:22
Compare
Choose a tag to compare

Bug fix:

  • Fix failure in customize action [GH-197]

v1.4.0

26 Jun 19:08
Compare
Choose a tag to compare

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:

  • Fix invalid IP detection with CoreOS and RancherOS guests [GH-194]
  • Fix failure while detecting prlctl binary path [GH-189]

v1.3.13

05 Jun 18:24
Compare
Choose a tag to compare
  • Improved MAC detection logic for "Shared" network adapter [GH-185]
  • Show error message if there is no "Shared" network adapter configured [GH-187]
  • Fixed failure in parallel runs of vagrant up

v1.3.12

28 May 12:59
Compare
Choose a tag to compare
  • Fixed error Vagrant could not detect Parallels Desktop! with Parallels Desktop 10.2.1 [GH-184]

v1.3.10

20 Apr 12:51
Compare
Choose a tag to compare
  • Minor localization fix
  • Added early support for upcoming version of Parallels Desktop

v1.3.9

10 Mar 11:37
Compare
Choose a tag to compare

Fix:

  • Yet another fix for network configuration in Windows [GH-170#comment]

v1.3.8

07 Feb 09:54
Compare
Choose a tag to compare

Fix:

  • Fixed network configuration for Windows guests [GH-170]

v1.3.7

25 Dec 15:10
Compare
Choose a tag to compare

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