vagrant-vsphere 1.13.1 → 1.13.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.bumpversion.cfg +1 -1
- data/.ruby-version +1 -1
- data/.travis.yml +0 -7
- data/CHANGELOG.md +25 -1
- data/DEVELOPMENT.md +22 -0
- data/Gemfile +1 -1
- data/README.md +2 -2
- data/lib/vSphere/version.rb +1 -1
- data/spec/spec_helper.rb +1 -0
- data/vSphere.gemspec +4 -9
- metadata +14 -21
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: aa08d8d6114c99130e7734b30a121ce7974b405927ad2ae1dfdf7b5df75c0e7a
|
4
|
+
data.tar.gz: fad32b2024c114ef16cd30372cdee7056d785c1ea3886cbff64f9f11c259166f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cd46b2452ec25e62735b21deee3489bafff11f8624f50dfeba604b4b1254401d9aeed2833402838f058e8a33e287a8f2bfc87f9eab1b27106cc7f6c65b262913
|
7
|
+
data.tar.gz: ee875addfb3c573036b7be6bd2621162bb2701009071f4392e5203fc1bbca78fb4271556e149cf07c33feb1c5973efdbe5408f8379a34cf92d12e060de7b9410
|
data/.bumpversion.cfg
CHANGED
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.
|
1
|
+
2.6.5
|
data/.travis.yml
CHANGED
data/CHANGELOG.md
CHANGED
@@ -1,4 +1,28 @@
|
|
1
|
-
## [1.13.
|
1
|
+
## [1.13.5 (2021-01-05)](https://github.com/nsidc/vagrant-vsphere/releases/tag/v1.13.5)
|
2
|
+
- Pin nokogiri to 1.10.10. This fixes an issue where vagrant-vsphere failed to install due to
|
3
|
+
nokogiri requiring Ruby >=2.5. This is a workaround until the vagrant-nsidc plugin is updated
|
4
|
+
to work with newer versions of vagrant that are bundled with newer versions of Ruby
|
5
|
+
|
6
|
+
## [1.13.4 (2020-03-31)](https://github.com/nsidc/vagrant-vsphere/releases/tag/v1.13.4)
|
7
|
+
|
8
|
+
- Allow newer versions of i18n.
|
9
|
+
([jmartin-r7:release-i18n](https://github.com/nsidc/vagrant-vsphere/pull/286))
|
10
|
+
- Updated .ruby-version to 2.6.5
|
11
|
+
- Fix broken tests.
|
12
|
+
([wwestenbrink:master](https://github.com/nsidc/vagrant-vsphere/pull/283))
|
13
|
+
|
14
|
+
## [1.13.3 (2018-12-06)](https://github.com/nsidc/vagrant-vsphere/releases/tag/v1.13.3)
|
15
|
+
|
16
|
+
- Update i18n dependency to allow v1.1.1. This fixes an issue with
|
17
|
+
installation with Vagrant 2.2.x
|
18
|
+
([jarretlavallee:fix/master/il8n_deps](https://github.com/nsidc/vagrant-vsphere/pull/273)).
|
19
|
+
|
20
|
+
## [1.13.2 (2017-12-06)](https://github.com/nsidc/vagrant-vsphere/releases/tag/v1.13.2)
|
21
|
+
|
22
|
+
- Update rbvmomi dependency to v1.11.5 and greater (but still less than
|
23
|
+
2.0). v1.11.5 fixes the issue introduced in v1.11.4.
|
24
|
+
|
25
|
+
## [1.13.1 (2017-12-05)](https://github.com/nsidc/vagrant-vsphere/releases/tag/v1.13.1)
|
2
26
|
|
3
27
|
- Update rbvmomi dependency to avoid v1.11.4; something in
|
4
28
|
[2725089](https://github.com/vmware/rbvmomi/commit/2725089a08312315c4eb85f13296fc159f50b4d1)
|
data/DEVELOPMENT.md
CHANGED
@@ -65,3 +65,25 @@ prefers to be run from the official installer rather than through the gem.
|
|
65
65
|
Despite those warning messages, this is the
|
66
66
|
[officially recommended](https://docs.vagrantup.com/v2/plugins/development-basics.html)
|
67
67
|
method for Vagrant plugin development.
|
68
|
+
|
69
|
+
### Releasing
|
70
|
+
|
71
|
+
1) Ensure [travis-ci](https://travis-ci.org/github/nsidc/vagrant-vsphere/) build is passing
|
72
|
+
2) Ensure `CHANGELOG.md` is up-to-date with the changes to release
|
73
|
+
3) Update version in the code, according to [semver](https://semver.org/)
|
74
|
+
* [bumpversion](https://github.com/peritus/bumpversion) can be used; if not,
|
75
|
+
the version needs to be manually updated in `.bumpversion.cfg`,
|
76
|
+
`README.md`, and `lib/vSphere/version.rb` (e.g., as in
|
77
|
+
[`11eced2`](https://github.com/nsidc/vagrant-vsphere/commit/11eced2))
|
78
|
+
4) `bundle exec rake build`
|
79
|
+
* builds the plugin to `pkg/vagrant-vsphere-$VERSION.gem`
|
80
|
+
* install to your system vagrant for further testing with `vagrant plugin
|
81
|
+
install ./pkg/vagrant-vsphere-$VERSION.gem`
|
82
|
+
5) `bundle exec rake release`
|
83
|
+
* creates the version tag and pushes it to GitHub
|
84
|
+
* pushes the built gem to
|
85
|
+
[RubyGems.org](https://rubygems.org/gems/vagrant-vsphere/)
|
86
|
+
6) Update the [Releases page](https://github.com/nsidc/vagrant-vsphere/releases)
|
87
|
+
* the release name should match the version tag (e.g., `v1.2.3`)
|
88
|
+
* the release description can be the same as the `CHANGELOG.md` entry
|
89
|
+
* upload the `.gem` from RubyGems.org as an attached binary for the release
|
data/Gemfile
CHANGED
@@ -4,7 +4,7 @@ group :development do
|
|
4
4
|
# We depend on Vagrant for development, but we don't add it as a
|
5
5
|
# gem dependency because we expect to be installed within the
|
6
6
|
# Vagrant environment itself using `vagrant plugin`.
|
7
|
-
gem 'vagrant', github: 'mitchellh/vagrant'
|
7
|
+
gem 'vagrant', github: 'mitchellh/vagrant', ref: 'v2.2.6'
|
8
8
|
end
|
9
9
|
|
10
10
|
group :plugins do
|
data/README.md
CHANGED
@@ -19,9 +19,9 @@ This provider is built on top of the
|
|
19
19
|
* libxml2, libxml2-dev, libxslt, libxslt-dev
|
20
20
|
|
21
21
|
## Current Version
|
22
|
-
**version: 1.13.
|
22
|
+
**version: 1.13.5**
|
23
23
|
|
24
|
-
vagrant-vsphere (**version: 1.13.
|
24
|
+
vagrant-vsphere (**version: 1.13.5**) is available from
|
25
25
|
[RubyGems.org](https://rubygems.org/gems/vagrant-vsphere)
|
26
26
|
|
27
27
|
## Installation
|
data/lib/vSphere/version.rb
CHANGED
data/spec/spec_helper.rb
CHANGED
data/vSphere.gemspec
CHANGED
@@ -11,17 +11,12 @@ Gem::Specification.new do |s|
|
|
11
11
|
s.summary = 'VMWare vSphere provider'
|
12
12
|
s.description = 'Enables Vagrant to manage machines with VMWare vSphere.'
|
13
13
|
|
14
|
-
#
|
15
|
-
s.add_dependency 'nokogiri', '
|
14
|
+
# pin nokogiri to 1.10.10 to get around 1.11.0 requiring ruby >=2.5
|
15
|
+
s.add_dependency 'nokogiri', '1.10.10'
|
16
16
|
|
17
|
-
|
18
|
-
# https://github.com/nsidc/vagrant-vsphere/issues/139
|
19
|
-
#
|
20
|
-
# rbvmomi v1.11.4 broke cloning VMs at NSIDC, see
|
21
|
-
# https://github.com/vmware/rbvmomi/issues/127
|
22
|
-
s.add_dependency 'rbvmomi', '>=1.8.2', '<1.11.4'
|
17
|
+
s.add_dependency 'rbvmomi', '>=1.11.5', '<2.0.0'
|
23
18
|
|
24
|
-
s.add_dependency 'i18n', '>=0.6.4'
|
19
|
+
s.add_dependency 'i18n', '>=0.6.4'
|
25
20
|
|
26
21
|
s.add_development_dependency 'rake', '11.1.2' # pinned to accommodate rubocop 0.32.1
|
27
22
|
s.add_development_dependency 'rspec-core'
|
metadata
CHANGED
@@ -1,49 +1,49 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vagrant-vsphere
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.13.
|
4
|
+
version: 1.13.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Andrew Grauch
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-01-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: nokogiri
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- -
|
17
|
+
- - '='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
19
|
+
version: 1.10.10
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
|
-
- -
|
24
|
+
- - '='
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
26
|
+
version: 1.10.10
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: rbvmomi
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - ">="
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 1.
|
33
|
+
version: 1.11.5
|
34
34
|
- - "<"
|
35
35
|
- !ruby/object:Gem::Version
|
36
|
-
version:
|
36
|
+
version: 2.0.0
|
37
37
|
type: :runtime
|
38
38
|
prerelease: false
|
39
39
|
version_requirements: !ruby/object:Gem::Requirement
|
40
40
|
requirements:
|
41
41
|
- - ">="
|
42
42
|
- !ruby/object:Gem::Version
|
43
|
-
version: 1.
|
43
|
+
version: 1.11.5
|
44
44
|
- - "<"
|
45
45
|
- !ruby/object:Gem::Version
|
46
|
-
version:
|
46
|
+
version: 2.0.0
|
47
47
|
- !ruby/object:Gem::Dependency
|
48
48
|
name: i18n
|
49
49
|
requirement: !ruby/object:Gem::Requirement
|
@@ -51,9 +51,6 @@ dependencies:
|
|
51
51
|
- - ">="
|
52
52
|
- !ruby/object:Gem::Version
|
53
53
|
version: 0.6.4
|
54
|
-
- - "<="
|
55
|
-
- !ruby/object:Gem::Version
|
56
|
-
version: 0.8.0
|
57
54
|
type: :runtime
|
58
55
|
prerelease: false
|
59
56
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -61,9 +58,6 @@ dependencies:
|
|
61
58
|
- - ">="
|
62
59
|
- !ruby/object:Gem::Version
|
63
60
|
version: 0.6.4
|
64
|
-
- - "<="
|
65
|
-
- !ruby/object:Gem::Version
|
66
|
-
version: 0.8.0
|
67
61
|
- !ruby/object:Gem::Dependency
|
68
62
|
name: rake
|
69
63
|
requirement: !ruby/object:Gem::Requirement
|
@@ -203,7 +197,7 @@ homepage: ''
|
|
203
197
|
licenses:
|
204
198
|
- MIT
|
205
199
|
metadata: {}
|
206
|
-
post_install_message:
|
200
|
+
post_install_message:
|
207
201
|
rdoc_options: []
|
208
202
|
require_paths:
|
209
203
|
- lib
|
@@ -218,9 +212,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
218
212
|
- !ruby/object:Gem::Version
|
219
213
|
version: '0'
|
220
214
|
requirements: []
|
221
|
-
|
222
|
-
|
223
|
-
signing_key:
|
215
|
+
rubygems_version: 3.0.8
|
216
|
+
signing_key:
|
224
217
|
specification_version: 4
|
225
218
|
summary: VMWare vSphere provider
|
226
219
|
test_files:
|