vagrant-parallels 1.7.6 → 1.7.7

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2d0f47ab44bd976497251832fedd70f1e8f3e4d5
4
- data.tar.gz: 381682bc47c1d69d63414ea5c0cf6518f9863213
3
+ metadata.gz: e1b989493cac646a5465d495bc25d1de0ddf4ce2
4
+ data.tar.gz: 149dacfcde8c3c2854d8075b126f460e7ad8098b
5
5
  SHA512:
6
- metadata.gz: e4954c172515c7d8cced0919280c6133d45cbebdf6561cb7df581efd05a608a3ba3ca079fe0a95b3e7430dfe6aca66736bf3daae723680917e8e18c2be57f689
7
- data.tar.gz: d6427e9b410806a7de7f31d6aaa9bf71d9247b70adafb27e85767613ba4c30caf745ce88619f1174838ad9d1f920ceb1e7f0eca6e9cb79114a39204313cc2e41
6
+ metadata.gz: 03fdfd3a533bd9d02bf37e29e4c725afafe7f671aec54191921dcb863d5318e3d40209c9539792397b9643048b8102c73a02043abda2ee00f12b150618fa08f4
7
+ data.tar.gz: d13b70ee3baa613b2bc217f595ff8d37c1d47338649a453c6f7eb1e1a1a35b383769c11946476f727eee1b576022d348bbb73228c4a46bc1a0c70a902816d594
@@ -1,16 +1,29 @@
1
+ ## 1.7.7 (October 15, 2017)
2
+ BUG FIXES:
3
+ - Fixed synced folder mounting on guests with Upstart (Ubuntu 14.*)
4
+ [[GH-307](https://github.com/Parallels/vagrant-parallels/issues/307)]
5
+
6
+
7
+ ## 1.7.6 (July 31, 2017)
8
+ BUG FIXES:
9
+ - Fixed `vagrant up` failure if the box image was automatically renamed due
10
+ to the name conflict.
11
+ [[GH-303](https://github.com/Parallels/vagrant-parallels/issues/303)]
12
+
13
+
1
14
  ## 1.7.5 (May 27, 2017)
2
15
  BUG FIXES:
3
- - Fixed compatibility with Vagrant v1.9.5+. `nokogiri` gem is defined as
4
- a plugin runtime dependency.
5
- [[GH-297](https://github.com/Parallels/vagrant-parallels/issues/297)],
6
- [[GH-298](https://github.com/Parallels/vagrant-parallels/pull/298)]
7
-
8
- **NB!** To use the plugin with Vagrant v1.9.5 you should (re)install it with
9
- `NOKOGIRI_USE_SYSTEM_LIBRARIES` enabled:
10
- ```bash
11
- $ vagrant plugin uninstall vagrant-parallels
12
- $ NOKOGIRI_USE_SYSTEM_LIBRARIES=true vagrant plugin install vagrant-parallels
13
- ```
16
+ - Fixed compatibility with Vagrant v1.9.5+. `nokogiri` gem is defined as
17
+ a plugin runtime dependency.
18
+ [[GH-297](https://github.com/Parallels/vagrant-parallels/issues/297)],
19
+ [[GH-298](https://github.com/Parallels/vagrant-parallels/pull/298)]
20
+
21
+ **NB!** To use the plugin with Vagrant v1.9.5 you should (re)install it with
22
+ `NOKOGIRI_USE_SYSTEM_LIBRARIES` enabled:
23
+ ```bash
24
+ $ vagrant plugin uninstall vagrant-parallels
25
+ $ NOKOGIRI_USE_SYSTEM_LIBRARIES=true vagrant plugin install vagrant-parallels
26
+ ```
14
27
 
15
28
 
16
29
  ## 1.7.4 (April 20, 2017)
@@ -80,10 +80,11 @@ module VagrantPlugins
80
80
  end
81
81
 
82
82
  # Emit an upstart event if we can
83
- if machine.communicate.test('test -x /sbin/initctl')
84
- machine.communicate.sudo(
85
- "/sbin/initctl emit --no-wait vagrant-mounted MOUNTPOINT=#{expanded_guest_path}")
86
- end
83
+ machine.communicate.sudo <<-EOH.gsub(/^ {10}/, "")
84
+ if command -v /sbin/init && /sbin/init 2>/dev/null --version | grep upstart; then
85
+ /sbin/initctl emit --no-wait vagrant-mounted MOUNTPOINT=#{expanded_guest_path}
86
+ fi
87
+ EOH
87
88
  end
88
89
 
89
90
  def self.unmount_parallels_shared_folder(machine, guestpath, options)
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module Parallels
3
- VERSION = '1.7.6'
3
+ VERSION = '1.7.7'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-parallels
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.7.6
4
+ version: 1.7.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mikhail Zholobov
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2017-07-31 00:00:00.000000000 Z
12
+ date: 2017-10-15 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: nokogiri
@@ -45,14 +45,28 @@ dependencies:
45
45
  requirements:
46
46
  - - "~>"
47
47
  - !ruby/object:Gem::Version
48
- version: 2.14.0
48
+ version: 3.5.0
49
49
  type: :development
50
50
  prerelease: false
51
51
  version_requirements: !ruby/object:Gem::Requirement
52
52
  requirements:
53
53
  - - "~>"
54
54
  - !ruby/object:Gem::Version
55
- version: 2.14.0
55
+ version: 3.5.0
56
+ - !ruby/object:Gem::Dependency
57
+ name: rspec-its
58
+ requirement: !ruby/object:Gem::Requirement
59
+ requirements:
60
+ - - "~>"
61
+ - !ruby/object:Gem::Version
62
+ version: 1.2.0
63
+ type: :development
64
+ prerelease: false
65
+ version_requirements: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - "~>"
68
+ - !ruby/object:Gem::Version
69
+ version: 1.2.0
56
70
  description: Enables Vagrant to manage Parallels virtual machines.
57
71
  email:
58
72
  - mzholobov@parallels.com