r10k 3.3.2 → 3.3.3

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: c887307303f3824d75c36c71bba941d2727eb5ab
4
- data.tar.gz: fde4db259354fcec049b96538bf2440f4466e021
3
+ metadata.gz: 1c5e1d56a50eeaca95e17ebce9b11b29bf0566f3
4
+ data.tar.gz: e823ba782b16a2a01e574b07452170f2142180bb
5
5
  SHA512:
6
- metadata.gz: 3296cd805a5494b27e8bda6ff93644eae2b31feb73246bf5fccd1ba470cfe6a53bd62f6440f65fa8484cbb158c6b7c16b8534bfea5a0b92336c664fd03f44bb0
7
- data.tar.gz: 4ea29b8f13acddc4fbc89dc7d84ed458967ab95383fd6362f03a01d4f51f890aef944f4cc7a97d708f167dd1fd6e4dd6c0131976017e5fa36a58b0ba28f22e03
6
+ metadata.gz: 89919d96fa8f6e0542112b6864cabde14244aba8986ad65d63940d1ccdcfd7209b79f24da6b23edd6a3d92c22c2e7a24f7a96f1ab96c5a2d2924dbed159ab665
7
+ data.tar.gz: 38efbca6d8315176df86caeff0c60888f15798700e3733b104542baa82dd6ad3dc87c061bc341d4f577d9e4f9640a517a9106ce988dcd1c77fd8433283c3df1a
@@ -1,6 +1,13 @@
1
1
  CHANGELOG
2
2
  =========
3
3
 
4
+ 3.3.3
5
+ -----
6
+
7
+ ### Changes
8
+
9
+ - Update minitar version to 0.9, to match the version installed with puppet-agent
10
+
4
11
  3.3.2
5
12
  -----
6
13
 
@@ -31,26 +31,30 @@ steps:
31
31
  $gempath = Join-Path -Path (Get-Location) -ChildPath 'docker/.bundle/gems'
32
32
  bundle config --local gemfile $gemfile
33
33
  bundle config --local path $gempath
34
- bundle install
34
+ bundle install --with test
35
35
  displayName: Fetch Dependencies
36
+ timeoutInMinutes: 1
36
37
  name: fetch_deps
37
38
 
38
39
  - powershell: |
39
40
  . "$(bundle show pupperware)/ci/build.ps1"
40
41
  Write-HostDiagnostics
41
42
  displayName: Diagnostic Host Information
43
+ timeoutInMinutes: 2
42
44
  name: hostinfo
43
45
 
44
46
  - powershell: |
45
47
  . "$(bundle show pupperware)/ci/build.ps1"
46
48
  Lint-Dockerfile -Name $ENV:CONTAINER_NAME -Ignore ($ENV:LINT_IGNORES -split ' ')
47
49
  displayName: Lint $(CONTAINER_NAME) Dockerfile
50
+ timeoutInMinutes: 1
48
51
  name: lint_dockerfile
49
52
 
50
53
  - powershell: |
51
54
  . "$(bundle show pupperware)/ci/build.ps1"
52
55
  Build-Container -Name $ENV:CONTAINER_NAME -Namespace $ENV:NAMESPACE -PathOrUri $ENV:CONTAINER_BUILD_PATH
53
56
  displayName: Build $(CONTAINER_NAME) Container
57
+ timeoutInMinutes: 5
54
58
  name: build_container
55
59
 
56
60
  - powershell: |
@@ -63,6 +67,7 @@ steps:
63
67
  . "$(bundle show pupperware)/ci/build.ps1"
64
68
  Invoke-ContainerTest -Name $ENV:CONTAINER_NAME -Namespace $ENV:NAMESPACE
65
69
  displayName: Test $(CONTAINER_NAME)
70
+ timeoutInMinutes: 5
66
71
  name: test_container
67
72
 
68
73
  - task: PublishTestResults@2
@@ -76,5 +81,5 @@ steps:
76
81
  . "$(bundle show pupperware)/ci/build.ps1"
77
82
  Clear-BuildState -Name $ENV:CONTAINER_NAME -Namespace $ENV:NAMESPACE
78
83
  displayName: Container Cleanup
79
- timeoutInMinutes: 3
84
+ timeoutInMinutes: 4
80
85
  condition: always()
@@ -1,8 +1,11 @@
1
1
  source "https://rubygems.org"
2
2
 
3
- gem 'rspec'
4
- gem 'rspec_junit_formatter'
5
3
  gem 'pupperware',
6
4
  :git => 'https://github.com/puppetlabs/pupperware.git',
7
5
  :branch => 'master',
8
6
  :glob => 'gem/*.gemspec'
7
+
8
+ group :test do
9
+ gem 'rspec'
10
+ gem 'rspec_junit_formatter'
11
+ end
@@ -40,7 +40,8 @@ ifeq ($(IS_LATEST),true)
40
40
  endif
41
41
 
42
42
  test: prep
43
- @bundle install --path $$BUNDLE_PATH --gemfile $$GEMFILE
43
+ @bundle install --path $$BUNDLE_PATH --gemfile $$GEMFILE --with test
44
+ @bundle update
44
45
  @PUPPET_TEST_DOCKER_IMAGE=$(NAMESPACE)/r10k:$(version) \
45
46
  bundle exec --gemfile $$GEMFILE \
46
47
  rspec spec
@@ -1,3 +1,3 @@
1
1
  module R10K
2
- VERSION = '3.3.2'
2
+ VERSION = '3.3.3'
3
3
  end
@@ -37,7 +37,7 @@ Gem::Specification.new do |s|
37
37
  s.add_development_dependency 'rake'
38
38
 
39
39
  s.add_development_dependency 'yard', '~> 0.9.11'
40
- s.add_development_dependency 'minitar', '~> 0.6.1'
40
+ s.add_development_dependency 'minitar', '~> 0.9.0'
41
41
 
42
42
  s.files = %x[git ls-files].split($/)
43
43
  s.require_path = 'lib'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: r10k
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.3.2
4
+ version: 3.3.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Adrien Thebo
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-10-01 00:00:00.000000000 Z
11
+ date: 2019-10-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: colored
@@ -142,14 +142,14 @@ dependencies:
142
142
  requirements:
143
143
  - - "~>"
144
144
  - !ruby/object:Gem::Version
145
- version: 0.6.1
145
+ version: 0.9.0
146
146
  type: :development
147
147
  prerelease: false
148
148
  version_requirements: !ruby/object:Gem::Requirement
149
149
  requirements:
150
150
  - - "~>"
151
151
  - !ruby/object:Gem::Version
152
- version: 0.6.1
152
+ version: 0.9.0
153
153
  description: |2
154
154
  R10K provides a general purpose toolset for deploying Puppet environments and modules.
155
155
  It implements the Puppetfile format and provides a native implementation of Puppet