vagrant-vsphere 1.13.4 → 1.13.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 122ef76e1e318918c3ae41a9d08dd3294a5622778d64d92dc7f9ca5a9a781afc
4
- data.tar.gz: 9023bbcf8d47bb0490afaf4669836a9eec929a321e7da1aa8dbd3503fa2011f8
3
+ metadata.gz: aa08d8d6114c99130e7734b30a121ce7974b405927ad2ae1dfdf7b5df75c0e7a
4
+ data.tar.gz: fad32b2024c114ef16cd30372cdee7056d785c1ea3886cbff64f9f11c259166f
5
5
  SHA512:
6
- metadata.gz: 69bfa799b9ebc91c983cb28d021584135b61e56a5d9fed1e77afbb518baa7a34d5132a3eea79c6896119c8c37204496f7924c95c06bef621d982cabd32985bb7
7
- data.tar.gz: cdaea22e2995e7ab9cb3cd971f9a5e4225735cc32a5b67b98a0f5280c56596e0744539b599763c5af0644a0000711c7b00fdf1c0120d99fbe779b284817f983f
6
+ metadata.gz: cd46b2452ec25e62735b21deee3489bafff11f8624f50dfeba604b4b1254401d9aeed2833402838f058e8a33e287a8f2bfc87f9eab1b27106cc7f6c65b262913
7
+ data.tar.gz: ee875addfb3c573036b7be6bd2621162bb2701009071f4392e5203fc1bbca78fb4271556e149cf07c33feb1c5973efdbe5408f8379a34cf92d12e060de7b9410
@@ -1,5 +1,5 @@
1
1
  [bumpversion]
2
- current_version = 1.13.4
2
+ current_version = 1.13.5
3
3
  tag = true
4
4
  commit = true
5
5
 
@@ -1,3 +1,8 @@
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
+
1
6
  ## [1.13.4 (2020-03-31)](https://github.com/nsidc/vagrant-vsphere/releases/tag/v1.13.4)
2
7
 
3
8
  - Allow newer versions of i18n.
@@ -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.4**
22
+ **version: 1.13.5**
23
23
 
24
- vagrant-vsphere (**version: 1.13.4**) is available from
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
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module VSphere
3
- VERSION = '1.13.4'
3
+ VERSION = '1.13.5'
4
4
  end
5
5
  end
@@ -11,8 +11,8 @@ 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
- # force the use of Nokogiri 1.5.x to prevent conflicts with older versions of zlib
15
- s.add_dependency 'nokogiri', '~>1.5'
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
17
  s.add_dependency 'rbvmomi', '>=1.11.5', '<2.0.0'
18
18
 
metadata CHANGED
@@ -1,29 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-vsphere
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.13.4
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: 2020-03-31 00:00:00.000000000 Z
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: '1.5'
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: '1.5'
26
+ version: 1.10.10
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: rbvmomi
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -197,7 +197,7 @@ homepage: ''
197
197
  licenses:
198
198
  - MIT
199
199
  metadata: {}
200
- post_install_message:
200
+ post_install_message:
201
201
  rdoc_options: []
202
202
  require_paths:
203
203
  - lib
@@ -213,7 +213,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
213
213
  version: '0'
214
214
  requirements: []
215
215
  rubygems_version: 3.0.8
216
- signing_key:
216
+ signing_key:
217
217
  specification_version: 4
218
218
  summary: VMWare vSphere provider
219
219
  test_files: