vagrant-pe_build 0.18.1 → 0.18.2

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
  SHA256:
3
- metadata.gz: 47070fea96c9cfed9b26f7916bac18a43e8af3eeb65dd08605328f25f56b6c38
4
- data.tar.gz: 941bb346df8bc01b4638d3d5961d77a763aa83ecf54dfc060c7420225b8c4063
3
+ metadata.gz: b9b943a838c5705f709f6dcce389eadd458c3b08f5e87cc2002afad9bed79431
4
+ data.tar.gz: c5d8004a46bba0ac49a2b85e83eda645f86f8e022b34496603d56f6dbb1a1e11
5
5
  SHA512:
6
- metadata.gz: 9f3e6542d5f3749b8ae1912ca7bf842a1921b7ba8b658534d7cc3606174634b36877caec8e11b56b878920ed7c47e5b53e03ee8e12fc72ed600d1d9bcd63790c
7
- data.tar.gz: 3433c90c3eb6d59e02284c44b72a10308a8bb738cc7869016f662f114d7e202a6c20db7cea8a24742ac0af90f3e65c3f93f5594a4be3fe7827e592119eabdc0b
6
+ metadata.gz: d74845729357a3b21ba762c6e4900b85aed1f213fdf5cc19ea7864d141bf5d0e8645d1d5bfd63299aab5df0c8a6abfa9a6d9ae2639c86150c788ed012b9de39b
7
+ data.tar.gz: 3c87582284bb5a1f0e72594ce3a2d93c224e07df6951ba3d5ed9de38145d158ef345572f96ba31e19230b1e2a96fc554c999a039c62f37097b00f62cd1c099ca
@@ -29,6 +29,6 @@ matrix:
29
29
  - rvm: 2.4.4
30
30
  env: TEST_VAGRANT_VERSION=v2.1.5 BUNDLER_VERSION=1.16.1
31
31
  - rvm: 2.4.4
32
- env: TEST_VAGRANT_VERSION=v2.2.2 BUNDLER_VERSION=1.16.6
32
+ env: TEST_VAGRANT_VERSION=v2.2.3 BUNDLER_VERSION=1.16.6
33
33
  - rvm: 2.4.4
34
34
  env: TEST_VAGRANT_VERSION=HEAD BUNDLER_VERSION=1.16.6
data/CHANGELOG CHANGED
@@ -1,6 +1,23 @@
1
1
  vagrant-pe_build
2
2
  ================
3
3
 
4
+ 0.18.2
5
+ ------
6
+
7
+ 2019-01-29
8
+
9
+ This is a backwards compatible bugfix release.
10
+
11
+ * Add test coverage for Vagrant 2.2.3
12
+
13
+ * Add support for 2018.1.7
14
+
15
+ * Add support for 2019.0.2
16
+
17
+ * Disabled collection of analytics from PE installs created by the
18
+ vagrant-pe_build plugin.
19
+
20
+
4
21
  0.18.1
5
22
  ------
6
23
 
data/Gemfile CHANGED
@@ -1,7 +1,7 @@
1
1
  source 'https://rubygems.org'
2
2
  require 'rubygems/version'
3
3
 
4
- vagrant_branch = ENV['TEST_VAGRANT_VERSION'] || 'v2.2.2'
4
+ vagrant_branch = ENV['TEST_VAGRANT_VERSION'] || 'v2.2.3'
5
5
  vagrant_version = nil
6
6
 
7
7
  # Wrapping gemspec in the :plugins group causes Vagrant 1.5 and newer to
@@ -20,9 +20,8 @@ class PEBuild::Cap::RunInstall::POSIX
20
20
  #
21
21
  # @return [void]
22
22
  def self.run_install(machine, installer_path, answers, **options)
23
-
24
23
  if options.fetch(:use_pem, false)
25
- on_machine(machine, "#{installer_path}/puppet-enterprise-installer -c #{answers}")
24
+ on_machine(machine, "DISABLE_ANALYTICS=1 #{installer_path}/puppet-enterprise-installer -c #{answers}")
26
25
  else
27
26
  on_machine(machine, "#{installer_path}/puppet-enterprise-installer -a #{answers}")
28
27
  end
@@ -49,6 +49,6 @@ module PEBuild
49
49
  require 'pe_build/release/2018_1'
50
50
  require 'pe_build/release/2019_0'
51
51
 
52
- LATEST_VERSION = '2019.0.1'
52
+ LATEST_VERSION = '2019.0.2'
53
53
  end
54
54
  end
@@ -33,4 +33,6 @@ module PEBuild::Release
33
33
  @releases['2018.1.3'] = twentyeighteen_one_x
34
34
  @releases['2018.1.4'] = twentyeighteen_one_x
35
35
  @releases['2018.1.5'] = twentyeighteen_one_x
36
+ # 2018.1.6 was only shipped to AWS OpsWorks
37
+ @releases['2018.1.7'] = twentyeighteen_one_x
36
38
  end
@@ -28,4 +28,5 @@ module PEBuild::Release
28
28
 
29
29
  @releases['2019.0.0'] = twentynineteen_aught_x
30
30
  @releases['2019.0.1'] = twentynineteen_aught_x
31
+ @releases['2019.0.2'] = twentynineteen_aught_x
31
32
  end
@@ -1,3 +1,3 @@
1
1
  module PEBuild
2
- VERSION = '0.18.1'.freeze
2
+ VERSION = '0.18.2'.freeze
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.18.1
4
+ version: 0.18.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: 2019-01-01 00:00:00.000000000 Z
12
+ date: 2019-01-29 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: ruby-progressbar