vagrant-pe_build 0.17.1 → 0.17.2

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
  SHA1:
3
- metadata.gz: 5474e47fdd255752e66bce0f03b62ecf67cff6ab
4
- data.tar.gz: feb3e80f45265ff226cdec7eac7db568ec0c4e1c
3
+ metadata.gz: c6554b62801c7a3c7ad0b0df7a07fe114d683d59
4
+ data.tar.gz: 3c5e00f4fb8b670453c1b1124e269b2769ea1810
5
5
  SHA512:
6
- metadata.gz: ab3773f6b2d131dca8a9d8d8939cd42c094103f62024c751426b791cdd2a55c7c7a123abecaf57fd70934a71d2b16385785045af42130606af4c5020ccc9c708
7
- data.tar.gz: 5a26dc77ce0143b4e49069d1a89ccdfbb7d26437f31894df1e119f167e991f439207e77c499642e5f00d32969b2e77e0499bfa7d9549ccdd4516a94c6b5026b9
6
+ metadata.gz: 295a5458ef78cd65073af65ae83a4c003b3ad5978932f47a87cb64642b5c38b2b46887990f789f235f2f9f7664401f84f94449acd751f212c5f399d0dbf2ebbb
7
+ data.tar.gz: f0fae21a1d7c0939b50c9f24fd77aa6f6032edfcd9892bc00dd282e09efae13d685d464feae2835f7819581a5ef49fd7420f262b4735f9d94af311df4883e7ee
data/CHANGELOG CHANGED
@@ -1,6 +1,16 @@
1
1
  vagrant-pe_build
2
2
  ================
3
3
 
4
+ 0.17.2
5
+ ------
6
+
7
+ 2017-02-16
8
+
9
+ This is a backwards compatible bugfix release.
10
+
11
+ * Update version check used when determining GPG key replacement.
12
+
13
+
4
14
  0.17.1
5
15
  ------
6
16
 
@@ -198,11 +198,9 @@ module PEBuild
198
198
  # Run a PEM install if the PE version is 2016.2.0 or newer.
199
199
  use_pem = (PEBuild::Util::VersionString.compare(@config.version, '2016.2.0') >= 0)
200
200
 
201
- # PE versions shipped prior to April 29th, 2016 were packaged with a
202
- # GPG key that expired on July 8th, 2016.
203
- update_gpg = (PEBuild::Util::VersionString.compare(@config.version, '3.8.5') < 0) ||
204
- ((PEBuild::Util::VersionString.compare(@config.version, '2015.2.0') >= 0) &&
205
- (PEBuild::Util::VersionString.compare(@config.version, '2016.1.2') < 0))
201
+ # PE versions prior to 2016.4.0 were signed with a GPG key that
202
+ # expired on January 2nd, 2017.
203
+ update_gpg = (PEBuild::Util::VersionString.compare(@config.version, '2016.4.0') < 0)
206
204
 
207
205
  if update_gpg
208
206
  machine.ui.info(
@@ -1,3 +1,3 @@
1
1
  module PEBuild
2
- VERSION = '0.17.1'
2
+ VERSION = '0.17.2'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-pe_build
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.17.1
4
+ version: 0.17.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Adrien Thebo
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2017-02-14 00:00:00.000000000 Z
12
+ date: 2017-02-18 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: ruby-progressbar