test-kitchen 1.14.0 → 1.14.1
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 +4 -4
- data/CHANGELOG.md +17 -0
- data/MAINTAINERS.md +1 -0
- data/bin/kitchen +0 -0
- data/lib/kitchen/generator/init.rb +1 -1
- data/lib/kitchen/provisioner/chef/berkshelf.rb +1 -1
- data/lib/kitchen/version.rb +1 -1
- data/support/chef-client-zero.rb +0 -0
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c8ccafe4e398360bb727601769ea1ddfed256a55
|
|
4
|
+
data.tar.gz: abd5306dc5701626a6acd0e1e2fe58898d528af5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a3b4df81176556959785509f27c18b3936e8c32bcc8db7935f1b9ad8bfebae99cebd6d2076275accc0d49ff2553a21059c512efac66c47ae5f213654bff8e3c2
|
|
7
|
+
data.tar.gz: 2fc0aecc71a0eb17060c276bbb6f543962db4b9508f1aeeb65dc0e8a932fae786b7814a16369c11b041f45c84db0a3991681cbd9eb22660b3818937925c02e81
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## [v1.14.1](https://github.com/test-kitchen/test-kitchen/tree/v1.14.1) (2016-12-08)
|
|
4
|
+
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v1.14.0...v1.14.1)
|
|
5
|
+
|
|
6
|
+
**Closed issues:**
|
|
7
|
+
|
|
8
|
+
- Getting message: "Expected array default value for '--driver'; got "kitchen-vagrant" \(string\)" with every operation [\#1163](https://github.com/test-kitchen/test-kitchen/issues/1163)
|
|
9
|
+
- Possible to specify a custom bootstrap template? [\#1162](https://github.com/test-kitchen/test-kitchen/issues/1162)
|
|
10
|
+
- Deployment of cookbooks do differ from berks package [\#1158](https://github.com/test-kitchen/test-kitchen/issues/1158)
|
|
11
|
+
- Failed to complete \#create action: \[undefined method '\[\]' for nil:NilClass\] [\#1157](https://github.com/test-kitchen/test-kitchen/issues/1157)
|
|
12
|
+
- inspec works, but kitchen verify fails [\#1154](https://github.com/test-kitchen/test-kitchen/issues/1154)
|
|
13
|
+
|
|
14
|
+
**Merged pull requests:**
|
|
15
|
+
|
|
16
|
+
- Fix typo in berkshelf chef provisioner. [\#1160](https://github.com/test-kitchen/test-kitchen/pull/1160) ([thommay](https://github.com/thommay))
|
|
17
|
+
- Update MAINTAINERS.md [\#1156](https://github.com/test-kitchen/test-kitchen/pull/1156) ([afiune](https://github.com/afiune))
|
|
18
|
+
- Fix to work with Thor 0.19.2 [\#1155](https://github.com/test-kitchen/test-kitchen/pull/1155) ([coderanger](https://github.com/coderanger))
|
|
19
|
+
|
|
3
20
|
## [v1.14.0](https://github.com/test-kitchen/test-kitchen/tree/v1.14.0) (2016-11-22)
|
|
4
21
|
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v1.13.2...v1.14.0)
|
|
5
22
|
|
data/MAINTAINERS.md
CHANGED
data/bin/kitchen
CHANGED
|
File without changes
|
|
@@ -34,7 +34,7 @@ module Kitchen
|
|
|
34
34
|
class_option :driver,
|
|
35
35
|
:type => :array,
|
|
36
36
|
:aliases => "-D",
|
|
37
|
-
:default =>
|
|
37
|
+
:default => %w[kitchen-vagrant],
|
|
38
38
|
:desc => <<-D.gsub(/^\s+/, "").gsub(/\n/, " ")
|
|
39
39
|
One or more Kitchen Driver gems to be installed or added to a
|
|
40
40
|
Gemfile
|
|
@@ -64,7 +64,7 @@ module Kitchen
|
|
|
64
64
|
|
|
65
65
|
::Berkshelf.ui.mute do
|
|
66
66
|
berksfile_obj = ::Berkshelf::Berksfile.from_file(berksfile)
|
|
67
|
-
berksfile_obj.update if always_update &&
|
|
67
|
+
berksfile_obj.update if always_update && berksfile_obj.lockfile.present?
|
|
68
68
|
# Berkshelf requires the directory to not exist
|
|
69
69
|
FileUtils.rm_rf(path)
|
|
70
70
|
berksfile_obj.vendor(path)
|
data/lib/kitchen/version.rb
CHANGED
data/support/chef-client-zero.rb
CHANGED
|
File without changes
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: test-kitchen
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.14.
|
|
4
|
+
version: 1.14.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Fletcher Nichol
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-
|
|
11
|
+
date: 2016-12-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: mixlib-shellout
|
|
@@ -634,7 +634,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
634
634
|
version: '0'
|
|
635
635
|
requirements: []
|
|
636
636
|
rubyforge_project:
|
|
637
|
-
rubygems_version: 2.6.
|
|
637
|
+
rubygems_version: 2.6.8
|
|
638
638
|
signing_key:
|
|
639
639
|
specification_version: 4
|
|
640
640
|
summary: Test Kitchen is an integration tool for developing and testing infrastructure
|