kitchen-inspec 0.25.0 → 0.26.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 +5 -5
- data/.github/CODEOWNERS +3 -0
- data/.gitignore +11 -0
- data/.kitchen.yml +82 -0
- data/.rspec +2 -0
- data/.travis.yml +41 -0
- data/Berksfile +8 -0
- data/CHANGELOG.md +469 -0
- data/Gemfile +37 -0
- data/Guardfile +23 -0
- data/MAINTAINERS.md +13 -0
- data/README.md +275 -0
- data/Rakefile +129 -0
- data/kitchen-inspec.gemspec +24 -0
- data/lib/kitchen/verifier/inspec_version.rb +1 -1
- data/spec/kitchen/verifier/inspec_spec.rb +607 -0
- data/spec/spec_helper.rb +33 -0
- data/test/cookbooks/os_prepare/metadata.rb +8 -0
- data/test/cookbooks/os_prepare/recipes/default.rb +5 -0
- data/test/integration/attributes/controls/example.rb +11 -0
- data/test/integration/attributes/inspec.yml +8 -0
- data/test/integration/contains_inspec/inspec/_debug_spec.rb +1 -0
- data/test/integration/contains_inspec/inspec/os_spec.rb +7 -0
- data/test/integration/duplicates/dup.rb +13 -0
- data/test/integration/profile-attribute.yml +2 -0
- data/test/integration/profile/controls/example.rb +15 -0
- data/test/integration/profile/controls/gordon.rb +14 -0
- data/test/integration/profile/inspec.yml +10 -0
- data/test/integration/profile/libraries/gordon_config.rb +6 -0
- data/test/recipes/default/_debug_test.rb +1 -0
- data/test/recipes/default/os_test.rb +7 -0
- metadata +35 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 3357540d8d0252cf192cc4af20ab915567dcb9a4
|
|
4
|
+
data.tar.gz: a1ca3222820248f98b65f04f2df997bfb16d3aaf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 783196844266fd444cfac3b71165b6704b6fb2e78b20b2e98acf1d2392608b915f353abf81879c069247c731b5f1d440be0cdb99397b9d6f6585a7daef3d801b
|
|
7
|
+
data.tar.gz: 641d14e9bbd5105facd48173e37840f1584146cd4033790f6690158a2ce8aebf9a9f53e122c19338f5a60eb4596f6a75625ccd9ebbd53f0020a419f4d80e003d
|
data/.github/CODEOWNERS
ADDED
data/.gitignore
ADDED
data/.kitchen.yml
ADDED
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
---
|
|
2
|
+
driver:
|
|
3
|
+
name: dokken
|
|
4
|
+
|
|
5
|
+
transport:
|
|
6
|
+
name: dokken
|
|
7
|
+
|
|
8
|
+
provisioner:
|
|
9
|
+
name: dokken
|
|
10
|
+
|
|
11
|
+
verifier:
|
|
12
|
+
name: inspec
|
|
13
|
+
sudo: true
|
|
14
|
+
|
|
15
|
+
platforms:
|
|
16
|
+
- name: ubuntu
|
|
17
|
+
driver:
|
|
18
|
+
image: ubuntu:14.04
|
|
19
|
+
|
|
20
|
+
suites:
|
|
21
|
+
- name: default
|
|
22
|
+
run_list:
|
|
23
|
+
- recipe[os_prepare]
|
|
24
|
+
- name: profile
|
|
25
|
+
run_list:
|
|
26
|
+
- recipe[os_prepare]
|
|
27
|
+
- name: contains_inspec
|
|
28
|
+
run_list:
|
|
29
|
+
- recipe[os_prepare]
|
|
30
|
+
verifier:
|
|
31
|
+
inspec_tests:
|
|
32
|
+
- name: tmp
|
|
33
|
+
git: https://github.com/nathenharvey/tmp_compliance_profile.git
|
|
34
|
+
- name: supermarket
|
|
35
|
+
run_list:
|
|
36
|
+
- recipe[apt]
|
|
37
|
+
- recipe[ssh-hardening]
|
|
38
|
+
verifier:
|
|
39
|
+
inspec_tests:
|
|
40
|
+
- name: dev-sec/ssh-baseline
|
|
41
|
+
- name: backwards
|
|
42
|
+
run_list:
|
|
43
|
+
- recipe[os_prepare]
|
|
44
|
+
verifier:
|
|
45
|
+
inspec_tests:
|
|
46
|
+
- https://github.com/nathenharvey/tmp_compliance_profile.git
|
|
47
|
+
- name: duplicates
|
|
48
|
+
run_list:
|
|
49
|
+
- recipe[os_prepare]
|
|
50
|
+
verifier:
|
|
51
|
+
inspec_tests:
|
|
52
|
+
- path: ./test/integration/duplicates
|
|
53
|
+
- path: ./test/integration/duplicates
|
|
54
|
+
- name: attributes_inline
|
|
55
|
+
run_list:
|
|
56
|
+
- recipe[os_prepare]
|
|
57
|
+
verifier:
|
|
58
|
+
inspec_tests:
|
|
59
|
+
- path: ./test/integration/attributes
|
|
60
|
+
attributes:
|
|
61
|
+
user: bob
|
|
62
|
+
password: secret
|
|
63
|
+
- name: attributes_file
|
|
64
|
+
run_list:
|
|
65
|
+
- recipe[os_prepare]
|
|
66
|
+
verifier:
|
|
67
|
+
inspec_tests:
|
|
68
|
+
- test/integration/attributes
|
|
69
|
+
# - path: ./test/integration/attributes
|
|
70
|
+
attrs:
|
|
71
|
+
- test/integration/profile-attribute.yml
|
|
72
|
+
# before you are able to use the compliance plugin, you need to run
|
|
73
|
+
# insecure is only required if you use self-signed certificates
|
|
74
|
+
# $ inspec compliance login https://compliance.test --user admin --insecure --token ''
|
|
75
|
+
- name: compliance
|
|
76
|
+
run_list:
|
|
77
|
+
- recipe[apt]
|
|
78
|
+
- recipe[ssh-hardening]
|
|
79
|
+
verifier:
|
|
80
|
+
inspec_tests:
|
|
81
|
+
- name: ssh
|
|
82
|
+
compliance: base/ssh
|
data/.rspec
ADDED
data/.travis.yml
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
sudo: required
|
|
2
|
+
branches:
|
|
3
|
+
only:
|
|
4
|
+
- master
|
|
5
|
+
language: ruby
|
|
6
|
+
cache: bundler
|
|
7
|
+
services:
|
|
8
|
+
- docker
|
|
9
|
+
bundler_args: "--without integration guard tools"
|
|
10
|
+
before_install:
|
|
11
|
+
- gem update --system
|
|
12
|
+
- gem --version
|
|
13
|
+
- rvm @global do gem install bundler
|
|
14
|
+
- bundle --version
|
|
15
|
+
matrix:
|
|
16
|
+
include:
|
|
17
|
+
- rvm: 2.3.7
|
|
18
|
+
- rvm: 2.4.4
|
|
19
|
+
bundler_args: "--without guard tools"
|
|
20
|
+
script: bundle exec rake $SUITE
|
|
21
|
+
env: SUITE="test:integration" OS='default profile contains_inspec'
|
|
22
|
+
- rvm: 2.4.4
|
|
23
|
+
bundler_args: "--without guard tools"
|
|
24
|
+
script: bundle exec rake $SUITE
|
|
25
|
+
env: SUITE="test:integration" OS='backwards'
|
|
26
|
+
- rvm: 2.4.4
|
|
27
|
+
bundler_args: "--without guard tools"
|
|
28
|
+
script: bundle exec rake $SUITE
|
|
29
|
+
env: SUITE="test:integration" OS='duplicates'
|
|
30
|
+
- rvm: 2.4.4
|
|
31
|
+
bundler_args: "--without guard tools"
|
|
32
|
+
script: bundle exec rake $SUITE
|
|
33
|
+
env: SUITE="test:integration" OS='supermarket'
|
|
34
|
+
- rvm: 2.4.4
|
|
35
|
+
bundler_args: "--without guard tools"
|
|
36
|
+
script: bundle exec rake $SUITE
|
|
37
|
+
env: SUITE="test:integration" OS='attributes-inline attributes-file'
|
|
38
|
+
- rvm: 2.5.1
|
|
39
|
+
- rvm: ruby-head
|
|
40
|
+
allow_failures:
|
|
41
|
+
- rvm: ruby-head
|
data/Berksfile
ADDED
data/CHANGELOG.md
ADDED
|
@@ -0,0 +1,469 @@
|
|
|
1
|
+
# Change Log
|
|
2
|
+
|
|
3
|
+
## [0.25.0](https://github.com/chef/kitchen-inspec/tree/0.25.0) (2018-09-21)
|
|
4
|
+
[Full Changelog](https://github.com/chef/kitchen-inspec/compare/v0.24.0...0.25.0)
|
|
5
|
+
|
|
6
|
+
**Merged pull requests:**
|
|
7
|
+
|
|
8
|
+
- add new transport support - docker_cli [\#207](https://github.com/inspec/kitchen-inspec/issues/207)
|
|
9
|
+
- Slim the files that ship with the Gem [\#213](https://github.com/inspec/kitchen-inspec/issues/213)
|
|
10
|
+
- Allow InSpec 3.0 [\#214](https://github.com/inspec/kitchen-inspec/issues/214)
|
|
11
|
+
|
|
12
|
+
## [0.24.0](https://github.com/chef/kitchen-inspec/tree/0.24.0) (2018-09-21)
|
|
13
|
+
[Full Changelog](https://github.com/chef/kitchen-inspec/compare/v0.23.1...0.24.0)
|
|
14
|
+
|
|
15
|
+
**Fixed bugs:**
|
|
16
|
+
|
|
17
|
+
- supermarket\_url is not working [\#173](https://github.com/inspec/kitchen-inspec/issues/173)
|
|
18
|
+
- InSpec verifier in Test Kitchen does not support the new reporter output [\#164](https://github.com/inspec/kitchen-inspec/issues/164)
|
|
19
|
+
- Incompatible character encodings: UTF-8 and ASCII-8BIT while crawling a page which contains UTF Characters. [\#146](https://github.com/inspec/kitchen-inspec/issues/146)
|
|
20
|
+
|
|
21
|
+
**Closed issues:**
|
|
22
|
+
|
|
23
|
+
- %{platform} and %{suite} placeholders on reporter option are being applied wrong, it doesn't work at all now [\#202](https://github.com/inspec/kitchen-inspec/issues/202)
|
|
24
|
+
- Can't use InSpec AWS resources due to Gem dependency constraint [\#185](https://github.com/inspec/kitchen-inspec/issues/185)
|
|
25
|
+
- incompatible character encodings: UTF-8 and ASCII-8BIT when trying to match systemd units status [\#180](https://github.com/inspec/kitchen-inspec/issues/180)
|
|
26
|
+
- 0.22.0 breaks transport-rsync [\#160](https://github.com/inspec/kitchen-inspec/issues/160)
|
|
27
|
+
|
|
28
|
+
**Merged pull requests:**
|
|
29
|
+
|
|
30
|
+
- followup fix for \#190 [\#209](https://github.com/inspec/kitchen-inspec/pull/209) ([chris-rock](https://github.com/chris-rock))
|
|
31
|
+
- Add some testing around the reporter format replacements [\#205](https://github.com/inspec/kitchen-inspec/pull/205) ([jquick](https://github.com/jquick))
|
|
32
|
+
- Fix platform and suite placeholders being applied incorrectly on reporter option [\#203](https://github.com/inspec/kitchen-inspec/pull/203) ([wiebe](https://github.com/wiebe))
|
|
33
|
+
- Allow %{platform} and %{suite} placeholders for reporter option [\#200](https://github.com/inspec/kitchen-inspec/pull/200) ([MrWong99](https://github.com/MrWong99))
|
|
34
|
+
- Don't use deprecated format feature in README [\#199](https://github.com/inspec/kitchen-inspec/pull/199) ([MrWong99](https://github.com/MrWong99))
|
|
35
|
+
- Reshuffle the readme and add proxy/supermarket examples [\#190](https://github.com/inspec/kitchen-inspec/pull/190) ([tas50](https://github.com/tas50))
|
|
36
|
+
- Remove workaround for Ruby \< 2.0 [\#188](https://github.com/inspec/kitchen-inspec/pull/188) ([tas50](https://github.com/tas50))
|
|
37
|
+
- Update ruby version in travis [\#187](https://github.com/inspec/kitchen-inspec/pull/187) ([tas50](https://github.com/tas50))
|
|
38
|
+
- Update URLs for inspec not chef [\#186](https://github.com/inspec/kitchen-inspec/pull/186) ([tas50](https://github.com/tas50))
|
|
39
|
+
- Add the 'reporter' configuration option to kitchen-inspec [\#183](https://github.com/inspec/kitchen-inspec/pull/183) ([tim-pringle](https://github.com/tim-pringle))
|
|
40
|
+
- Add proxy\_command transport setting to inspec runner [\#176](https://github.com/inspec/kitchen-inspec/pull/176) ([tschroeder-zendesk](https://github.com/tschroeder-zendesk))
|
|
41
|
+
- add support for private supermarkets [\#174](https://github.com/inspec/kitchen-inspec/pull/174) ([chris-rock](https://github.com/chris-rock))
|
|
42
|
+
- Add support for the exec driver/transport [\#172](https://github.com/inspec/kitchen-inspec/pull/172) ([RoboticCheese](https://github.com/RoboticCheese))
|
|
43
|
+
|
|
44
|
+
## [v0.23.1](https://github.com/chef/kitchen-inspec/tree/v0.23.1) (2018-03-05)
|
|
45
|
+
[Full Changelog](https://github.com/chef/kitchen-inspec/compare/v0.23.0...v0.23.1)
|
|
46
|
+
|
|
47
|
+
**Fixed bugs:**
|
|
48
|
+
|
|
49
|
+
- Add inspec exit code 101 to the approved list [\#170](https://github.com/inspec/kitchen-inspec/pull/170) ([jquick](https://github.com/jquick))
|
|
50
|
+
|
|
51
|
+
**Merged pull requests:**
|
|
52
|
+
|
|
53
|
+
- Release kitchen inspec 0.23.1 [\#171](https://github.com/inspec/kitchen-inspec/pull/171) ([jquick](https://github.com/jquick))
|
|
54
|
+
- Fix inspec profile doc URL in README [\#166](https://github.com/inspec/kitchen-inspec/pull/166) ([james-stocks](https://github.com/james-stocks))
|
|
55
|
+
|
|
56
|
+
## [v0.23.0](https://github.com/chef/kitchen-inspec/tree/v0.23.0) (2018-02-28)
|
|
57
|
+
[Full Changelog](https://github.com/chef/kitchen-inspec/compare/v0.22.0...v0.23.0)
|
|
58
|
+
|
|
59
|
+
**Closed issues:**
|
|
60
|
+
|
|
61
|
+
- InSpec 2.0.x is using a higher-version of concurrent-ruby 1.0 [\#165](https://github.com/inspec/kitchen-inspec/issues/165)
|
|
62
|
+
|
|
63
|
+
**Merged pull requests:**
|
|
64
|
+
|
|
65
|
+
- Release kitchen inspec 0.23.0 [\#169](https://github.com/inspec/kitchen-inspec/pull/169) ([jquick](https://github.com/jquick))
|
|
66
|
+
- Update kitchen inspec to support inspec 2.0. [\#168](https://github.com/inspec/kitchen-inspec/pull/168) ([jquick](https://github.com/jquick))
|
|
67
|
+
- Fix travis-ci bundler issue [\#162](https://github.com/inspec/kitchen-inspec/pull/162) ([jquick](https://github.com/jquick))
|
|
68
|
+
|
|
69
|
+
## [v0.22.0](https://github.com/chef/kitchen-inspec/tree/v0.22.0) (2018-01-17)
|
|
70
|
+
[Full Changelog](https://github.com/chef/kitchen-inspec/compare/v0.21.0...v0.22.0)
|
|
71
|
+
|
|
72
|
+
**Fixed bugs:**
|
|
73
|
+
|
|
74
|
+
- Can't use Branch for verifier [\#157](https://github.com/inspec/kitchen-inspec/issues/157)
|
|
75
|
+
|
|
76
|
+
**Merged pull requests:**
|
|
77
|
+
|
|
78
|
+
- Release v0.22.0 [\#159](https://github.com/inspec/kitchen-inspec/pull/159) ([adamleff](https://github.com/adamleff))
|
|
79
|
+
- git fetcher: support branch/tag/ref [\#158](https://github.com/inspec/kitchen-inspec/pull/158) ([adamleff](https://github.com/adamleff))
|
|
80
|
+
|
|
81
|
+
## [v0.21.0](https://github.com/chef/kitchen-inspec/tree/v0.21.0) (2017-12-12)
|
|
82
|
+
[Full Changelog](https://github.com/chef/kitchen-inspec/compare/v0.20.0...v0.21.0)
|
|
83
|
+
|
|
84
|
+
**Implemented enhancements:**
|
|
85
|
+
|
|
86
|
+
- Support use of SSH agent without requiring a key path to be set [\#142](https://github.com/inspec/kitchen-inspec/issues/142)
|
|
87
|
+
|
|
88
|
+
**Closed issues:**
|
|
89
|
+
|
|
90
|
+
- Expose --backend-cache command-line option [\#154](https://github.com/inspec/kitchen-inspec/issues/154)
|
|
91
|
+
- kitchen-inspec fails to configure HTTPS winrm for inspec [\#152](https://github.com/inspec/kitchen-inspec/issues/152)
|
|
92
|
+
|
|
93
|
+
**Merged pull requests:**
|
|
94
|
+
|
|
95
|
+
- Add the InSpec backend\_cache option [\#155](https://github.com/inspec/kitchen-inspec/pull/155) ([jquick](https://github.com/jquick))
|
|
96
|
+
- correctly configure HTTPS WinRM [\#153](https://github.com/inspec/kitchen-inspec/pull/153) ([joekhoobyar](https://github.com/joekhoobyar))
|
|
97
|
+
- Allow extending which transports are supported by kitchen-inspec [\#149](https://github.com/inspec/kitchen-inspec/pull/149) ([coderanger](https://github.com/coderanger))
|
|
98
|
+
|
|
99
|
+
## [v0.20.0](https://github.com/chef/kitchen-inspec/tree/v0.20.0) (2017-11-13)
|
|
100
|
+
[Full Changelog](https://github.com/chef/kitchen-inspec/compare/v0.19.0...v0.20.0)
|
|
101
|
+
|
|
102
|
+
**Implemented enhancements:**
|
|
103
|
+
|
|
104
|
+
- Reuse the same test for multiple test suites in one cookbook [\#97](https://github.com/inspec/kitchen-inspec/issues/97)
|
|
105
|
+
- show test and result in the log [\#44](https://github.com/inspec/kitchen-inspec/issues/44)
|
|
106
|
+
- Remove the restriction of `\_spec` file [\#14](https://github.com/inspec/kitchen-inspec/issues/14)
|
|
107
|
+
|
|
108
|
+
**Fixed bugs:**
|
|
109
|
+
|
|
110
|
+
- Kitchen verify fails with the kitchen-docker plugin [\#83](https://github.com/inspec/kitchen-inspec/issues/83)
|
|
111
|
+
|
|
112
|
+
**Closed issues:**
|
|
113
|
+
|
|
114
|
+
- \[QUESTION\] kitchen-inspec formatter [\#147](https://github.com/inspec/kitchen-inspec/issues/147)
|
|
115
|
+
- Executing inspec against a container from within the host [\#145](https://github.com/inspec/kitchen-inspec/issues/145)
|
|
116
|
+
- Option to specify path to Inspec test with kitchen-inspec [\#139](https://github.com/inspec/kitchen-inspec/issues/139)
|
|
117
|
+
- False attribute value is not initializing [\#138](https://github.com/inspec/kitchen-inspec/issues/138)
|
|
118
|
+
- Failed to complete \#verify action: \[no implicit conversion of nil into String\] [\#135](https://github.com/inspec/kitchen-inspec/issues/135)
|
|
119
|
+
- Using tags/versioning for supermarket inspec profiles [\#134](https://github.com/inspec/kitchen-inspec/issues/134)
|
|
120
|
+
- chef exec kitchen verify fails for inspec tests [\#132](https://github.com/inspec/kitchen-inspec/issues/132)
|
|
121
|
+
- Intermittent SSH failures [\#127](https://github.com/inspec/kitchen-inspec/issues/127)
|
|
122
|
+
- Inspec Test Location [\#124](https://github.com/inspec/kitchen-inspec/issues/124)
|
|
123
|
+
- Output file support for multiple platforms and multiple test suites [\#121](https://github.com/inspec/kitchen-inspec/issues/121)
|
|
124
|
+
- Custom inspec resources not loaded: 'undefined method' [\#120](https://github.com/inspec/kitchen-inspec/issues/120)
|
|
125
|
+
- kitchen ec2 verifier broken [\#106](https://github.com/inspec/kitchen-inspec/issues/106)
|
|
126
|
+
- Vague error if 'platform' value is missing in platform section and inspec profile platfrom/os-family is set [\#101](https://github.com/inspec/kitchen-inspec/issues/101)
|
|
127
|
+
- lost support for spec\_helper in inspec [\#93](https://github.com/inspec/kitchen-inspec/issues/93)
|
|
128
|
+
- Make it easier to filter output [\#85](https://github.com/inspec/kitchen-inspec/issues/85)
|
|
129
|
+
- Can't verify when used with kitchen-digitalocean provider [\#78](https://github.com/inspec/kitchen-inspec/issues/78)
|
|
130
|
+
- Add way to define alternate test-path [\#70](https://github.com/inspec/kitchen-inspec/issues/70)
|
|
131
|
+
- Using profiles with kitchen-inspec [\#66](https://github.com/inspec/kitchen-inspec/issues/66)
|
|
132
|
+
- Colo\[u\]r those dots and Fs! [\#62](https://github.com/inspec/kitchen-inspec/issues/62)
|
|
133
|
+
- Error with apache\_conf on CentOS [\#37](https://github.com/inspec/kitchen-inspec/issues/37)
|
|
134
|
+
- kitchen-inspec breaks existing file pattern [\#11](https://github.com/inspec/kitchen-inspec/issues/11)
|
|
135
|
+
|
|
136
|
+
**Merged pull requests:**
|
|
137
|
+
|
|
138
|
+
- Release 0.20.0 [\#151](https://github.com/inspec/kitchen-inspec/pull/151) ([adamleff](https://github.com/adamleff))
|
|
139
|
+
- Add a CODEOWNERS file [\#144](https://github.com/inspec/kitchen-inspec/pull/144) ([adamleff](https://github.com/adamleff))
|
|
140
|
+
- Adding a maintainers file [\#143](https://github.com/inspec/kitchen-inspec/pull/143) ([adamleff](https://github.com/adamleff))
|
|
141
|
+
- Eliminate duplicate profiles being added to runner [\#141](https://github.com/inspec/kitchen-inspec/pull/141) ([adamleff](https://github.com/adamleff))
|
|
142
|
+
- Don't send keys\_only config to InSpec/Train [\#140](https://github.com/inspec/kitchen-inspec/pull/140) ([adamleff](https://github.com/adamleff))
|
|
143
|
+
|
|
144
|
+
## [v0.19.0](https://github.com/chef/kitchen-inspec/tree/v0.19.0) (2017-05-03)
|
|
145
|
+
[Full Changelog](https://github.com/chef/kitchen-inspec/compare/v0.18.0...v0.19.0)
|
|
146
|
+
|
|
147
|
+
**Merged pull requests:**
|
|
148
|
+
|
|
149
|
+
- add sudo\_options support [\#133](https://github.com/inspec/kitchen-inspec/pull/133) ([arlimus](https://github.com/arlimus))
|
|
150
|
+
|
|
151
|
+
## [v0.18.0](https://github.com/chef/kitchen-inspec/tree/v0.18.0) (2017-04-19)
|
|
152
|
+
[Full Changelog](https://github.com/chef/kitchen-inspec/compare/v0.17.0...v0.18.0)
|
|
153
|
+
|
|
154
|
+
**Implemented enhancements:**
|
|
155
|
+
|
|
156
|
+
- allow filtering controls [\#130](https://github.com/inspec/kitchen-inspec/pull/130) ([arlimus](https://github.com/arlimus))
|
|
157
|
+
|
|
158
|
+
**Closed issues:**
|
|
159
|
+
|
|
160
|
+
- kitchen verify failed with permission denied to create /.inpec directory [\#129](https://github.com/inspec/kitchen-inspec/issues/129)
|
|
161
|
+
- junit format does not always use proper classname. [\#126](https://github.com/inspec/kitchen-inspec/issues/126)
|
|
162
|
+
- Skipped tests report as failures in kitchen [\#125](https://github.com/inspec/kitchen-inspec/issues/125)
|
|
163
|
+
- gem resource breaks if not using a different installation path [\#107](https://github.com/inspec/kitchen-inspec/issues/107)
|
|
164
|
+
|
|
165
|
+
**Merged pull requests:**
|
|
166
|
+
|
|
167
|
+
- update kitchen test references [\#131](https://github.com/inspec/kitchen-inspec/pull/131) ([arlimus](https://github.com/arlimus))
|
|
168
|
+
|
|
169
|
+
## [v0.17.0](https://github.com/chef/kitchen-inspec/tree/v0.17.0) (2016-12-08)
|
|
170
|
+
[Full Changelog](https://github.com/chef/kitchen-inspec/compare/v0.16.1...v0.17.0)
|
|
171
|
+
|
|
172
|
+
**Implemented enhancements:**
|
|
173
|
+
|
|
174
|
+
- Support multiple outputs based on platform/test suite variables \(issue 121\) [\#122](https://github.com/inspec/kitchen-inspec/pull/122) ([jcastillocano](https://github.com/jcastillocano))
|
|
175
|
+
|
|
176
|
+
**Merged pull requests:**
|
|
177
|
+
|
|
178
|
+
- Tweak logging for clarity [\#123](https://github.com/inspec/kitchen-inspec/pull/123) ([tduffield](https://github.com/tduffield))
|
|
179
|
+
|
|
180
|
+
## [v0.16.1](https://github.com/chef/kitchen-inspec/tree/v0.16.1) (2016-11-11)
|
|
181
|
+
[Full Changelog](https://github.com/chef/kitchen-inspec/compare/v0.16.0...v0.16.1)
|
|
182
|
+
|
|
183
|
+
**Implemented enhancements:**
|
|
184
|
+
|
|
185
|
+
- Support InSpec attributes [\#108](https://github.com/inspec/kitchen-inspec/issues/108)
|
|
186
|
+
|
|
187
|
+
**Closed issues:**
|
|
188
|
+
|
|
189
|
+
- Incorrect dependencies on 0.16 release [\#117](https://github.com/inspec/kitchen-inspec/issues/117)
|
|
190
|
+
|
|
191
|
+
**Merged pull requests:**
|
|
192
|
+
|
|
193
|
+
- fix \#117 [\#118](https://github.com/inspec/kitchen-inspec/pull/118) ([chris-rock](https://github.com/chris-rock))
|
|
194
|
+
|
|
195
|
+
## [v0.16.0](https://github.com/chef/kitchen-inspec/tree/v0.16.0) (2016-11-04)
|
|
196
|
+
[Full Changelog](https://github.com/chef/kitchen-inspec/compare/v0.15.2...v0.16.0)
|
|
197
|
+
|
|
198
|
+
**Implemented enhancements:**
|
|
199
|
+
|
|
200
|
+
- Harmonize profile location targets [\#111](https://github.com/inspec/kitchen-inspec/issues/111)
|
|
201
|
+
- Add host and port config options [\#110](https://github.com/inspec/kitchen-inspec/pull/110) ([alexpop](https://github.com/alexpop))
|
|
202
|
+
|
|
203
|
+
**Fixed bugs:**
|
|
204
|
+
|
|
205
|
+
- Duplicate testing when verifier specified in suite definition [\#109](https://github.com/inspec/kitchen-inspec/issues/109)
|
|
206
|
+
- OS detection 2nd time with unknown value? [\#92](https://github.com/inspec/kitchen-inspec/issues/92)
|
|
207
|
+
|
|
208
|
+
**Closed issues:**
|
|
209
|
+
|
|
210
|
+
- Message: Could not load the 'inspec' verifier from the load path. Please ensure that your transport is installed as a gem or included in your Gemfile if using Bundler. [\#105](https://github.com/inspec/kitchen-inspec/issues/105)
|
|
211
|
+
|
|
212
|
+
**Merged pull requests:**
|
|
213
|
+
|
|
214
|
+
- add attributes support in kitchen-inspec [\#116](https://github.com/inspec/kitchen-inspec/pull/116) ([chris-rock](https://github.com/chris-rock))
|
|
215
|
+
- use suite names and only test master branch + PRs [\#115](https://github.com/inspec/kitchen-inspec/pull/115) ([chris-rock](https://github.com/chris-rock))
|
|
216
|
+
- fix duplicate testing when unique suite name [\#114](https://github.com/inspec/kitchen-inspec/pull/114) ([vjeffrey](https://github.com/vjeffrey))
|
|
217
|
+
- update readme to reflect harmonization of profile location targets [\#113](https://github.com/inspec/kitchen-inspec/pull/113) ([vjeffrey](https://github.com/vjeffrey))
|
|
218
|
+
- Make the info message clearer [\#112](https://github.com/inspec/kitchen-inspec/pull/112) ([chilicheech](https://github.com/chilicheech))
|
|
219
|
+
|
|
220
|
+
## [v0.15.2](https://github.com/chef/kitchen-inspec/tree/v0.15.2) (2016-09-26)
|
|
221
|
+
[Full Changelog](https://github.com/chef/kitchen-inspec/compare/v0.15.1...v0.15.2)
|
|
222
|
+
|
|
223
|
+
**Merged pull requests:**
|
|
224
|
+
|
|
225
|
+
- add support for inspec 1.0 [\#104](https://github.com/inspec/kitchen-inspec/pull/104) ([chris-rock](https://github.com/chris-rock))
|
|
226
|
+
- use double-quotes for rake bump\_version [\#102](https://github.com/inspec/kitchen-inspec/pull/102) ([chris-rock](https://github.com/chris-rock))
|
|
227
|
+
|
|
228
|
+
## [v0.15.1](https://github.com/chef/kitchen-inspec/tree/v0.15.1) (2016-09-05)
|
|
229
|
+
[Full Changelog](https://github.com/chef/kitchen-inspec/compare/v0.15.0...v0.15.1)
|
|
230
|
+
|
|
231
|
+
**Closed issues:**
|
|
232
|
+
|
|
233
|
+
- Kitchen verify/test fails when using the command resource with curl [\#100](https://github.com/inspec/kitchen-inspec/issues/100)
|
|
234
|
+
- Default to \( progress | documentation \) format for test-kitchen inspec verifier [\#91](https://github.com/inspec/kitchen-inspec/issues/91)
|
|
235
|
+
|
|
236
|
+
**Merged pull requests:**
|
|
237
|
+
|
|
238
|
+
- Require Ruby 2.1+ [\#99](https://github.com/inspec/kitchen-inspec/pull/99) ([tas50](https://github.com/tas50))
|
|
239
|
+
- Switch from finstyle / rubocop to chefstyle [\#98](https://github.com/inspec/kitchen-inspec/pull/98) ([tas50](https://github.com/tas50))
|
|
240
|
+
- Update winrm password key for winrm-v2 [\#94](https://github.com/inspec/kitchen-inspec/pull/94) ([mwrock](https://github.com/mwrock))
|
|
241
|
+
|
|
242
|
+
## [v0.15.0](https://github.com/chef/kitchen-inspec/tree/v0.15.0) (2016-07-15)
|
|
243
|
+
[Full Changelog](https://github.com/chef/kitchen-inspec/compare/v0.14.0...v0.15.0)
|
|
244
|
+
|
|
245
|
+
**Fixed bugs:**
|
|
246
|
+
|
|
247
|
+
- TTY issue with base AWS CentOS AMI [\#45](https://github.com/inspec/kitchen-inspec/issues/45)
|
|
248
|
+
|
|
249
|
+
**Closed issues:**
|
|
250
|
+
|
|
251
|
+
- kitchen converge fails on ubuntu [\#81](https://github.com/inspec/kitchen-inspec/issues/81)
|
|
252
|
+
|
|
253
|
+
**Merged pull requests:**
|
|
254
|
+
|
|
255
|
+
- Overwriting test\_base\_path to test/recipes instead of test/integration [\#95](https://github.com/inspec/kitchen-inspec/pull/95) ([tyler-ball](https://github.com/tyler-ball))
|
|
256
|
+
- demonstrated utilizing an array of profile sources [\#90](https://github.com/inspec/kitchen-inspec/pull/90) ([jeremymv2](https://github.com/jeremymv2))
|
|
257
|
+
|
|
258
|
+
## [v0.14.0](https://github.com/chef/kitchen-inspec/tree/v0.14.0) (2016-05-25)
|
|
259
|
+
[Full Changelog](https://github.com/chef/kitchen-inspec/compare/v0.13.0...v0.14.0)
|
|
260
|
+
|
|
261
|
+
**Closed issues:**
|
|
262
|
+
|
|
263
|
+
- How to verify with a local profile [\#88](https://github.com/inspec/kitchen-inspec/issues/88)
|
|
264
|
+
|
|
265
|
+
**Merged pull requests:**
|
|
266
|
+
|
|
267
|
+
- update readme with remote profile handling [\#89](https://github.com/inspec/kitchen-inspec/pull/89) ([chris-rock](https://github.com/chris-rock))
|
|
268
|
+
- depend on inspec 0.22+ [\#87](https://github.com/inspec/kitchen-inspec/pull/87) ([chris-rock](https://github.com/chris-rock))
|
|
269
|
+
- support for sudo\_command [\#86](https://github.com/inspec/kitchen-inspec/pull/86) ([jeremymv2](https://github.com/jeremymv2))
|
|
270
|
+
|
|
271
|
+
## [v0.13.0](https://github.com/chef/kitchen-inspec/tree/v0.13.0) (2016-05-10)
|
|
272
|
+
[Full Changelog](https://github.com/chef/kitchen-inspec/compare/v0.12.5...v0.13.0)
|
|
273
|
+
|
|
274
|
+
**Implemented enhancements:**
|
|
275
|
+
|
|
276
|
+
- Supermarket and Compliance support [\#84](https://github.com/inspec/kitchen-inspec/pull/84) ([chris-rock](https://github.com/chris-rock))
|
|
277
|
+
- add more debug messages [\#82](https://github.com/inspec/kitchen-inspec/pull/82) ([chris-rock](https://github.com/chris-rock))
|
|
278
|
+
|
|
279
|
+
**Fixed bugs:**
|
|
280
|
+
|
|
281
|
+
- Cannot run supermarket and compliance profiles [\#80](https://github.com/inspec/kitchen-inspec/issues/80)
|
|
282
|
+
|
|
283
|
+
**Merged pull requests:**
|
|
284
|
+
|
|
285
|
+
- release via travis to rubygems on tags [\#79](https://github.com/inspec/kitchen-inspec/pull/79) ([arlimus](https://github.com/arlimus))
|
|
286
|
+
- fix lint [\#77](https://github.com/inspec/kitchen-inspec/pull/77) ([chris-rock](https://github.com/chris-rock))
|
|
287
|
+
- fix lint [\#76](https://github.com/inspec/kitchen-inspec/pull/76) ([chris-rock](https://github.com/chris-rock))
|
|
288
|
+
- Add support for profiles\_path [\#75](https://github.com/inspec/kitchen-inspec/pull/75) ([brettlangdon](https://github.com/brettlangdon))
|
|
289
|
+
- Add complete profile example to readme [\#73](https://github.com/inspec/kitchen-inspec/pull/73) ([alexpop](https://github.com/alexpop))
|
|
290
|
+
- Use only the keys provided by Kitchen [\#72](https://github.com/inspec/kitchen-inspec/pull/72) ([ehartmann](https://github.com/ehartmann))
|
|
291
|
+
- Support color flag [\#71](https://github.com/inspec/kitchen-inspec/pull/71) ([jbussdieker](https://github.com/jbussdieker))
|
|
292
|
+
|
|
293
|
+
## [v0.12.5](https://github.com/chef/kitchen-inspec/tree/v0.12.5) (2016-03-17)
|
|
294
|
+
[Full Changelog](https://github.com/chef/kitchen-inspec/compare/v0.12.4...v0.12.5)
|
|
295
|
+
|
|
296
|
+
**Merged pull requests:**
|
|
297
|
+
|
|
298
|
+
- 0.12.5 [\#69](https://github.com/inspec/kitchen-inspec/pull/69) ([arlimus](https://github.com/arlimus))
|
|
299
|
+
- allow for slightly newer versions of inspec [\#68](https://github.com/inspec/kitchen-inspec/pull/68) ([arlimus](https://github.com/arlimus))
|
|
300
|
+
|
|
301
|
+
## [v0.12.4](https://github.com/chef/kitchen-inspec/tree/v0.12.4) (2016-03-15)
|
|
302
|
+
[Full Changelog](https://github.com/chef/kitchen-inspec/compare/v0.12.3...v0.12.4)
|
|
303
|
+
|
|
304
|
+
**Implemented enhancements:**
|
|
305
|
+
|
|
306
|
+
- InSpec Profile [\#46](https://github.com/inspec/kitchen-inspec/issues/46)
|
|
307
|
+
|
|
308
|
+
**Fixed bugs:**
|
|
309
|
+
|
|
310
|
+
- `kitchen verify` fails on Windows [\#57](https://github.com/inspec/kitchen-inspec/issues/57)
|
|
311
|
+
|
|
312
|
+
**Closed issues:**
|
|
313
|
+
|
|
314
|
+
- Unable to test installed Gems [\#65](https://github.com/inspec/kitchen-inspec/issues/65)
|
|
315
|
+
- InSpec Profile support in kitchen-inspec [\#39](https://github.com/inspec/kitchen-inspec/issues/39)
|
|
316
|
+
|
|
317
|
+
**Merged pull requests:**
|
|
318
|
+
|
|
319
|
+
- 0.12.4 [\#67](https://github.com/inspec/kitchen-inspec/pull/67) ([chris-rock](https://github.com/chris-rock))
|
|
320
|
+
- add output to runner options [\#64](https://github.com/inspec/kitchen-inspec/pull/64) ([vjeffrey](https://github.com/vjeffrey))
|
|
321
|
+
- Improve handling for remote profiles [\#63](https://github.com/inspec/kitchen-inspec/pull/63) ([chris-rock](https://github.com/chris-rock))
|
|
322
|
+
|
|
323
|
+
## [v0.12.3](https://github.com/chef/kitchen-inspec/tree/v0.12.3) (2016-03-01)
|
|
324
|
+
[Full Changelog](https://github.com/chef/kitchen-inspec/compare/v0.12.2...v0.12.3)
|
|
325
|
+
|
|
326
|
+
**Implemented enhancements:**
|
|
327
|
+
|
|
328
|
+
- fix gem build license warning [\#59](https://github.com/inspec/kitchen-inspec/pull/59) ([chris-rock](https://github.com/chris-rock))
|
|
329
|
+
- Add support for remote profiles [\#51](https://github.com/inspec/kitchen-inspec/pull/51) ([chris-rock](https://github.com/chris-rock))
|
|
330
|
+
|
|
331
|
+
**Merged pull requests:**
|
|
332
|
+
|
|
333
|
+
- 0.12.3 [\#61](https://github.com/inspec/kitchen-inspec/pull/61) ([chris-rock](https://github.com/chris-rock))
|
|
334
|
+
- add test-kitchen 1.6 as dependency [\#60](https://github.com/inspec/kitchen-inspec/pull/60) ([chris-rock](https://github.com/chris-rock))
|
|
335
|
+
- Bump berks requirement to latest [\#58](https://github.com/inspec/kitchen-inspec/pull/58) ([jkeiser](https://github.com/jkeiser))
|
|
336
|
+
|
|
337
|
+
## [v0.12.2](https://github.com/chef/kitchen-inspec/tree/v0.12.2) (2016-02-22)
|
|
338
|
+
[Full Changelog](https://github.com/chef/kitchen-inspec/compare/v0.12.1...v0.12.2)
|
|
339
|
+
|
|
340
|
+
**Fixed bugs:**
|
|
341
|
+
|
|
342
|
+
- Load directory from single inspec directory [\#54](https://github.com/inspec/kitchen-inspec/issues/54)
|
|
343
|
+
- update to latest runner interface in inspec [\#56](https://github.com/inspec/kitchen-inspec/pull/56) ([chris-rock](https://github.com/chris-rock))
|
|
344
|
+
|
|
345
|
+
## [v0.12.1](https://github.com/chef/kitchen-inspec/tree/v0.12.1) (2016-02-22)
|
|
346
|
+
[Full Changelog](https://github.com/chef/kitchen-inspec/compare/v0.12.0...v0.12.1)
|
|
347
|
+
|
|
348
|
+
**Implemented enhancements:**
|
|
349
|
+
|
|
350
|
+
- Support inspec dir in the test suite dir [\#55](https://github.com/inspec/kitchen-inspec/pull/55) ([alexpop](https://github.com/alexpop))
|
|
351
|
+
|
|
352
|
+
## [v0.12.0](https://github.com/chef/kitchen-inspec/tree/v0.12.0) (2016-02-19)
|
|
353
|
+
[Full Changelog](https://github.com/chef/kitchen-inspec/compare/v0.11.1...v0.12.0)
|
|
354
|
+
|
|
355
|
+
**Implemented enhancements:**
|
|
356
|
+
|
|
357
|
+
- move integration tests to top-level [\#50](https://github.com/inspec/kitchen-inspec/pull/50) ([chris-rock](https://github.com/chris-rock))
|
|
358
|
+
- support embedded profiles, leave directory checking to inspec [\#49](https://github.com/inspec/kitchen-inspec/pull/49) ([chris-rock](https://github.com/chris-rock))
|
|
359
|
+
|
|
360
|
+
**Fixed bugs:**
|
|
361
|
+
|
|
362
|
+
- Point test-kitchen to master in Gemfile [\#48](https://github.com/inspec/kitchen-inspec/pull/48) ([jaym](https://github.com/jaym))
|
|
363
|
+
|
|
364
|
+
**Merged pull requests:**
|
|
365
|
+
|
|
366
|
+
- require latest inspec version [\#53](https://github.com/inspec/kitchen-inspec/pull/53) ([chris-rock](https://github.com/chris-rock))
|
|
367
|
+
- 0.12.0 [\#52](https://github.com/inspec/kitchen-inspec/pull/52) ([chris-rock](https://github.com/chris-rock))
|
|
368
|
+
|
|
369
|
+
## [v0.11.1](https://github.com/chef/kitchen-inspec/tree/v0.11.1) (2016-02-15)
|
|
370
|
+
[Full Changelog](https://github.com/chef/kitchen-inspec/compare/v0.11.0...v0.11.1)
|
|
371
|
+
|
|
372
|
+
**Implemented enhancements:**
|
|
373
|
+
|
|
374
|
+
- work well with other testing frameworks in test-kitchen [\#40](https://github.com/inspec/kitchen-inspec/pull/40) ([chris-rock](https://github.com/chris-rock))
|
|
375
|
+
|
|
376
|
+
**Fixed bugs:**
|
|
377
|
+
|
|
378
|
+
- bugfix: use the right container in combination with kitchen-dokken [\#43](https://github.com/inspec/kitchen-inspec/pull/43) ([chris-rock](https://github.com/chris-rock))
|
|
379
|
+
|
|
380
|
+
**Merged pull requests:**
|
|
381
|
+
|
|
382
|
+
- 0.11.1 [\#47](https://github.com/inspec/kitchen-inspec/pull/47) ([chris-rock](https://github.com/chris-rock))
|
|
383
|
+
- deduplicate Gemfiles [\#41](https://github.com/inspec/kitchen-inspec/pull/41) ([srenatus](https://github.com/srenatus))
|
|
384
|
+
|
|
385
|
+
## [v0.11.0](https://github.com/chef/kitchen-inspec/tree/v0.11.0) (2016-02-08)
|
|
386
|
+
[Full Changelog](https://github.com/chef/kitchen-inspec/compare/v0.10.1...v0.11.0)
|
|
387
|
+
|
|
388
|
+
**Implemented enhancements:**
|
|
389
|
+
|
|
390
|
+
- Add integration test with test-kitchen [\#33](https://github.com/inspec/kitchen-inspec/pull/33) ([chris-rock](https://github.com/chris-rock))
|
|
391
|
+
|
|
392
|
+
**Closed issues:**
|
|
393
|
+
|
|
394
|
+
- Failures should be tagged with the instance they failed against [\#30](https://github.com/inspec/kitchen-inspec/issues/30)
|
|
395
|
+
- kitchen verify has exit status 0 with failed examples [\#9](https://github.com/inspec/kitchen-inspec/issues/9)
|
|
396
|
+
|
|
397
|
+
**Merged pull requests:**
|
|
398
|
+
|
|
399
|
+
- 0.11.0 [\#38](https://github.com/inspec/kitchen-inspec/pull/38) ([chris-rock](https://github.com/chris-rock))
|
|
400
|
+
|
|
401
|
+
## [v0.10.1](https://github.com/chef/kitchen-inspec/tree/v0.10.1) (2016-01-15)
|
|
402
|
+
[Full Changelog](https://github.com/chef/kitchen-inspec/compare/v0.10.0...v0.10.1)
|
|
403
|
+
|
|
404
|
+
**Closed issues:**
|
|
405
|
+
|
|
406
|
+
- Inspec does not gracefully allow transports other than winrm and ssh. [\#31](https://github.com/inspec/kitchen-inspec/issues/31)
|
|
407
|
+
- Specify inspec output formats in .kitchen.yml [\#26](https://github.com/inspec/kitchen-inspec/issues/26)
|
|
408
|
+
|
|
409
|
+
**Merged pull requests:**
|
|
410
|
+
|
|
411
|
+
- 0.10.1 [\#34](https://github.com/inspec/kitchen-inspec/pull/34) ([chris-rock](https://github.com/chris-rock))
|
|
412
|
+
- Allow transports which are subclasses of the core ones. [\#32](https://github.com/inspec/kitchen-inspec/pull/32) ([coderanger](https://github.com/coderanger))
|
|
413
|
+
|
|
414
|
+
## [v0.10.0](https://github.com/chef/kitchen-inspec/tree/v0.10.0) (2016-01-07)
|
|
415
|
+
[Full Changelog](https://github.com/chef/kitchen-inspec/compare/v0.9.6...v0.10.0)
|
|
416
|
+
|
|
417
|
+
**Fixed bugs:**
|
|
418
|
+
|
|
419
|
+
- kitchen test destroys the instance with failing tests [\#16](https://github.com/inspec/kitchen-inspec/issues/16)
|
|
420
|
+
- Pending messages are "inherited"/"propagated" down with several suites [\#15](https://github.com/inspec/kitchen-inspec/issues/15)
|
|
421
|
+
|
|
422
|
+
**Merged pull requests:**
|
|
423
|
+
|
|
424
|
+
- Preparing the 0.10.0 release [\#29](https://github.com/inspec/kitchen-inspec/pull/29) ([tyler-ball](https://github.com/tyler-ball))
|
|
425
|
+
- Make test-kitchen a dev dependency [\#28](https://github.com/inspec/kitchen-inspec/pull/28) ([jaym](https://github.com/jaym))
|
|
426
|
+
- Specify inspec output format from kitchen.yml [\#27](https://github.com/inspec/kitchen-inspec/pull/27) ([cheesesashimi](https://github.com/cheesesashimi))
|
|
427
|
+
- remove gem push restriction [\#24](https://github.com/inspec/kitchen-inspec/pull/24) ([arlimus](https://github.com/arlimus))
|
|
428
|
+
|
|
429
|
+
## [v0.9.6](https://github.com/chef/kitchen-inspec/tree/v0.9.6) (2015-12-11)
|
|
430
|
+
[Full Changelog](https://github.com/chef/kitchen-inspec/compare/v0.9.0...v0.9.6)
|
|
431
|
+
|
|
432
|
+
**Implemented enhancements:**
|
|
433
|
+
|
|
434
|
+
- add changelog [\#18](https://github.com/inspec/kitchen-inspec/pull/18) ([chris-rock](https://github.com/chris-rock))
|
|
435
|
+
- support test suite helpers [\#12](https://github.com/inspec/kitchen-inspec/pull/12) ([schisamo](https://github.com/schisamo))
|
|
436
|
+
- Fix typo in README [\#8](https://github.com/inspec/kitchen-inspec/pull/8) ([englishm](https://github.com/englishm))
|
|
437
|
+
- Gem [\#7](https://github.com/inspec/kitchen-inspec/pull/7) ([chris-rock](https://github.com/chris-rock))
|
|
438
|
+
|
|
439
|
+
**Fixed bugs:**
|
|
440
|
+
|
|
441
|
+
- tests fail with inspec 0.9.5 [\#19](https://github.com/inspec/kitchen-inspec/issues/19)
|
|
442
|
+
- Fix tests and activate linting for CI [\#20](https://github.com/inspec/kitchen-inspec/pull/20) ([srenatus](https://github.com/srenatus))
|
|
443
|
+
- raise ActionFailed when inspec returns other than 0. [\#13](https://github.com/inspec/kitchen-inspec/pull/13) ([sawanoboly](https://github.com/sawanoboly))
|
|
444
|
+
|
|
445
|
+
**Closed issues:**
|
|
446
|
+
|
|
447
|
+
- ReadMe 'example here' dead link / 404 [\#21](https://github.com/inspec/kitchen-inspec/issues/21)
|
|
448
|
+
|
|
449
|
+
**Merged pull requests:**
|
|
450
|
+
|
|
451
|
+
- 0.9.6 [\#23](https://github.com/inspec/kitchen-inspec/pull/23) ([arlimus](https://github.com/arlimus))
|
|
452
|
+
- fix readme [\#22](https://github.com/inspec/kitchen-inspec/pull/22) ([srenatus](https://github.com/srenatus))
|
|
453
|
+
|
|
454
|
+
## [v0.9.0](https://github.com/chef/kitchen-inspec/tree/v0.9.0) (2015-11-03)
|
|
455
|
+
**Implemented enhancements:**
|
|
456
|
+
|
|
457
|
+
- Update README.md [\#6](https://github.com/inspec/kitchen-inspec/pull/6) ([chris-rock](https://github.com/chris-rock))
|
|
458
|
+
- Support all Kitchen/SSH as Train/SSH tunables. [\#4](https://github.com/inspec/kitchen-inspec/pull/4) ([fnichol](https://github.com/fnichol))
|
|
459
|
+
- use new inspec as gem source [\#3](https://github.com/inspec/kitchen-inspec/pull/3) ([chris-rock](https://github.com/chris-rock))
|
|
460
|
+
- Rename + Update [\#2](https://github.com/inspec/kitchen-inspec/pull/2) ([chris-rock](https://github.com/chris-rock))
|
|
461
|
+
- add usage instructions [\#1](https://github.com/inspec/kitchen-inspec/pull/1) ([chris-rock](https://github.com/chris-rock))
|
|
462
|
+
|
|
463
|
+
**Fixed bugs:**
|
|
464
|
+
|
|
465
|
+
- Add WinRM support to Verifier \(pending full support in Train\). [\#5](https://github.com/inspec/kitchen-inspec/pull/5) ([fnichol](https://github.com/fnichol))
|
|
466
|
+
|
|
467
|
+
|
|
468
|
+
|
|
469
|
+
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
|