kitchen-inspec 0.22.0 → 0.23.0

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
  SHA1:
3
- metadata.gz: ad4914a1c6ff1f6606cdfc231cc8bfa58b640359
4
- data.tar.gz: c8df553a805f8115da1113b7fe4abd568006d166
3
+ metadata.gz: 6e190a03f80eb19bac069a41896c8cab22c04bb9
4
+ data.tar.gz: 5bf75bfa5793d990c96e5f89e01dc6f48554a179
5
5
  SHA512:
6
- metadata.gz: 4585ccf793c05ce905b399641cebace6a53adf1022b87f421a0575dba4094c1f9ec0b51cee7e67d3ab0c7792f132b80c1f2a43d79d216abeddedc9a17635fea4
7
- data.tar.gz: 1afccb9494a0faf1c25c76423fd69110d7d21073205f84f77d0d574f2899f6a778460911e27a3d502ecc9711ea148e75ad9fd2b43baa8c4824db0e55e7310255
6
+ metadata.gz: dee09855fe0c78a48aa4e3cb2a4ce94b8d5d18b12b1d6b57754716a5853da4f8d31f2422a413788bc0ff0304b8c02bd147fb5bdb89b6a98a0a86203a63542be8
7
+ data.tar.gz: 926cd594d9e6479e37bd8e03a1b5d6e4a946bc22814e99db93dda38a58da7e0b7085bf201e5de7a469f7169cfcbee6bb73a563dbd87d3fb7e5ab908eb4cd04d0
data/.travis.yml CHANGED
@@ -11,7 +11,6 @@ bundler_args: "--without integration guard tools"
11
11
  before_install:
12
12
  - gem update --system
13
13
  - gem --version
14
- - rvm @global do gem uninstall bundler -a -x
15
14
  - rvm @global do gem install bundler
16
15
  - bundle --version
17
16
  matrix:
data/CHANGELOG.md CHANGED
@@ -1,16 +1,36 @@
1
1
  # Change Log
2
2
 
3
- ## [0.22.0](https://github.com/chef/kitchen-inspec/tree/0.22.0) (2018-01-17)
4
- [Full Changelog](https://github.com/chef/kitchen-inspec/compare/v0.20.0...0.22.0)
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
- **Implemented enhancements:**
6
+ **Closed issues:**
7
7
 
8
- - Support use of SSH agent without requiring a key path to be set [\#142](https://github.com/chef/kitchen-inspec/issues/142)
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.9"
28
+ gem "concurrent-ruby", "~> 1.0"
29
29
  gem "codeclimate-test-reporter", :require => nil
30
30
  gem "rspec"
31
31
  gem "simplecov", "~> 0.12"
@@ -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", "<2.0.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
@@ -20,6 +20,6 @@
20
20
  module Kitchen
21
21
  module Verifier
22
22
  # Version string for InSpec Kitchen verifier
23
- INSPEC_VERSION = "0.22.0"
23
+ INSPEC_VERSION = "0.23.0"
24
24
  end
25
25
  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.22.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-01-17 00:00:00.000000000 Z
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: 2.0.0
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: 2.0.0
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.6.11
106
+ rubygems_version: 2.5.2
107
107
  signing_key:
108
108
  specification_version: 4
109
109
  summary: A Test Kitchen Verifier for InSpec