vagrant-parallels 2.4.0 → 2.4.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +22 -0
- data/lib/vagrant-parallels/util/common.rb +1 -1
- data/lib/vagrant-parallels/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2b5666de284879e9b3ea20a38dc3a132ad280a89dd6ec516ce21bbf8ff839a5c
|
4
|
+
data.tar.gz: d1828f81d1ebcb19c8d0054372db475082a83b25ad23c7c0dba1fb07e74aa019
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3d1f742e64b4fe8283cf110b4b9636291db21fca1686d92c38cc2376fe6b03cfa7a2e5c54a87ac16dab48052cf66e96f602dd920d860eb2886b83f21d52ff367
|
7
|
+
data.tar.gz: 7b2c507dfc64f46a168b7ee32c26e9db23e74306be8f5ec733166c669a363a45dd2119fca1c953a2f7e938fbeef303e1cc0bb691c51d0043a0344fa6f8a3662e
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,25 @@
|
|
1
|
+
## 2.4.2 (Feb 5, 2024)
|
2
|
+
|
3
|
+
BUG FIXES:
|
4
|
+
- Revert "use clonefile copy for macvm boxes"
|
5
|
+
[[GH-464](https://github.com/Parallels/vagrant-parallels/pull/464)]
|
6
|
+
## 2.4.1 (Oct 16, 2023)
|
7
|
+
IMPROVEMENTS:
|
8
|
+
- use clonefile copy for macvm boxes
|
9
|
+
[[GH-459](https://github.com/Parallels/vagrant-parallels/pull/459)]
|
10
|
+
|
11
|
+
BUG FIXES:
|
12
|
+
- Bump activesupport from 6.1.7.3 to 6.1.7.5
|
13
|
+
[[GH-457](https://github.com/Parallels/vagrant-parallels/pull/457)]
|
14
|
+
- Don't try to call methdods on Nil
|
15
|
+
[[GH-456](https://github.com/Parallels/vagrant-parallels/pull/456)]
|
16
|
+
- Add a doc note for releasing a new provider version
|
17
|
+
[[GH-452](https://github.com/Parallels/vagrant-parallels/pull/452)]
|
18
|
+
- website: Remove unused images
|
19
|
+
[[GH-450](https://github.com/Parallels/vagrant-parallels/pull/450)]
|
20
|
+
- adding macos
|
21
|
+
[[GH-447](https://github.com/Parallels/vagrant-parallels/pull/447)]
|
22
|
+
|
1
23
|
## 2.4.0 (May 22, 2023)
|
2
24
|
IMPROVEMENTS:
|
3
25
|
- Implement shared folder support for `.macvm` VMs
|
@@ -6,7 +6,7 @@ module VagrantPlugins
|
|
6
6
|
# Determines whether the VM's box contains a macOS guest for an Apple Silicon host.
|
7
7
|
# In this case the image file ends with '.macvm' instead of '.pvm'
|
8
8
|
def self.is_macvm(machine)
|
9
|
-
return !!Dir.glob(machine.box.directory.join('*.macvm')).first
|
9
|
+
return !machine.box.nil? && !!Dir.glob(machine.box.directory.join('*.macvm')).first
|
10
10
|
end
|
11
11
|
|
12
12
|
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: 2.4.
|
4
|
+
version: 2.4.2
|
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:
|
12
|
+
date: 2024-02-05 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: nokogiri
|
@@ -167,7 +167,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
167
167
|
- !ruby/object:Gem::Version
|
168
168
|
version: 1.3.6
|
169
169
|
requirements: []
|
170
|
-
rubygems_version: 3.
|
170
|
+
rubygems_version: 3.4.10
|
171
171
|
signing_key:
|
172
172
|
specification_version: 4
|
173
173
|
summary: Parallels provider for Vagrant.
|