kitchen-inspec 0.22.0 → 0.23.0
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/.travis.yml +0 -1
- data/CHANGELOG.md +24 -5
- data/Gemfile +1 -1
- data/kitchen-inspec.gemspec +1 -1
- data/lib/kitchen/verifier/inspec_version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6e190a03f80eb19bac069a41896c8cab22c04bb9
|
|
4
|
+
data.tar.gz: 5bf75bfa5793d990c96e5f89e01dc6f48554a179
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dee09855fe0c78a48aa4e3cb2a4ce94b8d5d18b12b1d6b57754716a5853da4f8d31f2422a413788bc0ff0304b8c02bd147fb5bdb89b6a98a0a86203a63542be8
|
|
7
|
+
data.tar.gz: 926cd594d9e6479e37bd8e03a1b5d6e4a946bc22814e99db93dda38a58da7e0b7085bf201e5de7a469f7169cfcbee6bb73a563dbd87d3fb7e5ab908eb4cd04d0
|
data/.travis.yml
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -1,16 +1,36 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
-
## [0.
|
|
4
|
-
[Full Changelog](https://github.com/chef/kitchen-inspec/compare/v0.
|
|
3
|
+
## [0.23.0](https://github.com/chef/kitchen-inspec/tree/0.23.0) (2018-02-28)
|
|
4
|
+
[Full Changelog](https://github.com/chef/kitchen-inspec/compare/v0.22.0...0.23.0)
|
|
5
5
|
|
|
6
|
-
**
|
|
6
|
+
**Closed issues:**
|
|
7
7
|
|
|
8
|
-
-
|
|
8
|
+
- InSpec 2.0.x is using a higher-version of concurrent-ruby 1.0 [\#165](https://github.com/chef/kitchen-inspec/issues/165)
|
|
9
|
+
|
|
10
|
+
**Merged pull requests:**
|
|
11
|
+
|
|
12
|
+
- Update kitchen inspec to support inspec 2.0. [\#168](https://github.com/chef/kitchen-inspec/pull/168) ([jquick](https://github.com/jquick))
|
|
13
|
+
- Fix travis-ci bundler issue [\#162](https://github.com/chef/kitchen-inspec/pull/162) ([jquick](https://github.com/jquick))
|
|
14
|
+
|
|
15
|
+
## [v0.22.0](https://github.com/chef/kitchen-inspec/tree/v0.22.0) (2018-01-17)
|
|
16
|
+
[Full Changelog](https://github.com/chef/kitchen-inspec/compare/v0.21.0...v0.22.0)
|
|
9
17
|
|
|
10
18
|
**Fixed bugs:**
|
|
11
19
|
|
|
12
20
|
- Can't use Branch for verifier [\#157](https://github.com/chef/kitchen-inspec/issues/157)
|
|
13
21
|
|
|
22
|
+
**Merged pull requests:**
|
|
23
|
+
|
|
24
|
+
- Release v0.22.0 [\#159](https://github.com/chef/kitchen-inspec/pull/159) ([adamleff](https://github.com/adamleff))
|
|
25
|
+
- git fetcher: support branch/tag/ref [\#158](https://github.com/chef/kitchen-inspec/pull/158) ([adamleff](https://github.com/adamleff))
|
|
26
|
+
|
|
27
|
+
## [v0.21.0](https://github.com/chef/kitchen-inspec/tree/v0.21.0) (2017-12-12)
|
|
28
|
+
[Full Changelog](https://github.com/chef/kitchen-inspec/compare/v0.20.0...v0.21.0)
|
|
29
|
+
|
|
30
|
+
**Implemented enhancements:**
|
|
31
|
+
|
|
32
|
+
- Support use of SSH agent without requiring a key path to be set [\#142](https://github.com/chef/kitchen-inspec/issues/142)
|
|
33
|
+
|
|
14
34
|
**Closed issues:**
|
|
15
35
|
|
|
16
36
|
- Expose --backend-cache command-line option [\#154](https://github.com/chef/kitchen-inspec/issues/154)
|
|
@@ -18,7 +38,6 @@
|
|
|
18
38
|
|
|
19
39
|
**Merged pull requests:**
|
|
20
40
|
|
|
21
|
-
- git fetcher: support branch/tag/ref [\#158](https://github.com/chef/kitchen-inspec/pull/158) ([adamleff](https://github.com/adamleff))
|
|
22
41
|
- Add the InSpec backend\_cache option [\#155](https://github.com/chef/kitchen-inspec/pull/155) ([jquick](https://github.com/jquick))
|
|
23
42
|
- correctly configure HTTPS WinRM [\#153](https://github.com/chef/kitchen-inspec/pull/153) ([joekhoobyar](https://github.com/joekhoobyar))
|
|
24
43
|
- Allow extending which transports are supported by kitchen-inspec [\#149](https://github.com/chef/kitchen-inspec/pull/149) ([coderanger](https://github.com/coderanger))
|
data/Gemfile
CHANGED
|
@@ -25,7 +25,7 @@ group :test do
|
|
|
25
25
|
gem "minitest", "~> 5.5"
|
|
26
26
|
gem "rake", "~> 11.0"
|
|
27
27
|
gem "chefstyle", "0.4.0"
|
|
28
|
-
gem "concurrent-ruby", "~> 0
|
|
28
|
+
gem "concurrent-ruby", "~> 1.0"
|
|
29
29
|
gem "codeclimate-test-reporter", :require => nil
|
|
30
30
|
gem "rspec"
|
|
31
31
|
gem "simplecov", "~> 0.12"
|
data/kitchen-inspec.gemspec
CHANGED
|
@@ -21,7 +21,7 @@ Gem::Specification.new do |spec|
|
|
|
21
21
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
22
22
|
spec.require_paths = ["lib"]
|
|
23
23
|
spec.required_ruby_version = ">= 2.1.0"
|
|
24
|
-
spec.add_dependency "inspec", ">=0.34.0", "<
|
|
24
|
+
spec.add_dependency "inspec", ">=0.34.0", "<3.0.0"
|
|
25
25
|
spec.add_dependency "test-kitchen", "~> 1.6"
|
|
26
26
|
spec.add_dependency "hashie", "~> 3.4"
|
|
27
27
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: kitchen-inspec
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.23.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Fletcher Nichol
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-
|
|
11
|
+
date: 2018-02-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: inspec
|
|
@@ -19,7 +19,7 @@ dependencies:
|
|
|
19
19
|
version: 0.34.0
|
|
20
20
|
- - "<"
|
|
21
21
|
- !ruby/object:Gem::Version
|
|
22
|
-
version:
|
|
22
|
+
version: 3.0.0
|
|
23
23
|
type: :runtime
|
|
24
24
|
prerelease: false
|
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -29,7 +29,7 @@ dependencies:
|
|
|
29
29
|
version: 0.34.0
|
|
30
30
|
- - "<"
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
|
-
version:
|
|
32
|
+
version: 3.0.0
|
|
33
33
|
- !ruby/object:Gem::Dependency
|
|
34
34
|
name: test-kitchen
|
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -103,7 +103,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
103
103
|
version: '0'
|
|
104
104
|
requirements: []
|
|
105
105
|
rubyforge_project:
|
|
106
|
-
rubygems_version: 2.
|
|
106
|
+
rubygems_version: 2.5.2
|
|
107
107
|
signing_key:
|
|
108
108
|
specification_version: 4
|
|
109
109
|
summary: A Test Kitchen Verifier for InSpec
|