inspec 1.23.0 → 1.24.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (36) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +27 -2429
  3. data/Rakefile +1 -14
  4. data/docs/migration.md +1 -1
  5. data/docs/profiles.md +14 -12
  6. data/docs/resources/mssql_session.md.erb +79 -0
  7. data/docs/resources/oracledb_session.md.erb +71 -0
  8. data/docs/resources/postgres_session.md.erb +17 -10
  9. data/docs/resources/processes.md.erb +11 -1
  10. data/docs/resources/service.md.erb +1 -1
  11. data/examples/inheritance/inspec.lock +11 -0
  12. data/examples/meta-profile/README.md +2 -2
  13. data/examples/meta-profile/controls/example.rb +1 -1
  14. data/examples/meta-profile/inspec.lock +18 -0
  15. data/examples/meta-profile/inspec.yml +1 -1
  16. data/examples/meta-profile/vendor/4d5c9187409941b96f00fb25d0888c301ede999fd63149f35ad4594d698d6535.tar.gz +0 -0
  17. data/examples/meta-profile/vendor/79e6b9846ab539669bbfcf5adcd246f1be484d4b55acb7c1c3dbd852203e4fae.tar.gz +0 -0
  18. data/examples/meta-profile/vendor/dbb5602f09f58d86f8743dfb44327207e9a23a49ef34f65614f1c1d8cc145f6b.tar.gz +0 -0
  19. data/lib/bundles/inspec-habitat/profile.rb +1 -1
  20. data/lib/inspec.rb +1 -0
  21. data/lib/inspec/base_cli.rb +1 -1
  22. data/lib/inspec/dsl.rb +1 -3
  23. data/lib/inspec/exceptions.rb +8 -0
  24. data/lib/inspec/metadata.rb +12 -9
  25. data/lib/inspec/profile.rb +22 -0
  26. data/lib/inspec/resource.rb +1 -0
  27. data/lib/inspec/rspec_json_formatter.rb +9 -0
  28. data/lib/inspec/runner.rb +14 -9
  29. data/lib/inspec/schema.rb +11 -0
  30. data/lib/inspec/secrets/yaml.rb +5 -0
  31. data/lib/inspec/version.rb +1 -1
  32. data/lib/resources/mssql_session.rb +30 -9
  33. data/lib/resources/mysql_session.rb +5 -3
  34. data/lib/resources/oracledb_session.rb +42 -0
  35. data/lib/resources/postgres_session.rb +12 -9
  36. metadata +12 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1e8390da8233b1e2b9fe3386b5487a3b947858be
4
- data.tar.gz: 6603d92295c8e8826a9035a4ac71ab6c5ffcc2e6
3
+ metadata.gz: cf386497cc64b702dd9554fadcad59d66758a5cd
4
+ data.tar.gz: 8c03d98784bd5163c4ac0f39855595c1f3016960
5
5
  SHA512:
6
- metadata.gz: 3c13174864bb854dd39cdc7bba7140476e6dedb16db12cb55dbd9c98b435a672740737603c6d8d79b1fca704c4a9a2c080f6399112b6eb1d1b5804cf8822f775
7
- data.tar.gz: 3e69e3df1a2d04bc9d13e123a0a7957fa57b0e5307d83d6220fd1bd384155dba4cb7d2341578e71a5c9c9fa4363ba1fbbe31ea31568a8f7f99b1e01f4c8a4420
6
+ metadata.gz: 55f55fc7ec4d7557d546c27a64b6de6f079fe019141066ab7762a08892de76141df480670bcf525a152fdd539c0d2b91c409f960471af037f8f81a72aaf4ce1e
7
+ data.tar.gz: a8957f05de8b17c042dc77cc5e1f179fd38b74b0b4d4485b68e2d24c800829299c995b66a48ae06fc4baa90125e4f6d6ce75616b6a70aa34c1c0283f0822573c
@@ -1,16 +1,30 @@
1
1
  # Change Log
2
2
 
3
- ## [1.23.0](https://github.com/chef/inspec/tree/1.23.0) (2017-05-04)
4
- [Full Changelog](https://github.com/chef/inspec/compare/v1.22.0...1.23.0)
3
+ ## [v1.24.0](https://github.com/chef/inspec/tree/v1.24.0) (2017-05-11)
4
+ [Full Changelog](https://github.com/chef/inspec/compare/v1.23.0...v1.24.0)
5
5
 
6
6
  **Implemented enhancements:**
7
7
 
8
- - Warn when using --sudo locally [\#1690](https://github.com/chef/inspec/issues/1690)
8
+ - minor ui fix [\#1807](https://github.com/chef/inspec/pull/1807) ([echohack](https://github.com/echohack))
9
+ - Add busybox-static to habitat plan so netstat works for port resource on linux [\#1805](https://github.com/chef/inspec/pull/1805) ([elliott-davis](https://github.com/elliott-davis))
10
+ - add sha256 checksum to json [\#1796](https://github.com/chef/inspec/pull/1796) ([arlimus](https://github.com/arlimus))
11
+ - add platform info to json formatter [\#1792](https://github.com/chef/inspec/pull/1792) ([arlimus](https://github.com/arlimus))
12
+ - Update hab exporter to use inspec in path over calling to hab sup [\#1791](https://github.com/chef/inspec/pull/1791) ([elliott-davis](https://github.com/elliott-davis))
13
+ - Add support for Windows auth in mssql\_resourcet [\#1786](https://github.com/chef/inspec/pull/1786) ([arlimus](https://github.com/arlimus))
14
+ - Allow mysql\_session to test databases on different hosts [\#1779](https://github.com/chef/inspec/pull/1779) ([aaronlippold](https://github.com/aaronlippold))
15
+ - Handle parse errors for attrs/secrets [\#1775](https://github.com/chef/inspec/pull/1775) ([adamleff](https://github.com/adamleff))
16
+ - Add an oracle\_session resource [\#1751](https://github.com/chef/inspec/pull/1751) ([nsdavidson](https://github.com/nsdavidson))
17
+
18
+ ## [v1.23.0](https://github.com/chef/inspec/tree/v1.23.0) (2017-05-04)
19
+ [Full Changelog](https://github.com/chef/inspec/compare/v1.22.0...v1.23.0)
20
+
21
+ **Implemented enhancements:**
22
+
23
+ - Add command-line completions for fish shell [\#1760](https://github.com/chef/inspec/pull/1760) ([smith](https://github.com/smith))
9
24
  - Error and exit when using --sudo locally [\#1741](https://github.com/chef/inspec/pull/1741) ([adamleff](https://github.com/adamleff))
10
25
 
11
26
  **Fixed bugs:**
12
27
 
13
- - xinetd.rb `read\_content': undefined method `empty?' for nil:NilClass [\#1729](https://github.com/chef/inspec/issues/1729)
14
28
  - Make the --no-color flag work for inspec exec [\#1749](https://github.com/chef/inspec/pull/1749) ([adamleff](https://github.com/adamleff))
15
29
  - Fix xinetd resource failing when file cannot be read [\#1746](https://github.com/chef/inspec/pull/1746) ([adamleff](https://github.com/adamleff))
16
30
  - Habitat profile bug fixes and improvements [\#1735](https://github.com/chef/inspec/pull/1735) ([rhass](https://github.com/rhass))
@@ -27,50 +41,17 @@
27
41
  **Implemented enhancements:**
28
42
 
29
43
  - rename `parse\_config` options for clarity [\#1709](https://github.com/chef/inspec/issues/1709)
30
- - Lackluster type coercion [\#445](https://github.com/chef/inspec/issues/445)
31
- - Update port documentation to use `cmp` matcher [\#438](https://github.com/chef/inspec/issues/438)
32
- - Simplify error output [\#437](https://github.com/chef/inspec/issues/437)
33
- - Follow Gnu Standards for Command Line Interfaces [\#436](https://github.com/chef/inspec/issues/436)
34
- - Clarify `impact` of controls [\#358](https://github.com/chef/inspec/issues/358)
35
- - make the default logger readable [\#335](https://github.com/chef/inspec/issues/335)
36
- - Resolve open points from \#252 [\#334](https://github.com/chef/inspec/issues/334)
37
- - document all custom RSpec matcher [\#317](https://github.com/chef/inspec/issues/317)
38
- - Readme: Point to sources of documentation [\#231](https://github.com/chef/inspec/issues/231)
39
- - Readme: differentiate from Serverspec [\#229](https://github.com/chef/inspec/issues/229)
40
- - support legacy backend configuration calls \(rspec/serverspec\) [\#187](https://github.com/chef/inspec/issues/187)
41
- - Some inconsistencies with naming across the resources [\#120](https://github.com/chef/inspec/issues/120)
42
- - ensure all resources do OS check [\#96](https://github.com/chef/inspec/issues/96)
43
- - run docker backend in one exec loop [\#81](https://github.com/chef/inspec/issues/81)
44
- - make all transport configurable and optional [\#65](https://github.com/chef/inspec/issues/65)
45
- - inspec control.to\_ruby to use newlines instead of `\n` [\#1705](https://github.com/chef/inspec/pull/1705) ([arlimus](https://github.com/arlimus))
46
-
47
- **Fixed bugs:**
48
-
49
- - bugfix: unindent description misbehaviors [\#1707](https://github.com/chef/inspec/pull/1707) ([arlimus](https://github.com/arlimus))
50
-
51
- **Closed issues:**
52
-
53
- - Test [\#1721](https://github.com/chef/inspec/issues/1721)
54
- - Inspec Shell Enhancement - Show universal matchers on HELP MATCHERS command [\#1684](https://github.com/chef/inspec/issues/1684)
55
- - detecting service enabled on Ubuntu 16.04 \(systemd\) [\#931](https://github.com/chef/inspec/issues/931)
56
- - Can't get sub key in YAML [\#554](https://github.com/chef/inspec/issues/554)
57
- - Sharing custom resources? [\#353](https://github.com/chef/inspec/issues/353)
58
- - Readme: What is being installed? [\#166](https://github.com/chef/inspec/issues/166)
59
-
60
- **Merged pull requests:**
61
-
62
- - Update GH Pages CNAME [\#1731](https://github.com/chef/inspec/pull/1731) ([adamleff](https://github.com/adamleff))
63
- - Rakefile updates to support appbundle-updater [\#1730](https://github.com/chef/inspec/pull/1730) ([adamleff](https://github.com/adamleff))
64
- - use cmp in port docs instead of eq [\#1726](https://github.com/chef/inspec/pull/1726) ([arlimus](https://github.com/arlimus))
65
- - \[www\] update event on main page [\#1724](https://github.com/chef/inspec/pull/1724) ([adamleff](https://github.com/adamleff))
66
44
  - rename SimpleConfig / parse\_config / parse\_config\_file options [\#1723](https://github.com/chef/inspec/pull/1723) ([arlimus](https://github.com/arlimus))
67
45
  - Add matchers help to shell, clean up help output [\#1722](https://github.com/chef/inspec/pull/1722) ([adamleff](https://github.com/adamleff))
68
46
  - provide `inspec.version` information [\#1719](https://github.com/chef/inspec/pull/1719) ([arlimus](https://github.com/arlimus))
69
47
  - provide the `inspec` keyword [\#1718](https://github.com/chef/inspec/pull/1718) ([arlimus](https://github.com/arlimus))
70
48
  - print and prettyprint the inspec backend class [\#1717](https://github.com/chef/inspec/pull/1717) ([arlimus](https://github.com/arlimus))
71
- - describe the value ranges of `impact` [\#1713](https://github.com/chef/inspec/pull/1713) ([arlimus](https://github.com/arlimus))
49
+ - inspec control.to\_ruby to use newlines instead of `\n` [\#1705](https://github.com/chef/inspec/pull/1705) ([arlimus](https://github.com/arlimus))
50
+
51
+ **Fixed bugs:**
52
+
72
53
  - pretty-print multiline control descriptions [\#1711](https://github.com/chef/inspec/pull/1711) ([arlimus](https://github.com/arlimus))
73
- - document reference to other tools [\#1710](https://github.com/chef/inspec/pull/1710) ([arlimus](https://github.com/arlimus))
54
+ - bugfix: unindent description misbehaviors [\#1707](https://github.com/chef/inspec/pull/1707) ([arlimus](https://github.com/arlimus))
74
55
  - handle json parse errors in docker resource [\#1706](https://github.com/chef/inspec/pull/1706) ([chris-rock](https://github.com/chris-rock))
75
56
 
76
57
  ## [v1.21.0](https://github.com/chef/inspec/tree/v1.21.0) (2017-04-24)
@@ -78,2400 +59,17 @@
78
59
 
79
60
  **Implemented enhancements:**
80
61
 
81
- - user resource is not fetching groups for windows [\#1400](https://github.com/chef/inspec/issues/1400)
82
- - docker resources [\#71](https://github.com/chef/inspec/issues/71)
62
+ - fetch user groups while building user object [\#1681](https://github.com/chef/inspec/pull/1681) ([Happycoil](https://github.com/Happycoil))
63
+ - update sslshake to v1.2 [\#1680](https://github.com/chef/inspec/pull/1680) ([arlimus](https://github.com/arlimus))
64
+ - ER-508 Extended http resource to support no ssl verification [\#1663](https://github.com/chef/inspec/pull/1663) ([ElizabethU](https://github.com/ElizabethU))
83
65
 
84
66
  **Fixed bugs:**
85
67
 
86
68
  - Web references in inspec shell help are wrong [\#1667](https://github.com/chef/inspec/issues/1667)
87
69
  - bugfix: solve warn on uninitialized [\#1694](https://github.com/chef/inspec/pull/1694) ([arlimus](https://github.com/arlimus))
88
-
89
- **Closed issues:**
90
-
91
- - Adding windows domain users to users resource [\#1688](https://github.com/chef/inspec/issues/1688)
92
- - stdout matcher has depreciation warnings [\#1685](https://github.com/chef/inspec/issues/1685)
93
- - profile upload with dependencies fails uploading to compliance server [\#1670](https://github.com/chef/inspec/issues/1670)
94
- - Retrying Inspec Tests [\#1665](https://github.com/chef/inspec/issues/1665)
95
- - Add a way to retry a test if failing [\#1404](https://github.com/chef/inspec/issues/1404)
96
- - --sudo does not appear to elevate privileges when evaluating local systems. [\#1279](https://github.com/chef/inspec/issues/1279)
97
-
98
- **Merged pull requests:**
99
-
100
- - Release 1.21.0 [\#1703](https://github.com/chef/inspec/pull/1703) ([adamleff](https://github.com/adamleff))
101
- - \[www\] Update www Gemfile.lock [\#1691](https://github.com/chef/inspec/pull/1691) ([adamleff](https://github.com/adamleff))
102
- - showing how to shellout in docs [\#1689](https://github.com/chef/inspec/pull/1689) ([rshade](https://github.com/rshade))
103
- - \[www\] Fix docs pages for x509\_certificate and key\_rsa [\#1683](https://github.com/chef/inspec/pull/1683) ([adamleff](https://github.com/adamleff))
104
- - fix spelling mistake in powershell resource documentation [\#1682](https://github.com/chef/inspec/pull/1682) ([Happycoil](https://github.com/Happycoil))
105
- - fetch user groups while building user object [\#1681](https://github.com/chef/inspec/pull/1681) ([Happycoil](https://github.com/Happycoil))
106
- - update sslshake to v1.2 [\#1680](https://github.com/chef/inspec/pull/1680) ([arlimus](https://github.com/arlimus))
107
- - Fix type-o in control code [\#1676](https://github.com/chef/inspec/pull/1676) ([hannah-radish](https://github.com/hannah-radish))
108
70
  - fix web reference url [\#1669](https://github.com/chef/inspec/pull/1669) ([chris-rock](https://github.com/chris-rock))
109
- - fix sshd config help [\#1668](https://github.com/chef/inspec/pull/1668) ([chris-rock](https://github.com/chris-rock))
110
- - ER-508 Extended http resource to support no ssl verification [\#1663](https://github.com/chef/inspec/pull/1663) ([ElizabethU](https://github.com/ElizabethU))
111
71
  - Move Habitat sleep time to config file [\#1662](https://github.com/chef/inspec/pull/1662) ([adamleff](https://github.com/adamleff))
112
- - Docker resource [\#1566](https://github.com/chef/inspec/pull/1566) ([chris-rock](https://github.com/chris-rock))
113
-
114
- ## [v1.20.0](https://github.com/chef/inspec/tree/v1.20.0) (2017-04-13)
115
- [Full Changelog](https://github.com/chef/inspec/compare/v1.19.2...v1.20.0)
116
-
117
- **Fixed bugs:**
118
-
119
- - gem resource :chef symbol isn't valid on Windows [\#1645](https://github.com/chef/inspec/issues/1645)
120
-
121
- **Closed issues:**
122
-
123
- - List on-tap hard to use [\#1644](https://github.com/chef/inspec/issues/1644)
124
- - inspec vendor meta profiles fails when dependency profile is in Automate asset store [\#1632](https://github.com/chef/inspec/issues/1632)
125
- - cannot upload meta profile to Automate [\#1631](https://github.com/chef/inspec/issues/1631)
126
-
127
- **Merged pull requests:**
128
-
129
- - Release 1.20.0 [\#1657](https://github.com/chef/inspec/pull/1657) ([adamleff](https://github.com/adamleff))
130
- - Habitat packages should run as root [\#1656](https://github.com/chef/inspec/pull/1656) ([adamleff](https://github.com/adamleff))
131
- - harmonize compliance profiles view with supermarket views [\#1654](https://github.com/chef/inspec/pull/1654) ([chris-rock](https://github.com/chris-rock))
132
- - \[www\] Update community page [\#1651](https://github.com/chef/inspec/pull/1651) ([adamleff](https://github.com/adamleff))
133
- - Fix gem resource on Windows [\#1650](https://github.com/chef/inspec/pull/1650) ([adamleff](https://github.com/adamleff))
134
- - add support for hostname detection on macOS [\#1648](https://github.com/chef/inspec/pull/1648) ([chris-rock](https://github.com/chris-rock))
135
- - allow Automate profile dependencies [\#1647](https://github.com/chef/inspec/pull/1647) ([jeremymv2](https://github.com/jeremymv2))
136
- - pass options hash sans target key [\#1646](https://github.com/chef/inspec/pull/1646) ([jeremymv2](https://github.com/jeremymv2))
137
- - add `rabbitmq\_config` resource [\#1639](https://github.com/chef/inspec/pull/1639) ([arlimus](https://github.com/arlimus))
138
- - \[www\] Adding a website acceptance environment [\#1634](https://github.com/chef/inspec/pull/1634) ([adamleff](https://github.com/adamleff))
139
- - Adding SNI utilization to ssl resource [\#1624](https://github.com/chef/inspec/pull/1624) ([supergicko](https://github.com/supergicko))
140
- - Add OSX support for host resource [\#1608](https://github.com/chef/inspec/pull/1608) ([RyanJarv](https://github.com/RyanJarv))
141
-
142
- ## [v1.19.2](https://github.com/chef/inspec/tree/v1.19.2) (2017-04-07)
143
- [Full Changelog](https://github.com/chef/inspec/compare/v1.19.1...v1.19.2)
144
-
145
- **Fixed bugs:**
146
-
147
- - Bug or doc problem with `registry\_key` [\#1268](https://github.com/chef/inspec/issues/1268)
148
-
149
- **Closed issues:**
150
-
151
- - Strange `registry\_key` behavior \(Unable to get .NET Version\) [\#1131](https://github.com/chef/inspec/issues/1131)
152
-
153
- **Merged pull requests:**
154
-
155
- - Release 1.19.2 patch release [\#1638](https://github.com/chef/inspec/pull/1638) ([adamleff](https://github.com/adamleff))
156
- - Fix and document registry issues [\#1635](https://github.com/chef/inspec/pull/1635) ([chris-rock](https://github.com/chris-rock))
157
- - \[www\] Add warning to the http resource documentation [\#1623](https://github.com/chef/inspec/pull/1623) ([adamleff](https://github.com/adamleff))
158
-
159
- ## [v1.19.1](https://github.com/chef/inspec/tree/v1.19.1) (2017-04-04)
160
- [Full Changelog](https://github.com/chef/inspec/compare/v1.19.0...v1.19.1)
161
-
162
- **Merged pull requests:**
163
-
164
- - Releasing v1.19.1 [\#1628](https://github.com/chef/inspec/pull/1628) ([adamleff](https://github.com/adamleff))
165
- - Loosen addressable version pin [\#1627](https://github.com/chef/inspec/pull/1627) ([adamleff](https://github.com/adamleff))
166
-
167
- ## [v1.19.0](https://github.com/chef/inspec/tree/v1.19.0) (2017-04-04)
168
- [Full Changelog](https://github.com/chef/inspec/compare/v1.18.0...v1.19.0)
169
-
170
- **Implemented enhancements:**
171
-
172
- - dh\_params resource \(proposed\) [\#1617](https://github.com/chef/inspec/issues/1617)
173
- - Fix \#1617 Add dh\_params resource [\#1618](https://github.com/chef/inspec/pull/1618) ([4-20ma](https://github.com/4-20ma))
174
- - Allow apache\_conf to include symlinked configuration files [\#1406](https://github.com/chef/inspec/pull/1406) ([carldjohnston](https://github.com/carldjohnston))
175
-
176
- **Closed issues:**
177
-
178
- - SSL Resource - Protocols Filter has wrong description [\#1620](https://github.com/chef/inspec/issues/1620)
179
- - Inspec multi-server queries [\#1616](https://github.com/chef/inspec/issues/1616)
180
-
181
- **Merged pull requests:**
182
-
183
- - Releasing v1.19.0 [\#1626](https://github.com/chef/inspec/pull/1626) ([adamleff](https://github.com/adamleff))
184
- - Fix protocols matcher text on ssl resource docs [\#1622](https://github.com/chef/inspec/pull/1622) ([adamleff](https://github.com/adamleff))
185
- - Replace Nokogiri with REXML in the JUnit formatter [\#1621](https://github.com/chef/inspec/pull/1621) ([adamleff](https://github.com/adamleff))
186
- - obvious fix in README.md [\#1619](https://github.com/chef/inspec/pull/1619) ([lucky-sideburn](https://github.com/lucky-sideburn))
187
- - \[www\] Fixing rake www:release task [\#1611](https://github.com/chef/inspec/pull/1611) ([adamleff](https://github.com/adamleff))
188
- - \[www\] Resurrect global message, promote ChefConf and NYC Meetup [\#1607](https://github.com/chef/inspec/pull/1607) ([adamleff](https://github.com/adamleff))
189
-
190
- ## [v1.18.0](https://github.com/chef/inspec/tree/v1.18.0) (2017-03-30)
191
- [Full Changelog](https://github.com/chef/inspec/compare/v1.17.0...v1.18.0)
192
-
193
- **Implemented enhancements:**
194
-
195
- - Requesting x509\_certificate and x509\_private\_key [\#1459](https://github.com/chef/inspec/issues/1459)
196
- - generate profile CLI command [\#410](https://github.com/chef/inspec/issues/410)
197
-
198
- **Fixed bugs:**
199
-
200
- - YAML file extensions support only \(.yml\) [\#1569](https://github.com/chef/inspec/issues/1569)
201
- - yum.repo with should\_not exist fails with NoMethodError: undefined method `\[\]' for nil:NilClass [\#1553](https://github.com/chef/inspec/issues/1553)
202
-
203
- **Closed issues:**
204
-
205
- - Cannot install on CentOS 7 [\#1609](https://github.com/chef/inspec/issues/1609)
206
- - port should be\_listening busted in 1.17.0? [\#1602](https://github.com/chef/inspec/issues/1602)
207
- - inspec fails to install on centos 7 [\#1597](https://github.com/chef/inspec/issues/1597)
208
- - Invalid name argument error after upgrading Inspec [\#1588](https://github.com/chef/inspec/issues/1588)
209
- - Fix-up www build processes due to Gemfile change [\#1586](https://github.com/chef/inspec/issues/1586)
210
- - inspec outputs full hash when testing ini style file option with \[header\] [\#1541](https://github.com/chef/inspec/issues/1541)
211
- - inspec compliance upload fails on automate server [\#1360](https://github.com/chef/inspec/issues/1360)
212
- - Add JSON Schema validation [\#884](https://github.com/chef/inspec/issues/884)
213
-
214
- **Merged pull requests:**
215
-
216
- - Release v1.18.0 [\#1610](https://github.com/chef/inspec/pull/1610) ([adamleff](https://github.com/adamleff))
217
- - Fix port resource for invalid IP address in netstat output [\#1603](https://github.com/chef/inspec/pull/1603) ([adamleff](https://github.com/adamleff))
218
- - Remove errant puts in inspec habitat CLI command [\#1601](https://github.com/chef/inspec/pull/1601) ([adamleff](https://github.com/adamleff))
219
- - Add docs for habitat CLI commands [\#1600](https://github.com/chef/inspec/pull/1600) ([adamleff](https://github.com/adamleff))
220
- - Require Ruby 2.1 [\#1599](https://github.com/chef/inspec/pull/1599) ([adamleff](https://github.com/adamleff))
221
- - Extend `gem` to take an optional `gem\_binary` [\#1596](https://github.com/chef/inspec/pull/1596) ([nvwls](https://github.com/nvwls))
222
- - Feature/fix ability to pass in supermarket url [\#1595](https://github.com/chef/inspec/pull/1595) ([rylarson](https://github.com/rylarson))
223
- - Support vendored profiles in Habitat-packaged profiles [\#1594](https://github.com/chef/inspec/pull/1594) ([adamleff](https://github.com/adamleff))
224
- - Yum resource fix for non-existent repos and repo info [\#1593](https://github.com/chef/inspec/pull/1593) ([adamleff](https://github.com/adamleff))
225
- - Fixing www/docs rake tasks [\#1591](https://github.com/chef/inspec/pull/1591) ([adamleff](https://github.com/adamleff))
226
- - add tag object [\#1590](https://github.com/chef/inspec/pull/1590) ([chris-rock](https://github.com/chris-rock))
227
- - Support YAML attributes files ending in .yaml [\#1589](https://github.com/chef/inspec/pull/1589) ([mr-exz](https://github.com/mr-exz))
228
- - Fix Habitat plan for nokogiri support [\#1587](https://github.com/chef/inspec/pull/1587) ([adamleff](https://github.com/adamleff))
229
- - x509\_certificate and key\_rsa resource [\#1567](https://github.com/chef/inspec/pull/1567) ([chris-rock](https://github.com/chris-rock))
230
- - implement JSON schema for `inspec exec` json outputs [\#1564](https://github.com/chef/inspec/pull/1564) ([arlimus](https://github.com/arlimus))
231
- - Provide a method-based accessor for SimpleConfig hashes [\#1544](https://github.com/chef/inspec/pull/1544) ([adamleff](https://github.com/adamleff))
232
-
233
- ## [v1.17.0](https://github.com/chef/inspec/tree/v1.17.0) (2017-03-21)
234
- [Full Changelog](https://github.com/chef/inspec/compare/v1.16.1...v1.17.0)
235
-
236
- **Implemented enhancements:**
237
-
238
- - Calendar for Line Chart [\#1558](https://github.com/chef/inspec/issues/1558)
239
- - Need better error message for improper inspec.yml formatting [\#1549](https://github.com/chef/inspec/issues/1549)
240
-
241
- **Fixed bugs:**
242
-
243
- - cannot load such file -- nokogiri [\#1562](https://github.com/chef/inspec/issues/1562)
244
- - Failure to parse tcp6 URI [\#1521](https://github.com/chef/inspec/issues/1521)
245
-
246
- **Closed issues:**
247
-
248
- - json resource array index access not working [\#1560](https://github.com/chef/inspec/issues/1560)
249
- - Crontab regex matching [\#1526](https://github.com/chef/inspec/issues/1526)
250
-
251
- **Merged pull requests:**
252
-
253
- - Move simulator gems to www [\#1585](https://github.com/chef/inspec/pull/1585) ([adamleff](https://github.com/adamleff))
254
- - release 1.17.0 [\#1583](https://github.com/chef/inspec/pull/1583) ([adamleff](https://github.com/adamleff))
255
- - Fix omnibus configuration [\#1579](https://github.com/chef/inspec/pull/1579) ([adamleff](https://github.com/adamleff))
256
- - moving the nokogiri reference into the gemspec file [\#1576](https://github.com/chef/inspec/pull/1576) ([jkerry](https://github.com/jkerry))
257
- - Hide Event Feature on Homepage [\#1563](https://github.com/chef/inspec/pull/1563) ([hannah-radish](https://github.com/hannah-radish))
258
- - Fix ObjectTraverser when accessing array values [\#1561](https://github.com/chef/inspec/pull/1561) ([adamleff](https://github.com/adamleff))
259
- - Add additional example for matching crontab commands [\#1559](https://github.com/chef/inspec/pull/1559) ([adamleff](https://github.com/adamleff))
260
- - Update file.md with example how to test symlinked files [\#1555](https://github.com/chef/inspec/pull/1555) ([nvtkaszpir](https://github.com/nvtkaszpir))
261
- - Provide better error message when inspec.yml is invalid [\#1552](https://github.com/chef/inspec/pull/1552) ([adamleff](https://github.com/adamleff))
262
- - try to use sysv fallback if is not producing proper output [\#1550](https://github.com/chef/inspec/pull/1550) ([chris-rock](https://github.com/chris-rock))
263
- - update readme for install scripts [\#1548](https://github.com/chef/inspec/pull/1548) ([chris-rock](https://github.com/chris-rock))
264
- - Fixing port check with v4 IPs in a v6 netstat line [\#1547](https://github.com/chef/inspec/pull/1547) ([adamleff](https://github.com/adamleff))
265
- - Fixing a typo [\#1536](https://github.com/chef/inspec/pull/1536) ([tescalada](https://github.com/tescalada))
266
- - windows\_task docs: Correct syntax error and misspelled word [\#1525](https://github.com/chef/inspec/pull/1525) ([spiffytech](https://github.com/spiffytech))
267
-
268
- ## [v1.16.1](https://github.com/chef/inspec/tree/v1.16.1) (2017-03-06)
269
- [Full Changelog](https://github.com/chef/inspec/compare/v1.16.0...v1.16.1)
270
-
271
- **Fixed bugs:**
272
-
273
- - "inspec version" waits for connection timeout inside firewall [\#1537](https://github.com/chef/inspec/issues/1537)
274
-
275
- **Merged pull requests:**
276
-
277
- - releasing 1.16.1 with a bug fix and omnibus fix [\#1540](https://github.com/chef/inspec/pull/1540) ([adamleff](https://github.com/adamleff))
278
- - Fix omnibus build after new JUnit formatter [\#1539](https://github.com/chef/inspec/pull/1539) ([adamleff](https://github.com/adamleff))
279
- - Avoid connection timeout of "inspec version" [\#1538](https://github.com/chef/inspec/pull/1538) ([makotots](https://github.com/makotots))
280
- - Write Habitat-driven InSpec output to svc\_var directory [\#1533](https://github.com/chef/inspec/pull/1533) ([adamleff](https://github.com/adamleff))
281
- - Updating .gitignore for Habitat and direnv [\#1531](https://github.com/chef/inspec/pull/1531) ([adamleff](https://github.com/adamleff))
282
- - Ready for review - inspec.io bug fixes, \#1440, \#1420, \#1465, \#1421, \#1437,\#1226, \#1494, \#1495 [\#1512](https://github.com/chef/inspec/pull/1512) ([hannah-radish](https://github.com/hannah-radish))
283
-
284
- ## [v1.16.0](https://github.com/chef/inspec/tree/v1.16.0) (2017-03-02)
285
- [Full Changelog](https://github.com/chef/inspec/compare/v1.15.0...v1.16.0)
286
-
287
- **Implemented enhancements:**
288
-
289
- - jUnit reports are hard to read [\#1438](https://github.com/chef/inspec/issues/1438)
290
- - Functional JUnit reporter [\#1454](https://github.com/chef/inspec/pull/1454) ([jkerry](https://github.com/jkerry))
291
-
292
- **Closed issues:**
293
-
294
- - Small bug on the registry\_key docs page [\#1523](https://github.com/chef/inspec/issues/1523)
295
-
296
- **Merged pull requests:**
297
-
298
- - 1.16.0 [\#1530](https://github.com/chef/inspec/pull/1530) ([adamleff](https://github.com/adamleff))
299
- - use -- for description of inspec login\_automate [\#1527](https://github.com/chef/inspec/pull/1527) ([chris-rock](https://github.com/chris-rock))
300
- - fix ident in cmp matcher docs [\#1524](https://github.com/chef/inspec/pull/1524) ([chris-rock](https://github.com/chris-rock))
301
- - Add Rake to Habitat build Gemfile [\#1520](https://github.com/chef/inspec/pull/1520) ([adamleff](https://github.com/adamleff))
302
- - Fix kernel\_module for centos/redhat [\#1513](https://github.com/chef/inspec/pull/1513) ([postgred](https://github.com/postgred))
303
- - Added oracle linux to rhel platform section of 'service' resource. [\#1511](https://github.com/chef/inspec/pull/1511) ([carldjohnston](https://github.com/carldjohnston))
304
- - Add FreeBSD support for ZFS datasets and pools [\#1501](https://github.com/chef/inspec/pull/1501) ([jbenden](https://github.com/jbenden))
305
-
306
- ## [v1.15.0](https://github.com/chef/inspec/tree/v1.15.0) (2017-02-27)
307
- [Full Changelog](https://github.com/chef/inspec/compare/v1.14.1...v1.15.0)
308
-
309
- **Implemented enhancements:**
310
-
311
- - Wrong rendering of InSpec.io header [\#1421](https://github.com/chef/inspec/issues/1421)
312
-
313
- **Fixed bugs:**
314
-
315
- - New Inspec.io is crashing on Edge if window is resized to a smaller window [\#1420](https://github.com/chef/inspec/issues/1420)
316
-
317
- **Closed issues:**
318
-
319
- - Colours and symbols broken on Windows [\#1508](https://github.com/chef/inspec/issues/1508)
320
- - be\_reacheable matcher for host resource should not always use ping on linux [\#1504](https://github.com/chef/inspec/issues/1504)
321
- - Inspec login fails [\#1503](https://github.com/chef/inspec/issues/1503)
322
- - Develop an inspec test for selinux [\#1496](https://github.com/chef/inspec/issues/1496)
323
- - Inspec.io: Add webinar/notifications bar in index.html [\#1495](https://github.com/chef/inspec/issues/1495)
324
- - Inspec.io: Try Demo Button Bug [\#1494](https://github.com/chef/inspec/issues/1494)
325
- - \[chef-compliance\] Scan Report Calculations [\#1491](https://github.com/chef/inspec/issues/1491)
326
- - Create url for demo that can be pointed to from outbound campaigns [\#1485](https://github.com/chef/inspec/issues/1485)
327
- - After inspec update from 1.5 to 1.10 it breaks with \[undefined method `\[\]=' for nil:NilClass\] [\#1456](https://github.com/chef/inspec/issues/1456)
328
- - Inspec.io and IE11 [\#1437](https://github.com/chef/inspec/issues/1437)
329
- - Link to robert\_config.rb is broken on inspec.io [\#1226](https://github.com/chef/inspec/issues/1226)
330
-
331
- **Merged pull requests:**
332
-
333
- - 1.15.0 [\#1519](https://github.com/chef/inspec/pull/1519) ([adamleff](https://github.com/adamleff))
334
- - Fix formatting and colors on Windows [\#1510](https://github.com/chef/inspec/pull/1510) ([trickyearlobe](https://github.com/trickyearlobe))
335
- - Adding a Habitat profile artifact creator [\#1505](https://github.com/chef/inspec/pull/1505) ([adamleff](https://github.com/adamleff))
336
- - create inspec.io/tutorial.html [\#1490](https://github.com/chef/inspec/pull/1490) ([arlimus](https://github.com/arlimus))
337
- - Doc fix for SourceReaders::InspecReader [\#1489](https://github.com/chef/inspec/pull/1489) ([adamleff](https://github.com/adamleff))
338
- - Generate default profile names, fix bug when using multiple flat profiles [\#1488](https://github.com/chef/inspec/pull/1488) ([adamleff](https://github.com/adamleff))
339
- - Packages resource support for RedHat [\#1487](https://github.com/chef/inspec/pull/1487) ([alexpop](https://github.com/alexpop))
340
- - Adding new crontab resource [\#1482](https://github.com/chef/inspec/pull/1482) ([adamleff](https://github.com/adamleff))
341
- - Provide target info on shell invocation [\#1475](https://github.com/chef/inspec/pull/1475) ([adamleff](https://github.com/adamleff))
342
-
343
- ## [v1.14.1](https://github.com/chef/inspec/tree/v1.14.1) (2017-02-10)
344
- [Full Changelog](https://github.com/chef/inspec/compare/v1.14.0...v1.14.1)
345
-
346
- **Closed issues:**
347
-
348
- - go /profiles service modifications [\#1483](https://github.com/chef/inspec/issues/1483)
349
- - inspec compliance login\* should support a hostname for the SERVER argument [\#1473](https://github.com/chef/inspec/issues/1473)
350
-
351
- **Merged pull requests:**
352
-
353
- - Skip packages resource for unsupported OS [\#1484](https://github.com/chef/inspec/pull/1484) ([alexpop](https://github.com/alexpop))
354
- - add Alex Pop to the list of maintainers [\#1481](https://github.com/chef/inspec/pull/1481) ([arlimus](https://github.com/arlimus))
355
- - remove Jason Reed from the list of maintainers [\#1480](https://github.com/chef/inspec/pull/1480) ([arlimus](https://github.com/arlimus))
356
- - Add Adam Leff as a maintainer [\#1479](https://github.com/chef/inspec/pull/1479) ([adamleff](https://github.com/adamleff))
357
-
358
- ## [v1.14.0](https://github.com/chef/inspec/tree/v1.14.0) (2017-02-08)
359
- [Full Changelog](https://github.com/chef/inspec/compare/v1.13.0...v1.14.0)
360
-
361
- **Fixed bugs:**
362
-
363
- - map url to https for compliance plugin [\#1471](https://github.com/chef/inspec/pull/1471) ([arlimus](https://github.com/arlimus))
364
-
365
- **Closed issues:**
366
-
367
- - Display meaningful error message when uploading profiles to a server with self-signed certs [\#1469](https://github.com/chef/inspec/issues/1469)
368
-
369
- **Merged pull requests:**
370
-
371
- - Use RuboCop 0.39.0 \(same as chefstyle\) [\#1478](https://github.com/chef/inspec/pull/1478) ([tduffield](https://github.com/tduffield))
372
- - bugfix: warn users about insecure login requirements [\#1472](https://github.com/chef/inspec/pull/1472) ([arlimus](https://github.com/arlimus))
373
- - Add support for "inspec -v" showing the version [\#1470](https://github.com/chef/inspec/pull/1470) ([adamleff](https://github.com/adamleff))
374
- - Replace slack invite form on Community, fix surprise code example [\#1468](https://github.com/chef/inspec/pull/1468) ([adamleff](https://github.com/adamleff))
375
-
376
- ## [v1.13.0](https://github.com/chef/inspec/tree/v1.13.0) (2017-02-07)
377
- [Full Changelog](https://github.com/chef/inspec/compare/v1.12.0...v1.13.0)
378
-
379
- **Implemented enhancements:**
380
-
381
- - add "packages" resource [\#1458](https://github.com/chef/inspec/pull/1458) ([jtimberman](https://github.com/jtimberman))
382
- - Provide a way to force it vs its for any argument [\#1457](https://github.com/chef/inspec/pull/1457) ([alexpop](https://github.com/alexpop))
383
-
384
- **Closed issues:**
385
-
386
- - Ignore me [\#1464](https://github.com/chef/inspec/issues/1464)
387
- - redirect URL downloads.inspec.io to https://downloads.chef.io/inspec [\#1462](https://github.com/chef/inspec/issues/1462)
388
-
389
- ## [v1.12.0](https://github.com/chef/inspec/tree/v1.12.0) (2017-02-03)
390
- [Full Changelog](https://github.com/chef/inspec/compare/v1.11.0...v1.12.0)
391
-
392
- **Implemented enhancements:**
393
-
394
- - Allow setting of the tests array [\#1455](https://github.com/chef/inspec/pull/1455) ([alexpop](https://github.com/alexpop))
395
- - switch to faraday as http backend [\#1452](https://github.com/chef/inspec/pull/1452) ([chris-rock](https://github.com/chris-rock))
396
- - Add FilterTable support to processes resource [\#1451](https://github.com/chef/inspec/pull/1451) ([alexpop](https://github.com/alexpop))
397
-
398
- **Closed issues:**
399
-
400
- - `skip` parameter ignored inside `describe` block [\#1450](https://github.com/chef/inspec/issues/1450)
401
-
402
- ## [v1.11.0](https://github.com/chef/inspec/tree/v1.11.0) (2017-02-01)
403
- [Full Changelog](https://github.com/chef/inspec/compare/v1.10.0...v1.11.0)
404
-
405
- **Implemented enhancements:**
406
-
407
- - HTTP request resource [\#336](https://github.com/chef/inspec/issues/336)
408
- - derive xinetd protocol from socket\_type when not defined in the config file [\#1448](https://github.com/chef/inspec/pull/1448) ([alexpop](https://github.com/alexpop))
409
- - Add negate! support for describe.one object [\#1442](https://github.com/chef/inspec/pull/1442) ([alexpop](https://github.com/alexpop))
410
- - Version method for kernel\_module [\#1435](https://github.com/chef/inspec/pull/1435) ([postgred](https://github.com/postgred))
411
-
412
- **Fixed bugs:**
413
-
414
- - Fix xinetd parsing of services from the same file. Expose resource.protocols [\#1444](https://github.com/chef/inspec/pull/1444) ([alexpop](https://github.com/alexpop))
415
-
416
- **Merged pull requests:**
417
-
418
- - Make minor grammar/style changes to `inspec.io` [\#1441](https://github.com/chef/inspec/pull/1441) ([jerryaldrichiii](https://github.com/jerryaldrichiii))
419
-
420
- ## [v1.10.0](https://github.com/chef/inspec/tree/v1.10.0) (2017-01-26)
421
- [Full Changelog](https://github.com/chef/inspec/compare/v1.9.0...v1.10.0)
422
-
423
- **Closed issues:**
424
-
425
- - fix functional tests [\#1429](https://github.com/chef/inspec/issues/1429)
426
-
427
- **Merged pull requests:**
428
-
429
- - 1.10.0 [\#1433](https://github.com/chef/inspec/pull/1433) ([chris-rock](https://github.com/chris-rock))
430
- - improve http header handling [\#1432](https://github.com/chef/inspec/pull/1432) ([chris-rock](https://github.com/chris-rock))
431
- - use new devsec baseline [\#1431](https://github.com/chef/inspec/pull/1431) ([chris-rock](https://github.com/chris-rock))
432
- - 'execution' is spelled correctly [\#1428](https://github.com/chef/inspec/pull/1428) ([nathenharvey](https://github.com/nathenharvey))
433
- - Bug fixes + New Elements [\#1426](https://github.com/chef/inspec/pull/1426) ([hannah-radish](https://github.com/hannah-radish))
434
- - Docs: fix resource name \('processes' instead of 'process'\) [\#1423](https://github.com/chef/inspec/pull/1423) ([techraf](https://github.com/techraf))
435
- - update copyright of the year [\#1422](https://github.com/chef/inspec/pull/1422) ([chris-rock](https://github.com/chris-rock))
436
- - Link to the 1.0 release webinar [\#1419](https://github.com/chef/inspec/pull/1419) ([nathenharvey](https://github.com/nathenharvey))
437
- - Updated compliance api requests to actually use refresh token correctly [\#1416](https://github.com/chef/inspec/pull/1416) ([brentm5](https://github.com/brentm5))
438
- - Docs examples: use double quotes to prevent escaping backslash in the expected string [\#1413](https://github.com/chef/inspec/pull/1413) ([techraf](https://github.com/techraf))
439
- - Fixed error in OS docs, added CentOS to redhat family docs. [\#1407](https://github.com/chef/inspec/pull/1407) ([gscho](https://github.com/gscho))
440
- - Solicit talks for ChefConf [\#1405](https://github.com/chef/inspec/pull/1405) ([nathenharvey](https://github.com/nathenharvey))
441
- - Add an http test method [\#1403](https://github.com/chef/inspec/pull/1403) ([guilhem](https://github.com/guilhem))
442
- - new inspec.io frontpage [\#1362](https://github.com/chef/inspec/pull/1362) ([hannah-radish](https://github.com/hannah-radish))
443
-
444
- ## [v1.9.0](https://github.com/chef/inspec/tree/v1.9.0) (2017-01-06)
445
- [Full Changelog](https://github.com/chef/inspec/compare/v1.8.0...v1.9.0)
446
-
447
- **Implemented enhancements:**
448
-
449
- - Optimize regular expression for postgres config parsing [\#1395](https://github.com/chef/inspec/pull/1395) ([chris-rock](https://github.com/chris-rock))
450
- - print name for supermarket profiles [\#1376](https://github.com/chef/inspec/pull/1376) ([chris-rock](https://github.com/chris-rock))
451
- - call ssh cookbook from prepare cookbook [\#1369](https://github.com/chef/inspec/pull/1369) ([chris-rock](https://github.com/chris-rock))
452
- - display if inspec version is outdated [\#1365](https://github.com/chef/inspec/pull/1365) ([chris-rock](https://github.com/chris-rock))
453
-
454
- **Fixed bugs:**
455
-
456
- - profile upload fails to compliance server [\#1298](https://github.com/chef/inspec/issues/1298)
457
- - undefined method `max\_connections' for PostgreSQL [\#825](https://github.com/chef/inspec/issues/825)
458
- - bugfix: expose postgres\_conf parameters via `its` [\#826](https://github.com/chef/inspec/pull/826) ([arlimus](https://github.com/arlimus))
459
-
460
- **Closed issues:**
461
-
462
- - Yum.repo should show correct name [\#1390](https://github.com/chef/inspec/issues/1390)
463
- - The 'package' resource is broken in OSX \(with brew as package manager\) [\#1386](https://github.com/chef/inspec/issues/1386)
464
- - JUnit XML dumping fails [\#1383](https://github.com/chef/inspec/issues/1383)
465
- - json.rb produces stacktrace when a target file is unreadable [\#1382](https://github.com/chef/inspec/issues/1382)
466
- - Document Serverspec Migration [\#804](https://github.com/chef/inspec/issues/804)
467
-
468
- **Merged pull requests:**
469
-
470
- - Download InSpec profiles from Chef Compliance [\#1402](https://github.com/chef/inspec/pull/1402) ([chris-rock](https://github.com/chris-rock))
471
- - Yum.repo should show correct name [\#1391](https://github.com/chef/inspec/pull/1391) ([Wing924](https://github.com/Wing924))
472
- - fixes brew json parsing [\#1389](https://github.com/chef/inspec/pull/1389) ([chris-rock](https://github.com/chris-rock))
473
- - Fix wrong description for the Solaris cases in the unit tests of the 'package' resource [\#1388](https://github.com/chef/inspec/pull/1388) ([jvrplmlmn](https://github.com/jvrplmlmn))
474
- - Unit test the 'package' resource for OSX \(with brew\) [\#1387](https://github.com/chef/inspec/pull/1387) ([jvrplmlmn](https://github.com/jvrplmlmn))
475
- - drop ruby 1.9.3 [\#1384](https://github.com/chef/inspec/pull/1384) ([chris-rock](https://github.com/chris-rock))
476
- - Make "permission denied" condition match that of Train [\#1381](https://github.com/chef/inspec/pull/1381) ([makotots](https://github.com/makotots))
477
- - mention inspec vendor for compliance dependency [\#1380](https://github.com/chef/inspec/pull/1380) ([alexpop](https://github.com/alexpop))
478
- - control and lib\_eval\_context unit tests [\#1373](https://github.com/chef/inspec/pull/1373) ([jeremymv2](https://github.com/jeremymv2))
479
- - Fix Learn Chef tutorial link [\#1372](https://github.com/chef/inspec/pull/1372) ([tpetchel](https://github.com/tpetchel))
480
- - add guidance for Serverspec migration [\#1368](https://github.com/chef/inspec/pull/1368) ([chris-rock](https://github.com/chris-rock))
481
-
482
- ## [v1.8.0](https://github.com/chef/inspec/tree/v1.8.0) (2016-12-16)
483
- [Full Changelog](https://github.com/chef/inspec/compare/v1.7.2...v1.8.0)
484
-
485
- **Fixed bugs:**
486
-
487
- - JSON resource's error message is missing filename when file is not found [\#1358](https://github.com/chef/inspec/issues/1358)
488
-
489
- **Closed issues:**
490
-
491
- - inspec exec doesn't work for SSH [\#1361](https://github.com/chef/inspec/issues/1361)
492
- - inspec-archive should create a zip with version string [\#1350](https://github.com/chef/inspec/issues/1350)
493
- - https and security conserns on inspec.io [\#1217](https://github.com/chef/inspec/issues/1217)
494
- - Resource for windows scheduled task [\#1214](https://github.com/chef/inspec/issues/1214)
495
- - Last steps for inspec.io launch [\#1114](https://github.com/chef/inspec/issues/1114)
496
-
497
- **Merged pull requests:**
498
-
499
- - add fallback syntax for serverspec tests [\#1367](https://github.com/chef/inspec/pull/1367) ([chris-rock](https://github.com/chris-rock))
500
- - JSON resource's error message is missing filename when file is not found [\#1366](https://github.com/chef/inspec/pull/1366) ([makotots](https://github.com/makotots))
501
- - extending cmp to support better version ops [\#1364](https://github.com/chef/inspec/pull/1364) ([jeremymv2](https://github.com/jeremymv2))
502
- - add windows 10 and windows 2016 as supported platform [\#1359](https://github.com/chef/inspec/pull/1359) ([chris-rock](https://github.com/chris-rock))
503
- - Remove trailing `\\` from iis\_site example [\#1354](https://github.com/chef/inspec/pull/1354) ([jerryaldrichiii](https://github.com/jerryaldrichiii))
504
- - Adds additional tutorials created by Annie Hedgie [\#1352](https://github.com/chef/inspec/pull/1352) ([burtlo](https://github.com/burtlo))
505
- - Add profile version to archive [\#1351](https://github.com/chef/inspec/pull/1351) ([jaxxstorm](https://github.com/jaxxstorm))
506
- - burtlo/cleaner cli formatter [\#1331](https://github.com/chef/inspec/pull/1331) ([burtlo](https://github.com/burtlo))
507
-
508
- ## [v1.7.2](https://github.com/chef/inspec/tree/v1.7.2) (2016-12-08)
509
- [Full Changelog](https://github.com/chef/inspec/compare/v1.7.1...v1.7.2)
510
-
511
- **Fixed bugs:**
512
-
513
- - use cached profile for compliance dependencies if vendored [\#1348](https://github.com/chef/inspec/pull/1348) ([chris-rock](https://github.com/chris-rock))
514
-
515
- ## [v1.7.1](https://github.com/chef/inspec/tree/v1.7.1) (2016-12-03)
516
- [Full Changelog](https://github.com/chef/inspec/compare/v1.7.0...v1.7.1)
517
-
518
- **Implemented enhancements:**
519
-
520
- - Use train 0.22.0 for SSH agent support [\#1342](https://github.com/chef/inspec/pull/1342) ([alexpop](https://github.com/alexpop))
521
-
522
- **Fixed bugs:**
523
-
524
- - Remove check and json logging for now [\#1343](https://github.com/chef/inspec/pull/1343) ([alexpop](https://github.com/alexpop))
525
-
526
- **Merged pull requests:**
527
-
528
- - dont remove gh-pages if it doesnt exist [\#1340](https://github.com/chef/inspec/pull/1340) ([arlimus](https://github.com/arlimus))
529
-
530
- ## [v1.7.0](https://github.com/chef/inspec/tree/v1.7.0) (2016-12-02)
531
- [Full Changelog](https://github.com/chef/inspec/compare/v1.6.0...v1.7.0)
532
-
533
- **Implemented enhancements:**
534
-
535
- - inspec compliance profiles should support automate as a backend [\#1295](https://github.com/chef/inspec/issues/1295)
536
- - this is killing my eyes!!!!!!!!! [\#951](https://github.com/chef/inspec/issues/951)
537
- - Show process name during inspec output [\#1329](https://github.com/chef/inspec/pull/1329) ([jcastillocano](https://github.com/jcastillocano))
538
-
539
- **Fixed bugs:**
540
-
541
- - inspec.lock not loaded from tarball profiles [\#1322](https://github.com/chef/inspec/issues/1322)
542
- - InSpec tries to re-fetch profiles even if lockfile exists [\#1316](https://github.com/chef/inspec/issues/1316)
543
- - fix docker release script [\#1328](https://github.com/chef/inspec/pull/1328) ([chris-rock](https://github.com/chris-rock))
544
- - Provide inspec.lock for archives as well [\#1323](https://github.com/chef/inspec/pull/1323) ([alexpop](https://github.com/alexpop))
545
- - inspec check and json to use vendored dependencies [\#1321](https://github.com/chef/inspec/pull/1321) ([alexpop](https://github.com/alexpop))
546
-
547
- **Closed issues:**
548
-
549
- - RegExp in processes resource can't match long-run process [\#1332](https://github.com/chef/inspec/issues/1332)
550
- - inspec archive vendoring [\#1325](https://github.com/chef/inspec/issues/1325)
551
- - inspec compliance upload of a meta-profile [\#1294](https://github.com/chef/inspec/issues/1294)
552
-
553
- **Merged pull requests:**
554
-
555
- - improve functional tests for vendored profiles [\#1337](https://github.com/chef/inspec/pull/1337) ([chris-rock](https://github.com/chris-rock))
556
- - Adds junit to the inspec help exec [\#1336](https://github.com/chef/inspec/pull/1336) ([burtlo](https://github.com/burtlo))
557
- - Vendor profile when uploading to chef-compliance [\#1334](https://github.com/chef/inspec/pull/1334) ([vjeffrey](https://github.com/vjeffrey))
558
- - fix bug: RegExp in processes resource can't match long-run process \#1332 [\#1333](https://github.com/chef/inspec/pull/1333) ([Wing924](https://github.com/Wing924))
559
- - clean up rspec\_json\_formatter [\#1314](https://github.com/chef/inspec/pull/1314) ([vjeffrey](https://github.com/vjeffrey))
560
- - enable inspec compliance cli support automate [\#1297](https://github.com/chef/inspec/pull/1297) ([vjeffrey](https://github.com/vjeffrey))
561
-
562
- ## [v1.6.0](https://github.com/chef/inspec/tree/v1.6.0) (2016-11-28)
563
- [Full Changelog](https://github.com/chef/inspec/compare/v1.5.0...v1.6.0)
564
-
565
- **Fixed bugs:**
566
-
567
- - InSpec loads whichever \*.rb file it finds along the way causing itself to fail [\#1326](https://github.com/chef/inspec/issues/1326)
568
-
569
- **Closed issues:**
570
-
571
- - command resource check doesn't fail when it should [\#1318](https://github.com/chef/inspec/issues/1318)
572
- - is this a typo.... inpsec? [\#1309](https://github.com/chef/inspec/issues/1309)
573
- - support JUnit format [\#1301](https://github.com/chef/inspec/issues/1301)
574
- - apt resource fails corner cases with optional second column [\#1261](https://github.com/chef/inspec/issues/1261)
575
-
576
- **Merged pull requests:**
577
-
578
- - do not load controls from test directory [\#1327](https://github.com/chef/inspec/pull/1327) ([chris-rock](https://github.com/chris-rock))
579
- - Replaced Colors for output [\#1320](https://github.com/chef/inspec/pull/1320) ([hannah-radish](https://github.com/hannah-radish))
580
- - Hannah vj/fix tests formatting [\#1319](https://github.com/chef/inspec/pull/1319) ([hannah-radish](https://github.com/hannah-radish))
581
- - revert style changes temporarily [\#1317](https://github.com/chef/inspec/pull/1317) ([vjeffrey](https://github.com/vjeffrey))
582
- - Updated color palettes, label colors and icons [\#1313](https://github.com/chef/inspec/pull/1313) ([hannah-radish](https://github.com/hannah-radish))
583
- - Remove extra `'` in registry key examples [\#1308](https://github.com/chef/inspec/pull/1308) ([jerryaldrichiii](https://github.com/jerryaldrichiii))
584
- - also push docker latest tag with each release [\#1307](https://github.com/chef/inspec/pull/1307) ([chris-rock](https://github.com/chris-rock))
585
- - Adding windows\_task resource [\#1306](https://github.com/chef/inspec/pull/1306) ([username-is-already-taken2](https://github.com/username-is-already-taken2))
586
- - Adding JUnit formatter support [\#1304](https://github.com/chef/inspec/pull/1304) ([jkerry](https://github.com/jkerry))
587
-
588
- ## [v1.5.0](https://github.com/chef/inspec/tree/v1.5.0) (2016-11-21)
589
- [Full Changelog](https://github.com/chef/inspec/compare/v1.4.1...v1.5.0)
590
-
591
- **Implemented enhancements:**
592
-
593
- - inspec supermarket profiles - update for new supermarket api [\#1255](https://github.com/chef/inspec/issues/1255)
594
-
595
- **Fixed bugs:**
596
-
597
- - File resource permissions for windows [\#783](https://github.com/chef/inspec/issues/783)
598
- - docs: quoted version for package resource example [\#1296](https://github.com/chef/inspec/pull/1296) ([alexpop](https://github.com/alexpop))
599
-
600
- **Merged pull requests:**
601
-
602
- - ensure metadata release entry is a string [\#1305](https://github.com/chef/inspec/pull/1305) ([chris-rock](https://github.com/chris-rock))
603
- - Fixes resources in the docs [\#1303](https://github.com/chef/inspec/pull/1303) ([burtlo](https://github.com/burtlo))
604
- - copy vendored dependencies into cache [\#1291](https://github.com/chef/inspec/pull/1291) ([chris-rock](https://github.com/chris-rock))
605
- - fix double-log-level [\#1290](https://github.com/chef/inspec/pull/1290) ([chris-rock](https://github.com/chris-rock))
606
- - update supermarket profile search to use new type param [\#1289](https://github.com/chef/inspec/pull/1289) ([robbkidd](https://github.com/robbkidd))
607
- - Change `Inpsec` to `Inspec` [\#1286](https://github.com/chef/inspec/pull/1286) ([jerryaldrichiii](https://github.com/jerryaldrichiii))
608
- - improve vendor command [\#1285](https://github.com/chef/inspec/pull/1285) ([chris-rock](https://github.com/chris-rock))
609
- - improved regex for matching deb sources [\#1280](https://github.com/chef/inspec/pull/1280) ([grimm26](https://github.com/grimm26))
610
-
611
- ## [v1.4.1](https://github.com/chef/inspec/tree/v1.4.1) (2016-11-04)
612
- [Full Changelog](https://github.com/chef/inspec/compare/v1.4.0...v1.4.1)
613
-
614
- **Fixed bugs:**
615
-
616
- - Passing attributes to inherited profiles [\#1250](https://github.com/chef/inspec/issues/1250)
617
-
618
- **Closed issues:**
619
-
620
- - RFC: Harmonize profile location targets in inspec.yml/kitchen.yml/audit cookbook [\#1227](https://github.com/chef/inspec/issues/1227)
621
-
622
- **Merged pull requests:**
623
-
624
- - Fix attributes in profile dependencies [\#1258](https://github.com/chef/inspec/pull/1258) ([chris-rock](https://github.com/chris-rock))
625
-
626
- ## [v1.4.0](https://github.com/chef/inspec/tree/v1.4.0) (2016-11-04)
627
- [Full Changelog](https://github.com/chef/inspec/compare/v1.3.0...v1.4.0)
628
-
629
- **Fixed bugs:**
630
-
631
- - Windows Service State incorrectly interpretted for use in describe service. [\#1269](https://github.com/chef/inspec/issues/1269)
632
- - /etc/passwd and /etc/shadow checks fail on CentOS [\#1264](https://github.com/chef/inspec/issues/1264)
633
- - Listing profiles on the Supermarket should return all profiles [\#1219](https://github.com/chef/inspec/issues/1219)
634
-
635
- **Closed issues:**
636
-
637
- - Add file integration tests for docker [\#1277](https://github.com/chef/inspec/issues/1277)
638
- - Solaris Sudo Not Always In /usr/bin/sudo [\#1265](https://github.com/chef/inspec/issues/1265)
639
-
640
- **Merged pull requests:**
641
-
642
- - activate file integration tests in docker [\#1278](https://github.com/chef/inspec/pull/1278) ([chris-rock](https://github.com/chris-rock))
643
- - Contain matcher maps to include matcher with warning [\#1276](https://github.com/chef/inspec/pull/1276) ([artem-sidorenko](https://github.com/artem-sidorenko))
644
- - Windows Service Check for service enabled state. [\#1274](https://github.com/chef/inspec/pull/1274) ([hj70ft](https://github.com/hj70ft))
645
- - fix file permission check by mask [\#1273](https://github.com/chef/inspec/pull/1273) ([chris-rock](https://github.com/chris-rock))
646
- - fix \#1226 [\#1272](https://github.com/chef/inspec/pull/1272) ([chris-rock](https://github.com/chris-rock))
647
- - Enable the json resource to accept command output or JSON content [\#1271](https://github.com/chef/inspec/pull/1271) ([jerearista](https://github.com/jerearista))
648
- - Added tutorials for Days 8 & 9 [\#1263](https://github.com/chef/inspec/pull/1263) ([anniehedgpeth](https://github.com/anniehedgpeth))
649
-
650
- ## [v1.3.0](https://github.com/chef/inspec/tree/v1.3.0) (2016-10-28)
651
- [Full Changelog](https://github.com/chef/inspec/compare/v1.2.1...v1.3.0)
652
-
653
- **Implemented enhancements:**
654
-
655
- - extend the attributes object with helper methods [\#1220](https://github.com/chef/inspec/pull/1220) ([chris-rock](https://github.com/chris-rock))
656
-
657
- **Fixed bugs:**
658
-
659
- - inetd\_conf resource error [\#1253](https://github.com/chef/inspec/issues/1253)
660
- - Process user should eq \["longusername"\]: usernames get truncated with a '+' at the end [\#995](https://github.com/chef/inspec/issues/995)
661
- - Remove wildcard from windows package detection [\#1259](https://github.com/chef/inspec/pull/1259) ([chris-rock](https://github.com/chris-rock))
662
- - Fix nil timeout and retries [\#1256](https://github.com/chef/inspec/pull/1256) ([alexpop](https://github.com/alexpop))
663
- - Supermarket tools get and filter by tool\_type [\#1254](https://github.com/chef/inspec/pull/1254) ([alexpop](https://github.com/alexpop))
664
- - Fix processes resource user and command truncation [\#1225](https://github.com/chef/inspec/pull/1225) ([alexpop](https://github.com/alexpop))
665
-
666
- **Closed issues:**
667
-
668
- - inetd and xinetd resources inconsistencies [\#1252](https://github.com/chef/inspec/issues/1252)
669
- - TestKitchen - Duplicate testing when verifier specified in suite definition [\#1240](https://github.com/chef/inspec/issues/1240)
670
- - Document new DCO process in contributing.md [\#1223](https://github.com/chef/inspec/issues/1223)
671
- - Move InSpec Community to https://community-slack.chef.io/ [\#1222](https://github.com/chef/inspec/issues/1222)
672
- - Export Docker package for InSpec from Habitat [\#1212](https://github.com/chef/inspec/issues/1212)
673
- - Test verify action on Windows 2012 fails - \[no implicit conversion of nil into Array\] on default-windows-2012r2 [\#1193](https://github.com/chef/inspec/issues/1193)
674
- - Add InSpec habitat plan [\#843](https://github.com/chef/inspec/issues/843)
675
-
676
- **Merged pull requests:**
677
-
678
- - Use Slack Badge instead of Gitter badge [\#1262](https://github.com/chef/inspec/pull/1262) ([chris-rock](https://github.com/chris-rock))
679
- - remove accidentally added file [\#1260](https://github.com/chef/inspec/pull/1260) ([chris-rock](https://github.com/chris-rock))
680
- - overwrite exec for inetd because respec its is executing `exec` [\#1257](https://github.com/chef/inspec/pull/1257) ([chris-rock](https://github.com/chris-rock))
681
- - Use include instead of match in the error message [\#1248](https://github.com/chef/inspec/pull/1248) ([artem-sidorenko](https://github.com/artem-sidorenko))
682
- - Code-block directive is not needed here [\#1247](https://github.com/chef/inspec/pull/1247) ([artem-sidorenko](https://github.com/artem-sidorenko))
683
- - Set the global message to display again [\#1246](https://github.com/chef/inspec/pull/1246) ([ryankeairns](https://github.com/ryankeairns))
684
- - Ignore RVM files [\#1245](https://github.com/chef/inspec/pull/1245) ([artem-sidorenko](https://github.com/artem-sidorenko))
685
- - Change global message regarding 10/25 webinar [\#1244](https://github.com/chef/inspec/pull/1244) ([ryankeairns](https://github.com/ryankeairns))
686
- - Fix issue with registry\_key example [\#1243](https://github.com/chef/inspec/pull/1243) ([seththoenen](https://github.com/seththoenen))
687
- - Accessing nested mappings in a yam file [\#1242](https://github.com/chef/inspec/pull/1242) ([chriswessells](https://github.com/chriswessells))
688
- - Fix broken link in README.md [\#1233](https://github.com/chef/inspec/pull/1233) ([swalberg](https://github.com/swalberg))
689
- - DOCS: fix commit amend dash [\#1232](https://github.com/chef/inspec/pull/1232) ([alexpop](https://github.com/alexpop))
690
- - Headers and list elements that include more than one `\_` character we… [\#1231](https://github.com/chef/inspec/pull/1231) ([nathenharvey](https://github.com/nathenharvey))
691
- - Implements profile signing and verification \[Experimental\] [\#1228](https://github.com/chef/inspec/pull/1228) ([metadave](https://github.com/metadave))
692
- - Document new DCO process [\#1224](https://github.com/chef/inspec/pull/1224) ([chris-rock](https://github.com/chris-rock))
693
- - adding by\_user permissions support for windows [\#1215](https://github.com/chef/inspec/pull/1215) ([jeremymv2](https://github.com/jeremymv2))
694
-
695
- ## [v1.2.1](https://github.com/chef/inspec/tree/v1.2.1) (2016-10-15)
696
- [Full Changelog](https://github.com/chef/inspec/compare/v1.2.0...v1.2.1)
697
-
698
- **Implemented enhancements:**
699
-
700
- - Show actual value for cmp octal comparisons in string to match expected [\#1211](https://github.com/chef/inspec/pull/1211) ([alexpop](https://github.com/alexpop))
701
-
702
- **Fixed bugs:**
703
-
704
- - Using "cmp" Against File Mode Fails [\#1188](https://github.com/chef/inspec/issues/1188)
705
- - Unexpected failures with kitchen-inspec and inspec 1.0.0 [\#1187](https://github.com/chef/inspec/issues/1187)
706
- - update train to fix empty target URIs [\#1221](https://github.com/chef/inspec/pull/1221) ([arlimus](https://github.com/arlimus))
707
-
708
- **Closed issues:**
709
-
710
- - www: typo on inspec.io [\#1197](https://github.com/chef/inspec/issues/1197)
711
-
712
- **Merged pull requests:**
713
-
714
- - move Inspec Habitat package to chef/inspec. [\#1216](https://github.com/chef/inspec/pull/1216) ([metadave](https://github.com/metadave))
715
- - fix kitchen-inspec integration-1187 [\#1213](https://github.com/chef/inspec/pull/1213) ([vjeffrey](https://github.com/vjeffrey))
716
- - Website: Fix typo in homepage code image [\#1210](https://github.com/chef/inspec/pull/1210) ([magwalk](https://github.com/magwalk))
717
-
718
- ## [v1.2.0](https://github.com/chef/inspec/tree/v1.2.0) (2016-10-10)
719
- [Full Changelog](https://github.com/chef/inspec/compare/v1.1.0...v1.2.0)
720
-
721
- **Implemented enhancements:**
722
-
723
- - Support of linux mint or OS detection via distro families [\#280](https://github.com/chef/inspec/issues/280)
724
- - Support of Linux Mint [\#1209](https://github.com/chef/inspec/pull/1209) ([artem-sidorenko](https://github.com/artem-sidorenko))
725
-
726
- **Fixed bugs:**
727
-
728
- - Online tutorial: weird behavior with backspace, invalid commands [\#1184](https://github.com/chef/inspec/issues/1184)
729
- - parse\_config and parse\_config\_file does not show fully info when test fails \(or even if it succedes\) [\#1147](https://github.com/chef/inspec/issues/1147)
730
- - www: Online tutorial: safari inspec online demo bug! [\#1086](https://github.com/chef/inspec/issues/1086)
731
- - cmp code\_desc missing operation and expected valid [\#1204](https://github.com/chef/inspec/pull/1204) ([alexpop](https://github.com/alexpop))
732
-
733
- **Closed issues:**
734
-
735
- - Resources on `http://inspec.io/docs/reference/resources/` are not in alphabetical order [\#1195](https://github.com/chef/inspec/issues/1195)
736
- - www: Online tutorial: update inspec tutorial to 1.0.0 version [\#1169](https://github.com/chef/inspec/issues/1169)
737
-
738
- **Merged pull requests:**
739
-
740
- - fix backspace bug [\#1206](https://github.com/chef/inspec/pull/1206) ([vjeffrey](https://github.com/vjeffrey))
741
- - es5. that is a thing. [\#1191](https://github.com/chef/inspec/pull/1191) ([vjeffrey](https://github.com/vjeffrey))
742
- - tutorial response filename length [\#1159](https://github.com/chef/inspec/pull/1159) ([chris-rock](https://github.com/chris-rock))
743
-
744
- ## [v1.1.0](https://github.com/chef/inspec/tree/v1.1.0) (2016-10-05)
745
- [Full Changelog](https://github.com/chef/inspec/compare/v1.0.0...v1.1.0)
746
-
747
- **Fixed bugs:**
748
-
749
- - InSpec in Visibility [\#1117](https://github.com/chef/inspec/issues/1117)
750
- - inspec exec on tar.gz with local library requirements doesn't work [\#779](https://github.com/chef/inspec/issues/779)
751
- - parse\_config\_file fails when it encounters a '\[' [\#687](https://github.com/chef/inspec/issues/687)
752
- - use mock backend for inspec vendor/check/json [\#1202](https://github.com/chef/inspec/pull/1202) ([arlimus](https://github.com/arlimus))
753
- - bugfix: support nil entries in filter table [\#1201](https://github.com/chef/inspec/pull/1201) ([arlimus](https://github.com/arlimus))
754
- - bugfix: always use the mock backend for inspec archive [\#1200](https://github.com/chef/inspec/pull/1200) ([arlimus](https://github.com/arlimus))
755
- - Missing registry keys should not exist [\#1199](https://github.com/chef/inspec/pull/1199) ([alexpop](https://github.com/alexpop))
756
- - bugfix: use correct logger in cli [\#1198](https://github.com/chef/inspec/pull/1198) ([arlimus](https://github.com/arlimus))
757
-
758
- **Closed issues:**
759
-
760
- - registry\_key ignores failed Get-Item, always "exists" [\#1196](https://github.com/chef/inspec/issues/1196)
761
- - www: Online tutorial doesn't load \(not building\) [\#1182](https://github.com/chef/inspec/issues/1182)
762
- - Issue locally running an inspec check on a service resource [\#1176](https://github.com/chef/inspec/issues/1176)
763
- - Demo at `http://inspec.io/` stuck on `Loading` [\#1165](https://github.com/chef/inspec/issues/1165)
764
- - Confusing reporter output with inherited profiles [\#1071](https://github.com/chef/inspec/issues/1071)
765
- - Provide clear error message if dependency is not available [\#1069](https://github.com/chef/inspec/issues/1069)
766
- - Dependencies: Design UX for scoping of attributes and resources [\#1057](https://github.com/chef/inspec/issues/1057)
767
- - RFC Dependencies [\#888](https://github.com/chef/inspec/issues/888)
768
-
769
- **Merged pull requests:**
770
-
771
- - Remove pre-1.0 warning from meta-profile [\#1194](https://github.com/chef/inspec/pull/1194) ([chris-rock](https://github.com/chris-rock))
772
- - Add shell options [\#1192](https://github.com/chef/inspec/pull/1192) ([jonathanmorley](https://github.com/jonathanmorley))
773
- - Website: Fix buggy behavior in nav and add global message [\#1190](https://github.com/chef/inspec/pull/1190) ([magwalk](https://github.com/magwalk))
774
- - add example for yumconf-like structured files [\#1185](https://github.com/chef/inspec/pull/1185) ([vjeffrey](https://github.com/vjeffrey))
775
- - add sanity checks and fail build process if requirements aren't met [\#1183](https://github.com/chef/inspec/pull/1183) ([arlimus](https://github.com/arlimus))
776
- - tp/learn links [\#1181](https://github.com/chef/inspec/pull/1181) ([tpetchel](https://github.com/tpetchel))
777
- - include control section in instructions [\#1180](https://github.com/chef/inspec/pull/1180) ([vjeffrey](https://github.com/vjeffrey))
778
- - Changing headings to align with SEO best practices [\#1179](https://github.com/chef/inspec/pull/1179) ([davidwrede](https://github.com/davidwrede))
779
- - move inquirer to deploy [\#1178](https://github.com/chef/inspec/pull/1178) ([vjeffrey](https://github.com/vjeffrey))
780
- - Ignore lockfiles in example profiles [\#1177](https://github.com/chef/inspec/pull/1177) ([stevendanna](https://github.com/stevendanna))
781
- - Remove default parameter in `updateInstructions\(\)` [\#1175](https://github.com/chef/inspec/pull/1175) ([jerryaldrichiii](https://github.com/jerryaldrichiii))
782
- - Website: Fix docs nav functionality and optimize for mobile [\#1174](https://github.com/chef/inspec/pull/1174) ([magwalk](https://github.com/magwalk))
783
- - Adds segment [\#1172](https://github.com/chef/inspec/pull/1172) ([cwebberOps](https://github.com/cwebberOps))
784
- - print profile info before test results \(inherited profiles\) [\#1170](https://github.com/chef/inspec/pull/1170) ([vjeffrey](https://github.com/vjeffrey))
785
- - www: fix wording [\#1168](https://github.com/chef/inspec/pull/1168) ([arlimus](https://github.com/arlimus))
786
- - Update dependency documentation and mention the lockfile [\#1167](https://github.com/chef/inspec/pull/1167) ([alexpop](https://github.com/alexpop))
787
-
788
- ## [v1.0.0](https://github.com/chef/inspec/tree/v1.0.0) (2016-09-26)
789
- [Full Changelog](https://github.com/chef/inspec/compare/v1.0.0.beta3...v1.0.0)
790
-
791
- **Implemented enhancements:**
792
-
793
- - InSpec OS package [\#646](https://github.com/chef/inspec/issues/646)
794
- - replace wmi win32\_useraccount with adsi users [\#1149](https://github.com/chef/inspec/pull/1149) ([chris-rock](https://github.com/chris-rock))
795
-
796
- **Fixed bugs:**
797
-
798
- - README.md has broken link to non-existent file [\#1136](https://github.com/chef/inspec/issues/1136)
799
-
800
- **Merged pull requests:**
801
-
802
- - update omnibus images [\#1164](https://github.com/chef/inspec/pull/1164) ([chris-rock](https://github.com/chris-rock))
803
- - website / tutorial interaction [\#1163](https://github.com/chef/inspec/pull/1163) ([chris-rock](https://github.com/chris-rock))
804
- - fix buttons on community page [\#1162](https://github.com/chef/inspec/pull/1162) ([arlimus](https://github.com/arlimus))
805
- - fix alignment of community buttons [\#1161](https://github.com/chef/inspec/pull/1161) ([arlimus](https://github.com/arlimus))
806
- - Fix require\_controls DSL method [\#1160](https://github.com/chef/inspec/pull/1160) ([stevendanna](https://github.com/stevendanna))
807
- - Document the require\_resource function [\#1158](https://github.com/chef/inspec/pull/1158) ([stevendanna](https://github.com/stevendanna))
808
- - fix css in docs search [\#1157](https://github.com/chef/inspec/pull/1157) ([arlimus](https://github.com/arlimus))
809
- - update www readme for releasing the site [\#1156](https://github.com/chef/inspec/pull/1156) ([arlimus](https://github.com/arlimus))
810
- - Fix minor typo in sys\_info documentation [\#1155](https://github.com/chef/inspec/pull/1155) ([stevendanna](https://github.com/stevendanna))
811
- - fix outdated link in readme [\#1154](https://github.com/chef/inspec/pull/1154) ([arlimus](https://github.com/arlimus))
812
- - fix minor website bugs [\#1153](https://github.com/chef/inspec/pull/1153) ([arlimus](https://github.com/arlimus))
813
- - clean www before releasing [\#1152](https://github.com/chef/inspec/pull/1152) ([arlimus](https://github.com/arlimus))
814
- - add docs to the website [\#1151](https://github.com/chef/inspec/pull/1151) ([arlimus](https://github.com/arlimus))
815
- - return empty array for known privileges [\#1150](https://github.com/chef/inspec/pull/1150) ([chris-rock](https://github.com/chris-rock))
816
- - Extend example for parse\_config.rb [\#1148](https://github.com/chef/inspec/pull/1148) ([nvtkaszpir](https://github.com/nvtkaszpir))
817
- - Bump lockfile version to 1.0 [\#1141](https://github.com/chef/inspec/pull/1141) ([stevendanna](https://github.com/stevendanna))
818
- - Improve error messages from compliance fetcher [\#1126](https://github.com/chef/inspec/pull/1126) ([stevendanna](https://github.com/stevendanna))
819
-
820
- ## [v1.0.0.beta3](https://github.com/chef/inspec/tree/v1.0.0.beta3) (2016-09-25)
821
- [Full Changelog](https://github.com/chef/inspec/compare/v1.0.0.beta2...v1.0.0.beta3)
822
-
823
- **Implemented enhancements:**
824
-
825
- - Improve lockfile handling [\#1070](https://github.com/chef/inspec/issues/1070)
826
- - Show skip\_message and correct title [\#1109](https://github.com/chef/inspec/pull/1109) ([alexpop](https://github.com/alexpop))
827
-
828
- **Fixed bugs:**
829
-
830
- - InSpec CLI output not showing skip message when control title is defined [\#1097](https://github.com/chef/inspec/issues/1097)
831
- - bugfix: there is one more button to start the online demo [\#1140](https://github.com/chef/inspec/pull/1140) ([arlimus](https://github.com/arlimus))
832
-
833
- **Closed issues:**
834
-
835
- - add docs to inspec.io [\#1119](https://github.com/chef/inspec/issues/1119)
836
- - Cache key for dependencies needs to be based on content hash for urls [\#1066](https://github.com/chef/inspec/issues/1066)
837
-
838
- **Merged pull requests:**
839
-
840
- - Enable builds on both Windows and \*nix [\#1145](https://github.com/chef/inspec/pull/1145) ([scotthain](https://github.com/scotthain))
841
- - Website: Minor edits in preparation for launch [\#1144](https://github.com/chef/inspec/pull/1144) ([magwalk](https://github.com/magwalk))
842
- - Truncate long filename. Temporary fix [\#1143](https://github.com/chef/inspec/pull/1143) ([stevendanna](https://github.com/stevendanna))
843
- - add variables to each loops [\#1142](https://github.com/chef/inspec/pull/1142) ([chris-rock](https://github.com/chris-rock))
844
- - embed tutorial in website [\#1139](https://github.com/chef/inspec/pull/1139) ([arlimus](https://github.com/arlimus))
845
- - scope all tutorial assets [\#1138](https://github.com/chef/inspec/pull/1138) ([arlimus](https://github.com/arlimus))
846
- - add build task for online tutorial with all assets [\#1137](https://github.com/chef/inspec/pull/1137) ([arlimus](https://github.com/arlimus))
847
- - implement filter table for group/groups resource [\#1135](https://github.com/chef/inspec/pull/1135) ([chris-rock](https://github.com/chris-rock))
848
- - fix minor typos in user resource [\#1134](https://github.com/chef/inspec/pull/1134) ([chris-rock](https://github.com/chris-rock))
849
- - Website Copy Edits [\#1133](https://github.com/chef/inspec/pull/1133) ([magwalk](https://github.com/magwalk))
850
- - add build tasks for www [\#1132](https://github.com/chef/inspec/pull/1132) ([arlimus](https://github.com/arlimus))
851
- - add resources.md doc generation [\#1130](https://github.com/chef/inspec/pull/1130) ([arlimus](https://github.com/arlimus))
852
- - add all resources to docs [\#1129](https://github.com/chef/inspec/pull/1129) ([arlimus](https://github.com/arlimus))
853
- - reorder and fix sidebar contents for docs [\#1128](https://github.com/chef/inspec/pull/1128) ([arlimus](https://github.com/arlimus))
854
- - add ruby usage in inspec as markdown [\#1127](https://github.com/chef/inspec/pull/1127) ([arlimus](https://github.com/arlimus))
855
- - Add markdown docs [\#1125](https://github.com/chef/inspec/pull/1125) ([arlimus](https://github.com/arlimus))
856
- - Avoid spurious downloads during dependency management [\#1124](https://github.com/chef/inspec/pull/1124) ([stevendanna](https://github.com/stevendanna))
857
- - Website Design Fixes [\#1123](https://github.com/chef/inspec/pull/1123) ([magwalk](https://github.com/magwalk))
858
-
859
- ## [v1.0.0.beta2](https://github.com/chef/inspec/tree/v1.0.0.beta2) (2016-09-22)
860
- [Full Changelog](https://github.com/chef/inspec/compare/v1.0.0.pre.beta1...v1.0.0.beta2)
861
-
862
- **Implemented enhancements:**
863
-
864
- - kernel\_parameter does not show fully info when test fails [\#1093](https://github.com/chef/inspec/issues/1093)
865
- - InSpec html demo [\#851](https://github.com/chef/inspec/issues/851)
866
- - Counting and status of controls without tests [\#849](https://github.com/chef/inspec/issues/849)
867
- - supports does not mark resources as skipped [\#354](https://github.com/chef/inspec/issues/354)
868
- - `include Inspec::DSL` anywhere [\#271](https://github.com/chef/inspec/issues/271)
869
- - Suse Support [\#113](https://github.com/chef/inspec/issues/113)
870
- - Update the username and password login method [\#1095](https://github.com/chef/inspec/pull/1095) ([alexpop](https://github.com/alexpop))
871
-
872
- **Fixed bugs:**
873
-
874
- - InSpec in Workflow [\#1115](https://github.com/chef/inspec/issues/1115)
875
- - uninstalled package shows as installed [\#1092](https://github.com/chef/inspec/issues/1092)
876
- - undefined method `send\_request' for Compliance::API:Class [\#1088](https://github.com/chef/inspec/issues/1088)
877
- - \[package\] Regression on Windows 2008R2 [\#998](https://github.com/chef/inspec/issues/998)
878
- - \[script\] Is there a limit on the number of char's within a script block [\#539](https://github.com/chef/inspec/issues/539)
879
- - Use parenthesis when passing regular expressions [\#1106](https://github.com/chef/inspec/pull/1106) ([alexpop](https://github.com/alexpop))
880
- - Include code description in the output of failed controls [\#1096](https://github.com/chef/inspec/pull/1096) ([alexpop](https://github.com/alexpop))
881
- - Update the username and password login method [\#1095](https://github.com/chef/inspec/pull/1095) ([alexpop](https://github.com/alexpop))
882
-
883
- **Closed issues:**
884
-
885
- - Package Resource isn't searching 64-bit Registry Hives [\#1100](https://github.com/chef/inspec/issues/1100)
886
- - demo improvements [\#1089](https://github.com/chef/inspec/issues/1089)
887
- - Dependencies: All resources are scoped [\#1058](https://github.com/chef/inspec/issues/1058)
888
- - Improve InSpec tutorial [\#1045](https://github.com/chef/inspec/issues/1045)
889
- - 1.10.2 has an extra space in pip package output [\#1043](https://github.com/chef/inspec/issues/1043)
890
- - Follow up to 1013: find\_files\(\) errors still occurring for apache\_conf resource after 0.33.0 upgrade [\#1030](https://github.com/chef/inspec/issues/1030)
891
- - MVP in-browser inspec demo [\#957](https://github.com/chef/inspec/issues/957)
892
- - Failing tests in inherited tests are not displayed [\#899](https://github.com/chef/inspec/issues/899)
893
-
894
- **Merged pull requests:**
895
-
896
- - Use the gem version for the omnibus package version [\#1122](https://github.com/chef/inspec/pull/1122) ([yzl](https://github.com/yzl))
897
- - Add legal pages [\#1121](https://github.com/chef/inspec/pull/1121) ([magwalk](https://github.com/magwalk))
898
- - update docs to markdown [\#1120](https://github.com/chef/inspec/pull/1120) ([arlimus](https://github.com/arlimus))
899
- - add readme to www-build [\#1118](https://github.com/chef/inspec/pull/1118) ([arlimus](https://github.com/arlimus))
900
- - Always write lockfiles for local top-level profiles [\#1116](https://github.com/chef/inspec/pull/1116) ([stevendanna](https://github.com/stevendanna))
901
- - Add `--cache` option to `inspec exec` [\#1113](https://github.com/chef/inspec/pull/1113) ([stevendanna](https://github.com/stevendanna))
902
- - fix double-space in pip to\_s resource [\#1112](https://github.com/chef/inspec/pull/1112) ([chris-rock](https://github.com/chris-rock))
903
- - fixes debian package manager and some of the code examples [\#1111](https://github.com/chef/inspec/pull/1111) ([Anirudh-Gupta](https://github.com/Anirudh-Gupta))
904
- - Add main site footer [\#1110](https://github.com/chef/inspec/pull/1110) ([magwalk](https://github.com/magwalk))
905
- - Add community and tutorials pages [\#1108](https://github.com/chef/inspec/pull/1108) ([magwalk](https://github.com/magwalk))
906
- - Add homepage content and styles [\#1107](https://github.com/chef/inspec/pull/1107) ([magwalk](https://github.com/magwalk))
907
- - Styling setup and main navigation [\#1105](https://github.com/chef/inspec/pull/1105) ([magwalk](https://github.com/magwalk))
908
- - docs task and rst/md formatter separation [\#1104](https://github.com/chef/inspec/pull/1104) ([arlimus](https://github.com/arlimus))
909
- - Fail if a remote source content doesn't match lockfile [\#1103](https://github.com/chef/inspec/pull/1103) ([stevendanna](https://github.com/stevendanna))
910
- - Optimize tutorial [\#1101](https://github.com/chef/inspec/pull/1101) ([chris-rock](https://github.com/chris-rock))
911
- - Build with master of omnibus [\#1099](https://github.com/chef/inspec/pull/1099) ([yzl](https://github.com/yzl))
912
- - use Gem::Version instead of a regular expression for a test version bump [\#1098](https://github.com/chef/inspec/pull/1098) ([chris-rock](https://github.com/chris-rock))
913
- - fix demo instructions [\#1094](https://github.com/chef/inspec/pull/1094) ([vjeffrey](https://github.com/vjeffrey))
914
- - Allow users to reference resources from dependencies [\#1080](https://github.com/chef/inspec/pull/1080) ([stevendanna](https://github.com/stevendanna))
915
- - In ApacheConf\#include\_files, check for abs paths [\#1042](https://github.com/chef/inspec/pull/1042) ([davidcpell](https://github.com/davidcpell))
916
-
917
- ## [v1.0.0.pre.beta1](https://github.com/chef/inspec/tree/v1.0.0.pre.beta1) (2016-09-19)
918
- [Full Changelog](https://github.com/chef/inspec/compare/v0.35.0...v1.0.0.pre.beta1)
919
-
920
- **Implemented enhancements:**
921
-
922
- - InSpec output for summary needs to count controls [\#852](https://github.com/chef/inspec/issues/852)
923
- - ssl resource to use inspec.backend.hostname and require train 0.19.1 [\#1084](https://github.com/chef/inspec/pull/1084) ([alexpop](https://github.com/alexpop))
924
- - optimize command simulator auto-generation [\#1078](https://github.com/chef/inspec/pull/1078) ([chris-rock](https://github.com/chris-rock))
925
-
926
- **Closed issues:**
927
-
928
- - proper scrolling of terminal [\#1053](https://github.com/chef/inspec/issues/1053)
929
-
930
- **Merged pull requests:**
931
-
932
- - fix inspec shell handling [\#1090](https://github.com/chef/inspec/pull/1090) ([vjeffrey](https://github.com/vjeffrey))
933
- - update responses [\#1087](https://github.com/chef/inspec/pull/1087) ([vjeffrey](https://github.com/vjeffrey))
934
- - print profile summary and test summary [\#1083](https://github.com/chef/inspec/pull/1083) ([vjeffrey](https://github.com/vjeffrey))
935
- - Fix minor typo in documentation [\#1082](https://github.com/chef/inspec/pull/1082) ([Dispader](https://github.com/Dispader))
936
- - uglify wepack content, kudos @chris-rock [\#1081](https://github.com/chef/inspec/pull/1081) ([arlimus](https://github.com/arlimus))
937
- - Static keys in all json [\#811](https://github.com/chef/inspec/pull/811) ([arlimus](https://github.com/arlimus))
938
-
939
- ## [v0.35.0](https://github.com/chef/inspec/tree/v0.35.0) (2016-09-16)
940
- [Full Changelog](https://github.com/chef/inspec/compare/v0.34.1...v0.35.0)
941
-
942
- **Fixed bugs:**
943
-
944
- - resource dsl not loded properly inside describe blocks [\#1074](https://github.com/chef/inspec/issues/1074)
945
-
946
- **Closed issues:**
947
-
948
- - online demo: check style of tutorial text [\#1054](https://github.com/chef/inspec/issues/1054)
949
- - online demo: clear \(linux\) and cls \(windows\) command to clear the terminal [\#1052](https://github.com/chef/inspec/issues/1052)
950
- - respect inspec.yml supports with include\_controls [\#1049](https://github.com/chef/inspec/issues/1049)
951
- - Simplify dependency in inspec.yml [\#1048](https://github.com/chef/inspec/issues/1048)
952
-
953
- **Merged pull requests:**
954
-
955
- - Process transitive dependencies from lock file [\#1079](https://github.com/chef/inspec/pull/1079) ([stevendanna](https://github.com/stevendanna))
956
- - Don't gpg-sign commits during tests [\#1077](https://github.com/chef/inspec/pull/1077) ([stevendanna](https://github.com/stevendanna))
957
- - Ensure resources are visible inside its blocks [\#1076](https://github.com/chef/inspec/pull/1076) ([stevendanna](https://github.com/stevendanna))
958
- - add gulp build pipeline to online demo [\#1075](https://github.com/chef/inspec/pull/1075) ([arlimus](https://github.com/arlimus))
959
- - inspec simulator [\#1073](https://github.com/chef/inspec/pull/1073) ([chris-rock](https://github.com/chris-rock))
960
- - Skip controls from profiles that don't support the current platform [\#1072](https://github.com/chef/inspec/pull/1072) ([stevendanna](https://github.com/stevendanna))
961
- - add tutorials \(references\) to the site skeleton [\#1068](https://github.com/chef/inspec/pull/1068) ([arlimus](https://github.com/arlimus))
962
- - Vj/improve demo [\#1065](https://github.com/chef/inspec/pull/1065) ([vjeffrey](https://github.com/vjeffrey))
963
- - Provide inspec.yml shortcut syntax [\#1064](https://github.com/chef/inspec/pull/1064) ([stevendanna](https://github.com/stevendanna))
964
-
965
- ## [v0.34.1](https://github.com/chef/inspec/tree/v0.34.1) (2016-09-13)
966
- [Full Changelog](https://github.com/chef/inspec/compare/v0.34.0...v0.34.1)
967
-
968
- **Fixed bugs:**
969
-
970
- - Force encoding in bin only [\#1062](https://github.com/chef/inspec/pull/1062) ([chris-rock](https://github.com/chris-rock))
971
-
972
- **Merged pull requests:**
973
-
974
- - Fixup rubocop violation in www/ [\#1067](https://github.com/chef/inspec/pull/1067) ([stevendanna](https://github.com/stevendanna))
975
- - add homepage skeleton [\#1063](https://github.com/chef/inspec/pull/1063) ([arlimus](https://github.com/arlimus))
976
-
977
- ## [v0.34.0](https://github.com/chef/inspec/tree/v0.34.0) (2016-09-12)
978
- [Full Changelog](https://github.com/chef/inspec/compare/v0.33.2...v0.34.0)
979
-
980
- **Implemented enhancements:**
981
-
982
- - Vendor Github and Supermarket dependencies [\#959](https://github.com/chef/inspec/issues/959)
983
- - use simple config for security policy resource [\#1044](https://github.com/chef/inspec/pull/1044) ([chris-rock](https://github.com/chris-rock))
984
- - identify enabled/disabled accounts for windows [\#1039](https://github.com/chef/inspec/pull/1039) ([chris-rock](https://github.com/chris-rock))
985
-
986
- **Closed issues:**
987
-
988
- - Compliance should allow the ability to upload the unconverted SCAP profiles from the agencies. [\#1055](https://github.com/chef/inspec/issues/1055)
989
- - Multiple matchers in a describe block display only a single line [\#1025](https://github.com/chef/inspec/issues/1025)
990
- - Create all content for inspec homepage demo [\#1021](https://github.com/chef/inspec/issues/1021)
991
- - User resource should use Filtertable [\#948](https://github.com/chef/inspec/issues/948)
992
-
993
- **Merged pull requests:**
994
-
995
- - rename example to meta-profile [\#1051](https://github.com/chef/inspec/pull/1051) ([chris-rock](https://github.com/chris-rock))
996
- - fix webpack start script for tutorial [\#1050](https://github.com/chef/inspec/pull/1050) ([vjeffrey](https://github.com/vjeffrey))
997
- - Add Inspec::Fetcher\#relative\_target for compatibility [\#1046](https://github.com/chef/inspec/pull/1046) ([stevendanna](https://github.com/stevendanna))
998
- - Typo supermarket -\> compliance [\#1041](https://github.com/chef/inspec/pull/1041) ([stevendanna](https://github.com/stevendanna))
999
- - Improve duplicate and cycle detection in resolver [\#1038](https://github.com/chef/inspec/pull/1038) ([stevendanna](https://github.com/stevendanna))
1000
- - Add example of corporate profile [\#1037](https://github.com/chef/inspec/pull/1037) ([stevendanna](https://github.com/stevendanna))
1001
- - Ensure simplecov starts before everything else [\#1036](https://github.com/chef/inspec/pull/1036) ([stevendanna](https://github.com/stevendanna))
1002
- - add sys\_info resource to get information about the hostname [\#1035](https://github.com/chef/inspec/pull/1035) ([chris-rock](https://github.com/chris-rock))
1003
- - Add GitFetcher and rework Fetchers+SourceReaders [\#1034](https://github.com/chef/inspec/pull/1034) ([stevendanna](https://github.com/stevendanna))
1004
- - add demo content [\#1033](https://github.com/chef/inspec/pull/1033) ([vjeffrey](https://github.com/vjeffrey))
1005
- - add health graphs [\#1032](https://github.com/chef/inspec/pull/1032) ([arlimus](https://github.com/arlimus))
1006
- - fix table formatting in readme [\#1031](https://github.com/chef/inspec/pull/1031) ([arlimus](https://github.com/arlimus))
1007
- - remove old delivery tests [\#1029](https://github.com/chef/inspec/pull/1029) ([arlimus](https://github.com/arlimus))
1008
- - make demo better [\#1015](https://github.com/chef/inspec/pull/1015) ([vjeffrey](https://github.com/vjeffrey))
1009
- - user resource should support filtertable [\#990](https://github.com/chef/inspec/pull/990) ([ksubrama](https://github.com/ksubrama))
1010
-
1011
- ## [v0.33.2](https://github.com/chef/inspec/tree/v0.33.2) (2016-09-07)
1012
- [Full Changelog](https://github.com/chef/inspec/compare/v0.33.1...v0.33.2)
1013
-
1014
- **Implemented enhancements:**
1015
-
1016
- - ssl resource fix and speed improvement [\#1027](https://github.com/chef/inspec/pull/1027) ([alexpop](https://github.com/alexpop))
1017
- - allow direct access to iis configuration parameters [\#1020](https://github.com/chef/inspec/pull/1020) ([chris-rock](https://github.com/chris-rock))
1018
-
1019
- **Fixed bugs:**
1020
-
1021
- - ssl resource fix and speed improvement [\#1027](https://github.com/chef/inspec/pull/1027) ([alexpop](https://github.com/alexpop))
1022
-
1023
- ## [v0.33.1](https://github.com/chef/inspec/tree/v0.33.1) (2016-09-07)
1024
- [Full Changelog](https://github.com/chef/inspec/compare/v0.33.0...v0.33.1)
1025
-
1026
- **Closed issues:**
1027
-
1028
- - Research: determine mechanism for recording + playing back inspec [\#955](https://github.com/chef/inspec/issues/955)
1029
- - Create content for interactive inspec online demo [\#954](https://github.com/chef/inspec/issues/954)
1030
-
1031
- **Merged pull requests:**
1032
-
1033
- - Pass attributes from command line into profile context [\#1026](https://github.com/chef/inspec/pull/1026) ([stevendanna](https://github.com/stevendanna))
1034
- - Remove SourceReader::Inspec\#prepare\_load\_path [\#1023](https://github.com/chef/inspec/pull/1023) ([stevendanna](https://github.com/stevendanna))
1035
- - add demo yml contents [\#1022](https://github.com/chef/inspec/pull/1022) ([arlimus](https://github.com/arlimus))
1036
-
1037
- ## [v0.33.0](https://github.com/chef/inspec/tree/v0.33.0) (2016-09-05)
1038
- [Full Changelog](https://github.com/chef/inspec/compare/v0.32.0...v0.33.0)
1039
-
1040
- **Implemented enhancements:**
1041
-
1042
- - Introduce scoping to the ProfileContext which has a view of all of its dependencies [\#958](https://github.com/chef/inspec/issues/958)
1043
- - Create Help for Subcommands [\#305](https://github.com/chef/inspec/issues/305)
1044
- - Allow service resource to accept Windows service name with spaces [\#1003](https://github.com/chef/inspec/pull/1003) ([martinheg](https://github.com/martinheg))
1045
-
1046
- **Fixed bugs:**
1047
-
1048
- - Error output not informative [\#1016](https://github.com/chef/inspec/issues/1016)
1049
- - Suse Linux Enterprise Server 11 SPX is failing for describe service resource. [\#997](https://github.com/chef/inspec/issues/997)
1050
- - Inspec Docker directory test fails [\#996](https://github.com/chef/inspec/issues/996)
1051
- - package\(\) 'version' {should match\(pattern\)} does not return failed control, but shows as failed test [\#898](https://github.com/chef/inspec/issues/898)
1052
- - Raise error when an invalid URI is received [\#1019](https://github.com/chef/inspec/pull/1019) ([alexpop](https://github.com/alexpop))
1053
- - Fix os exception in mysql resource [\#1012](https://github.com/chef/inspec/pull/1012) ([alexpop](https://github.com/alexpop))
1054
- - cmp not treating 0 as integer only as string [\#991](https://github.com/chef/inspec/pull/991) ([jeremymv2](https://github.com/jeremymv2))
1055
-
1056
- **Closed issues:**
1057
-
1058
- - apache\_conf resource seems to be using incorrect paths to amalgamate apache config \(only Centos/RHEL?\) [\#1013](https://github.com/chef/inspec/issues/1013)
1059
- - More options link in Readme.md doesn't work \(404\) - need updating? [\#1001](https://github.com/chef/inspec/issues/1001)
1060
- - Chef compliance breaks after updating inspec gem 0.32 [\#992](https://github.com/chef/inspec/issues/992)
1061
- - Improve CLI report [\#984](https://github.com/chef/inspec/issues/984)
1062
- - record inspec + in-browser playback for online demo [\#956](https://github.com/chef/inspec/issues/956)
1063
- - UX & UI design for the interactive HTML demo [\#953](https://github.com/chef/inspec/issues/953)
1064
-
1065
- **Merged pull requests:**
1066
-
1067
- - use winrm v2 [\#1018](https://github.com/chef/inspec/pull/1018) ([chris-rock](https://github.com/chris-rock))
1068
- - always display error message [\#1017](https://github.com/chef/inspec/pull/1017) ([chris-rock](https://github.com/chris-rock))
1069
- - Fix apache conf [\#1014](https://github.com/chef/inspec/pull/1014) ([jeremymv2](https://github.com/jeremymv2))
1070
- - fix cli inherited profiles [\#1008](https://github.com/chef/inspec/pull/1008) ([vjeffrey](https://github.com/vjeffrey))
1071
- - improve suse 11 support for service resource [\#1007](https://github.com/chef/inspec/pull/1007) ([chris-rock](https://github.com/chris-rock))
1072
- - Extend Inspec DSL docs [\#1006](https://github.com/chef/inspec/pull/1006) ([nvtkaszpir](https://github.com/nvtkaszpir))
1073
- - vj/fix cli report [\#1004](https://github.com/chef/inspec/pull/1004) ([vjeffrey](https://github.com/vjeffrey))
1074
- - fix cli link to docs [\#1002](https://github.com/chef/inspec/pull/1002) ([chris-rock](https://github.com/chris-rock))
1075
- - Promote cmp usage as it provides results with octal mode [\#999](https://github.com/chef/inspec/pull/999) ([alexpop](https://github.com/alexpop))
1076
- - Initial attempt at isolating resources between dependencies [\#994](https://github.com/chef/inspec/pull/994) ([stevendanna](https://github.com/stevendanna))
1077
- - inspec demo [\#989](https://github.com/chef/inspec/pull/989) ([vjeffrey](https://github.com/vjeffrey))
1078
- - Allow functional tests to pass on OSX [\#988](https://github.com/chef/inspec/pull/988) ([stevendanna](https://github.com/stevendanna))
1079
- - Minor refactor and explanatory comments [\#987](https://github.com/chef/inspec/pull/987) ([stevendanna](https://github.com/stevendanna))
1080
-
1081
- ## [v0.32.0](https://github.com/chef/inspec/tree/v0.32.0) (2016-08-26)
1082
- [Full Changelog](https://github.com/chef/inspec/compare/v0.31.0...v0.32.0)
1083
-
1084
- **Implemented enhancements:**
1085
-
1086
- - Provide SSL InSpec with full demo [\#903](https://github.com/chef/inspec/issues/903)
1087
- - improve package resource on windows [\#86](https://github.com/chef/inspec/issues/86)
1088
- - can check windows service startup mode now [\#968](https://github.com/chef/inspec/pull/968) ([Anirudh-Gupta](https://github.com/Anirudh-Gupta))
1089
- - Resolved an issue checking ports on windows [\#962](https://github.com/chef/inspec/pull/962) ([chris-rock](https://github.com/chris-rock))
1090
-
1091
- **Fixed bugs:**
1092
-
1093
- - Grouping multiple `it` blocks in one `describe` blocks ruins console output during test runs [\#918](https://github.com/chef/inspec/issues/918)
1094
- - Windows default path format causes errors with inspec check [\#672](https://github.com/chef/inspec/issues/672)
1095
- - bugfix windows forward slashes handling [\#963](https://github.com/chef/inspec/pull/963) ([chris-rock](https://github.com/chris-rock))
1096
- - Fix command evaluation for inspec shell -c [\#943](https://github.com/chef/inspec/pull/943) ([ksubrama](https://github.com/ksubrama))
1097
-
1098
- **Closed issues:**
1099
-
1100
- - Support sid for user resource [\#960](https://github.com/chef/inspec/issues/960)
1101
- - Create and load Lockfiles for dependencies [\#950](https://github.com/chef/inspec/issues/950)
1102
- - Implement test cases for inspec shell [\#942](https://github.com/chef/inspec/issues/942)
1103
- - Transitive dependency loading [\#915](https://github.com/chef/inspec/issues/915)
1104
- - Document InSpec OR features [\#853](https://github.com/chef/inspec/issues/853)
1105
- - Document ini resource [\#848](https://github.com/chef/inspec/issues/848)
1106
- - Document special service resources [\#495](https://github.com/chef/inspec/issues/495)
1107
-
1108
- **Merged pull requests:**
1109
-
1110
- - Reformat service resource docs for discoverability [\#986](https://github.com/chef/inspec/pull/986) ([stevendanna](https://github.com/stevendanna))
1111
- - Generate documentation for the `vendor` command [\#985](https://github.com/chef/inspec/pull/985) ([stevendanna](https://github.com/stevendanna))
1112
- - suport for ruby 2.2.2 [\#983](https://github.com/chef/inspec/pull/983) ([chris-rock](https://github.com/chris-rock))
1113
- - Add windows user SID as 'UID' in user resource. Fix \#960 [\#982](https://github.com/chef/inspec/pull/982) ([ksubrama](https://github.com/ksubrama))
1114
- - document ini resource [\#981](https://github.com/chef/inspec/pull/981) ([vjeffrey](https://github.com/vjeffrey))
1115
- - Upgrade FFI to Ruby 2.3 issues on windows [\#980](https://github.com/chef/inspec/pull/980) ([ksubrama](https://github.com/ksubrama))
1116
- - move train connection out of loop for command\_simulator [\#979](https://github.com/chef/inspec/pull/979) ([vjeffrey](https://github.com/vjeffrey))
1117
- - Update port.rb Documentation [\#978](https://github.com/chef/inspec/pull/978) ([nvtkaszpir](https://github.com/nvtkaszpir))
1118
- - first pass at collecting command output for demo [\#977](https://github.com/chef/inspec/pull/977) ([vjeffrey](https://github.com/vjeffrey))
1119
- - Fix `rake` to work again [\#976](https://github.com/chef/inspec/pull/976) ([jkeiser](https://github.com/jkeiser))
1120
- - Fix `bundle install` on Ruby 2.1.9 [\#975](https://github.com/chef/inspec/pull/975) ([jkeiser](https://github.com/jkeiser))
1121
- - Initial control isolation support [\#973](https://github.com/chef/inspec/pull/973) ([stevendanna](https://github.com/stevendanna))
1122
- - Allow JSON 2.x [\#972](https://github.com/chef/inspec/pull/972) ([chris-rock](https://github.com/chris-rock))
1123
- - Add Ruby 2.3 to the test matrix, make it the primary test for most suites [\#971](https://github.com/chef/inspec/pull/971) ([jkeiser](https://github.com/jkeiser))
1124
- - Speed up windows package lookup [\#970](https://github.com/chef/inspec/pull/970) ([ksubrama](https://github.com/ksubrama))
1125
- - Expand relative paths based on profile location [\#965](https://github.com/chef/inspec/pull/965) ([stevendanna](https://github.com/stevendanna))
1126
- - restructure test suites in travis [\#964](https://github.com/chef/inspec/pull/964) ([chris-rock](https://github.com/chris-rock))
1127
- - Replace Molinillo-based resolver [\#961](https://github.com/chef/inspec/pull/961) ([stevendanna](https://github.com/stevendanna))
1128
- - Add prototype of inspec.lock [\#949](https://github.com/chef/inspec/pull/949) ([stevendanna](https://github.com/stevendanna))
1129
- - document OR feature [\#947](https://github.com/chef/inspec/pull/947) ([vjeffrey](https://github.com/vjeffrey))
1130
- - print controls, then tests; print header of describe, then individual test results [\#946](https://github.com/chef/inspec/pull/946) ([vjeffrey](https://github.com/vjeffrey))
1131
- - Add darwin helper [\#945](https://github.com/chef/inspec/pull/945) ([tas50](https://github.com/tas50))
1132
- - Update platforms in the docs to match the code [\#944](https://github.com/chef/inspec/pull/944) ([tas50](https://github.com/tas50))
1133
- - Add integration tests for file owner on windows [\#923](https://github.com/chef/inspec/pull/923) ([chris-rock](https://github.com/chris-rock))
1134
-
1135
- ## [v0.31.0](https://github.com/chef/inspec/tree/v0.31.0) (2016-08-19)
1136
- [Full Changelog](https://github.com/chef/inspec/compare/v0.30.0...v0.31.0)
1137
-
1138
- **Implemented enhancements:**
1139
-
1140
- - Support writing full tests in inspec shell [\#240](https://github.com/chef/inspec/issues/240)
1141
- - inspec shell documentation - Fix \#805 [\#925](https://github.com/chef/inspec/pull/925) ([ksubrama](https://github.com/ksubrama))
1142
- - Windows ports with pid and process name [\#912](https://github.com/chef/inspec/pull/912) ([alexpop](https://github.com/alexpop))
1143
- - Improve inspec shell by having it evaluate describe/control blocks. [\#909](https://github.com/chef/inspec/pull/909) ([ksubrama](https://github.com/ksubrama))
1144
-
1145
- **Fixed bugs:**
1146
-
1147
- - `inspec login help` help text inconsistent with `inspec` CLI usage [\#905](https://github.com/chef/inspec/issues/905)
1148
- - Subcommand help outputs incorrect usage line [\#895](https://github.com/chef/inspec/issues/895)
1149
- - `inspec compliance version` fails with stacktrace if no compliance URL is configured [\#894](https://github.com/chef/inspec/issues/894)
1150
- - `inspec` binary occasionally exits zero on SSH failures [\#840](https://github.com/chef/inspec/issues/840)
1151
- - inspec login fails [\#793](https://github.com/chef/inspec/issues/793)
1152
- - ssh\_config and sshd\_config matchers should be case-insensitive [\#759](https://github.com/chef/inspec/issues/759)
1153
- - Login succeeds but later commands fail [\#731](https://github.com/chef/inspec/issues/731)
1154
- - passwd resource does not ignore comments [\#725](https://github.com/chef/inspec/issues/725)
1155
- - remove tests and dev dependencies from released gem [\#924](https://github.com/chef/inspec/pull/924) ([arlimus](https://github.com/arlimus))
1156
- - update dependencies and loosen molinillo [\#917](https://github.com/chef/inspec/pull/917) ([arlimus](https://github.com/arlimus))
1157
- - Handle xinetd config with only one entry [\#846](https://github.com/chef/inspec/pull/846) ([chris-rock](https://github.com/chris-rock))
1158
-
1159
- **Closed issues:**
1160
-
1161
- - Document InSpec Shell [\#805](https://github.com/chef/inspec/issues/805)
1162
-
1163
- **Merged pull requests:**
1164
-
1165
- - fix functional test for compliance plugin [\#941](https://github.com/chef/inspec/pull/941) ([chris-rock](https://github.com/chris-rock))
1166
- - give accurate information for inspec compliance login --help [\#938](https://github.com/chef/inspec/pull/938) ([vjeffrey](https://github.com/vjeffrey))
1167
- - Document awesome where syntax for port [\#937](https://github.com/chef/inspec/pull/937) ([pburkholder](https://github.com/pburkholder))
1168
- - Fetch deps based on urls [\#935](https://github.com/chef/inspec/pull/935) ([stevendanna](https://github.com/stevendanna))
1169
- - Ease testing of compliance integration tests [\#934](https://github.com/chef/inspec/pull/934) ([chris-rock](https://github.com/chris-rock))
1170
- - restructure unit tests [\#933](https://github.com/chef/inspec/pull/933) ([chris-rock](https://github.com/chris-rock))
1171
- - return token stored message on login [\#932](https://github.com/chef/inspec/pull/932) ([vjeffrey](https://github.com/vjeffrey))
1172
- - fail gracefully on inspec compliance profiles when bad token is provided [\#930](https://github.com/chef/inspec/pull/930) ([vjeffrey](https://github.com/vjeffrey))
1173
- - Fix recursive deps for path-based deps [\#929](https://github.com/chef/inspec/pull/929) ([stevendanna](https://github.com/stevendanna))
1174
- - fix integration tests for Chef Compliance [\#928](https://github.com/chef/inspec/pull/928) ([chris-rock](https://github.com/chris-rock))
1175
- - Remove false username/passwd msg from inspec compliance login [\#927](https://github.com/chef/inspec/pull/927) ([vjeffrey](https://github.com/vjeffrey))
1176
- - inspec compliance version fails gracefully when no server config [\#926](https://github.com/chef/inspec/pull/926) ([vjeffrey](https://github.com/vjeffrey))
1177
- - add kitchen.yml for non-public kitchen boxes [\#922](https://github.com/chef/inspec/pull/922) ([chris-rock](https://github.com/chris-rock))
1178
- - Ignore comment lines in /etc/passwd [\#920](https://github.com/chef/inspec/pull/920) ([stevendanna](https://github.com/stevendanna))
1179
- - ssh\_config parse should be case insensitive [\#919](https://github.com/chef/inspec/pull/919) ([vjeffrey](https://github.com/vjeffrey))
1180
- - add ssl resource \(early access\) [\#914](https://github.com/chef/inspec/pull/914) ([arlimus](https://github.com/arlimus))
1181
- - Add iis\_site resource [\#907](https://github.com/chef/inspec/pull/907) ([chrisevett](https://github.com/chrisevett))
1182
-
1183
- ## [v0.30.0](https://github.com/chef/inspec/tree/v0.30.0) (2016-08-12)
1184
- [Full Changelog](https://github.com/chef/inspec/compare/v0.29.0...v0.30.0)
1185
-
1186
- **Implemented enhancements:**
1187
-
1188
- - introduce dependency resolution \(experimental\) [\#891](https://github.com/chef/inspec/pull/891) ([arlimus](https://github.com/arlimus))
1189
- - Improve windows support of omnibus installer [\#890](https://github.com/chef/inspec/pull/890) ([ksubrama](https://github.com/ksubrama))
1190
- - Add omnibus for inspec [\#658](https://github.com/chef/inspec/pull/658) ([chris-rock](https://github.com/chris-rock))
1191
-
1192
- **Fixed bugs:**
1193
-
1194
- - RHEL postgres data dir is not /var/lib/postgres as coded [\#494](https://github.com/chef/inspec/issues/494)
1195
- - Add readline ignore markers to color escape codes in the shell [\#900](https://github.com/chef/inspec/pull/900) ([stevendanna](https://github.com/stevendanna))
1196
-
1197
- **Closed issues:**
1198
-
1199
- - `inspec exec` help option does not provide any context sensitive help [\#906](https://github.com/chef/inspec/issues/906)
1200
- - Add windows MSI packaging support to omnibus [\#889](https://github.com/chef/inspec/issues/889)
1201
- - tab-completion support in the inspec command line and in the inspec shell :\) [\#607](https://github.com/chef/inspec/issues/607)
1202
-
1203
- **Merged pull requests:**
1204
-
1205
- - auto-generate inspec cli docs [\#911](https://github.com/chef/inspec/pull/911) ([arlimus](https://github.com/arlimus))
1206
- - move test suites to allowed failures until travis is fixed [\#904](https://github.com/chef/inspec/pull/904) ([chris-rock](https://github.com/chris-rock))
1207
- - travis experiment: lower docker concurrency [\#902](https://github.com/chef/inspec/pull/902) ([stevendanna](https://github.com/stevendanna))
1208
- - Improve detection of postgresql conf dir and data dir [\#901](https://github.com/chef/inspec/pull/901) ([stevendanna](https://github.com/stevendanna))
1209
- - Add `inspec env` command to configure shell tab-completion [\#896](https://github.com/chef/inspec/pull/896) ([stevendanna](https://github.com/stevendanna))
1210
- - Support regular expressions for Windows registry key [\#892](https://github.com/chef/inspec/pull/892) ([chris-rock](https://github.com/chris-rock))
1211
- - add integration test for windows file and directory [\#880](https://github.com/chef/inspec/pull/880) ([chris-rock](https://github.com/chris-rock))
1212
-
1213
- ## [v0.29.0](https://github.com/chef/inspec/tree/v0.29.0) (2016-08-08)
1214
- [Full Changelog](https://github.com/chef/inspec/compare/v0.28.1...v0.29.0)
1215
-
1216
- **Implemented enhancements:**
1217
-
1218
- - port\(\) could convert string parameter to integer [\#867](https://github.com/chef/inspec/issues/867)
1219
- - add params and content method to parse\_config [\#876](https://github.com/chef/inspec/pull/876) ([chris-rock](https://github.com/chris-rock))
1220
- - Activate centos, debian and oracle linux in our travis tests [\#869](https://github.com/chef/inspec/pull/869) ([chris-rock](https://github.com/chris-rock))
1221
-
1222
- **Fixed bugs:**
1223
-
1224
- - 1.10.2 missing a space in failed test output [\#872](https://github.com/chef/inspec/issues/872)
1225
- - inspec fails to determine file\_version for a file on a windows 2012R2 [\#858](https://github.com/chef/inspec/issues/858)
1226
- - os\[:family\] returns "centos" rather than "redhat" on my Centos 7.2 box [\#847](https://github.com/chef/inspec/issues/847)
1227
- - Inspec exec output when multiple matchers are used [\#812](https://github.com/chef/inspec/issues/812)
1228
- - Inspec Detect Issues [\#772](https://github.com/chef/inspec/issues/772)
1229
- - systemd is-enabled check does not handle backcompat with sysv-init scripts \(e.g. ntp on Ubuntu 16.04\) [\#749](https://github.com/chef/inspec/issues/749)
1230
- - Update inspec for os\[:family\] change in Train [\#865](https://github.com/chef/inspec/pull/865) ([stevendanna](https://github.com/stevendanna))
1231
- - Use systemctl's helper command to determine enabled & active status [\#863](https://github.com/chef/inspec/pull/863) ([stevendanna](https://github.com/stevendanna))
1232
-
1233
- **Closed issues:**
1234
-
1235
- - bump train dependency [\#870](https://github.com/chef/inspec/issues/870)
1236
- - parse\_config error when searching for fs.suid\_dumpable [\#866](https://github.com/chef/inspec/issues/866)
1237
- - Improve integration tests [\#861](https://github.com/chef/inspec/issues/861)
1238
- - Adapt InSpec to work with latest train OS updates [\#855](https://github.com/chef/inspec/issues/855)
1239
-
1240
- **Merged pull requests:**
1241
-
1242
- - revert control\_summary field in output [\#887](https://github.com/chef/inspec/pull/887) ([arlimus](https://github.com/arlimus))
1243
- - Remove some platforms from travis config [\#883](https://github.com/chef/inspec/pull/883) ([stevendanna](https://github.com/stevendanna))
1244
- - Explicitly require docker transport to avoid autoload bug [\#882](https://github.com/chef/inspec/pull/882) ([stevendanna](https://github.com/stevendanna))
1245
- - Require train 0.16 [\#881](https://github.com/chef/inspec/pull/881) ([chris-rock](https://github.com/chris-rock))
1246
- - Generate test labels for multi-test controls [\#879](https://github.com/chef/inspec/pull/879) ([ksubrama](https://github.com/ksubrama))
1247
- - Allow port to be specified as a string [\#878](https://github.com/chef/inspec/pull/878) ([stevendanna](https://github.com/stevendanna))
1248
- - improve code style for parse\_config thanks @stevendanna [\#877](https://github.com/chef/inspec/pull/877) ([chris-rock](https://github.com/chris-rock))
1249
- - remote target supported OS also includes hp-ux [\#873](https://github.com/chef/inspec/pull/873) ([Anirudh-Gupta](https://github.com/Anirudh-Gupta))
1250
- - Be a bit louder when skipping an entire integration suite [\#864](https://github.com/chef/inspec/pull/864) ([stevendanna](https://github.com/stevendanna))
1251
- - Count controls in the summary output. Fix \#852 [\#860](https://github.com/chef/inspec/pull/860) ([vjeffrey](https://github.com/vjeffrey))
1252
-
1253
- ## [v0.28.1](https://github.com/chef/inspec/tree/v0.28.1) (2016-08-03)
1254
- [Full Changelog](https://github.com/chef/inspec/compare/v0.28.0...v0.28.1)
1255
-
1256
- **Fixed bugs:**
1257
-
1258
- - Read Chef attributes within the tests ? [\#813](https://github.com/chef/inspec/issues/813)
1259
- - Docs for command use eq instead of match [\#502](https://github.com/chef/inspec/issues/502)
1260
- - fix color code barriers [\#838](https://github.com/chef/inspec/pull/838) ([arlimus](https://github.com/arlimus))
1261
-
1262
- **Closed issues:**
1263
-
1264
- - Document all supported Operating Systems [\#842](https://github.com/chef/inspec/issues/842)
1265
-
1266
- **Merged pull requests:**
1267
-
1268
- - Add supported OS list to readme [\#859](https://github.com/chef/inspec/pull/859) ([vjeffrey](https://github.com/vjeffrey))
1269
- - Update README with correct directions for integration tests [\#857](https://github.com/chef/inspec/pull/857) ([stevendanna](https://github.com/stevendanna))
1270
- - Only test PRs and pushes to master [\#856](https://github.com/chef/inspec/pull/856) ([stevendanna](https://github.com/stevendanna))
1271
- - Support either /dev/kcore or /dev/core in the tests [\#850](https://github.com/chef/inspec/pull/850) ([stevendanna](https://github.com/stevendanna))
1272
- - add air gap environment post from @jeremymv2 [\#841](https://github.com/chef/inspec/pull/841) ([chris-rock](https://github.com/chris-rock))
1273
- - move base\_cli to lib/inspec [\#832](https://github.com/chef/inspec/pull/832) ([arlimus](https://github.com/arlimus))
1274
-
1275
- ## [v0.28.0](https://github.com/chef/inspec/tree/v0.28.0) (2016-07-21)
1276
- [Full Changelog](https://github.com/chef/inspec/compare/v0.27.1...v0.28.0)
1277
-
1278
- **Implemented enhancements:**
1279
-
1280
- - add port resource for windows 2008 [\#837](https://github.com/chef/inspec/pull/837) ([arlimus](https://github.com/arlimus))
1281
-
1282
- **Fixed bugs:**
1283
-
1284
- - prevent circular loading of resource library [\#831](https://github.com/chef/inspec/pull/831) ([arlimus](https://github.com/arlimus))
1285
-
1286
- **Merged pull requests:**
1287
-
1288
- - Added two InSpec Tutorial blog posts [\#836](https://github.com/chef/inspec/pull/836) ([anniehedgpeth](https://github.com/anniehedgpeth))
1289
- - add mssql resource [\#835](https://github.com/chef/inspec/pull/835) ([chrisevett](https://github.com/chrisevett))
1290
-
1291
- ## [v0.27.1](https://github.com/chef/inspec/tree/v0.27.1) (2016-07-15)
1292
- [Full Changelog](https://github.com/chef/inspec/compare/v0.27.0...v0.27.1)
1293
-
1294
- **Fixed bugs:**
1295
-
1296
- - Inconsistent json format caused by inconsistent hash keys [\#827](https://github.com/chef/inspec/issues/827)
1297
-
1298
- **Closed issues:**
1299
-
1300
- - wrong path detection for postgres conf\_dir and conf\_path [\#823](https://github.com/chef/inspec/issues/823)
1301
-
1302
- **Merged pull requests:**
1303
-
1304
- - FIX: file\(hba\_config\_file\) test in documentation [\#830](https://github.com/chef/inspec/pull/830) ([atomic111](https://github.com/atomic111))
1305
- - Fix runner.rb key inconsistency [\#828](https://github.com/chef/inspec/pull/828) ([alexpop](https://github.com/alexpop))
1306
- - FIX \#823 wrong postgres path detection for conf\_dir and conf\_path [\#824](https://github.com/chef/inspec/pull/824) ([atomic111](https://github.com/atomic111))
1307
-
1308
- ## [v0.27.0](https://github.com/chef/inspec/tree/v0.27.0) (2016-07-11)
1309
- [Full Changelog](https://github.com/chef/inspec/compare/v0.26.0...v0.27.0)
1310
-
1311
- **Implemented enhancements:**
1312
-
1313
- - inspec report source\_location data type [\#807](https://github.com/chef/inspec/issues/807)
1314
- - Additional fields in inspec reports [\#806](https://github.com/chef/inspec/issues/806)
1315
- - api: report source location with field identifiers [\#808](https://github.com/chef/inspec/pull/808) ([arlimus](https://github.com/arlimus))
1316
- - add boolean support for cmp matcher [\#801](https://github.com/chef/inspec/pull/801) ([chris-rock](https://github.com/chris-rock))
1317
- - improve wmi resource [\#800](https://github.com/chef/inspec/pull/800) ([chris-rock](https://github.com/chris-rock))
1318
- - Update documentation for bundles [\#716](https://github.com/chef/inspec/pull/716) ([chris-rock](https://github.com/chris-rock))
1319
-
1320
- **Fixed bugs:**
1321
-
1322
- - `os` resource not accessible within a `describe` [\#451](https://github.com/chef/inspec/issues/451)
1323
- - add suid sgid and sticky support for file resource [\#819](https://github.com/chef/inspec/pull/819) ([arlimus](https://github.com/arlimus))
1324
- - pin gem version for ffi due to appveyor failures [\#816](https://github.com/chef/inspec/pull/816) ([arlimus](https://github.com/arlimus))
1325
- - check service running by ActiveState [\#814](https://github.com/chef/inspec/pull/814) ([arlimus](https://github.com/arlimus))
1326
-
1327
- **Merged pull requests:**
1328
-
1329
- - small fix for postgres\_session documentation \(Test for risky database entries example\) [\#815](https://github.com/chef/inspec/pull/815) ([atomic111](https://github.com/atomic111))
1330
- - Add array documentation to yaml / json resource [\#803](https://github.com/chef/inspec/pull/803) ([brentm5](https://github.com/brentm5))
1331
- - Updating ctl docs to include the init command [\#802](https://github.com/chef/inspec/pull/802) ([ChefRycar](https://github.com/ChefRycar))
1332
- - add documentation for bash resource [\#799](https://github.com/chef/inspec/pull/799) ([chris-rock](https://github.com/chris-rock))
1333
- - align inspec's check, detect, and exec cli formatters [\#797](https://github.com/chef/inspec/pull/797) ([arlimus](https://github.com/arlimus))
1334
-
1335
- ## [v0.26.0](https://github.com/chef/inspec/tree/v0.26.0) (2016-06-16)
1336
- [Full Changelog](https://github.com/chef/inspec/compare/v0.25.0...v0.26.0)
1337
-
1338
- **Implemented enhancements:**
1339
-
1340
- - use train instead of r-train [\#795](https://github.com/chef/inspec/pull/795) ([chris-rock](https://github.com/chris-rock))
1341
-
1342
- **Fixed bugs:**
1343
-
1344
- - Transport error while trying to ssh to mac osx [\#788](https://github.com/chef/inspec/issues/788)
1345
-
1346
- **Closed issues:**
1347
-
1348
- - Can't upload inherited profile [\#789](https://github.com/chef/inspec/issues/789)
1349
-
1350
- **Merged pull requests:**
1351
-
1352
- - provide target info in cli output [\#796](https://github.com/chef/inspec/pull/796) ([arlimus](https://github.com/arlimus))
1353
- - multi-profile reporting in cli formatter [\#794](https://github.com/chef/inspec/pull/794) ([arlimus](https://github.com/arlimus))
1354
- - use utf-8 characters for default cli formatter [\#792](https://github.com/chef/inspec/pull/792) ([arlimus](https://github.com/arlimus))
1355
- - integer?\("0300"\) should not be true [\#791](https://github.com/chef/inspec/pull/791) ([srenatus](https://github.com/srenatus))
1356
- - introduce cli report formatter [\#790](https://github.com/chef/inspec/pull/790) ([arlimus](https://github.com/arlimus))
1357
-
1358
- ## [v0.25.0](https://github.com/chef/inspec/tree/v0.25.0) (2016-06-14)
1359
- [Full Changelog](https://github.com/chef/inspec/compare/v0.24.0...v0.25.0)
1360
-
1361
- **Closed issues:**
1362
-
1363
- - Why mode matcher doesn't work on a file resource [\#781](https://github.com/chef/inspec/issues/781)
1364
-
1365
- **Merged pull requests:**
1366
-
1367
- - Update readme with Annie's Tutorial Day 5 [\#785](https://github.com/chef/inspec/pull/785) ([anniehedgpeth](https://github.com/anniehedgpeth))
1368
- - Feature: Implementation of RFC Attributes [\#723](https://github.com/chef/inspec/pull/723) ([chris-rock](https://github.com/chris-rock))
1369
-
1370
- ## [v0.24.0](https://github.com/chef/inspec/tree/v0.24.0) (2016-06-03)
1371
- [Full Changelog](https://github.com/chef/inspec/compare/v0.23...v0.24.0)
1372
-
1373
- **Implemented enhancements:**
1374
-
1375
- - support intra-libraries file referencing + loading [\#780](https://github.com/chef/inspec/pull/780) ([arlimus](https://github.com/arlimus))
1376
-
1377
- **Merged pull requests:**
1378
-
1379
- - Update documentation for matching output of commands [\#777](https://github.com/chef/inspec/pull/777) ([tas50](https://github.com/tas50))
1380
-
1381
- ## [v0.23](https://github.com/chef/inspec/tree/v0.23) (2016-05-31)
1382
- [Full Changelog](https://github.com/chef/inspec/compare/v0.22.1...v0.23)
1383
-
1384
- **Implemented enhancements:**
1385
-
1386
- - connect `port` and filter table [\#776](https://github.com/chef/inspec/pull/776) ([arlimus](https://github.com/arlimus))
1387
- - add resource to filter table blocks [\#775](https://github.com/chef/inspec/pull/775) ([arlimus](https://github.com/arlimus))
1388
- - add helper methods for os resource [\#774](https://github.com/chef/inspec/pull/774) ([chris-rock](https://github.com/chris-rock))
1389
-
1390
- **Closed issues:**
1391
-
1392
- - inspec hangs on command\('ausearch -k docker'\).stdout [\#768](https://github.com/chef/inspec/issues/768)
1393
- - registry\_key test failing on Windows 2008 R2 [\#767](https://github.com/chef/inspec/issues/767)
1394
- - InSpec login successful with wrong username [\#766](https://github.com/chef/inspec/issues/766)
1395
-
1396
- **Merged pull requests:**
1397
-
1398
- - update readme with blogs [\#769](https://github.com/chef/inspec/pull/769) ([chris-rock](https://github.com/chris-rock))
1399
-
1400
- ## [v0.22.1](https://github.com/chef/inspec/tree/v0.22.1) (2016-05-18)
1401
- [Full Changelog](https://github.com/chef/inspec/compare/v0.22.0...v0.22.1)
1402
-
1403
- **Fixed bugs:**
1404
-
1405
- - fix reporter/formatter disagreements [\#764](https://github.com/chef/inspec/pull/764) ([arlimus](https://github.com/arlimus))
1406
-
1407
- **Closed issues:**
1408
-
1409
- - port resource fails in docker containers because netstat is missing, but gives poor error output as to why. [\#762](https://github.com/chef/inspec/issues/762)
1410
- - Add support for alternate sudo command [\#755](https://github.com/chef/inspec/issues/755)
1411
- - Chef Compliance Server UI - Need capability to remove an uploaded profile [\#712](https://github.com/chef/inspec/issues/712)
1412
-
1413
- ## [v0.22.0](https://github.com/chef/inspec/tree/v0.22.0) (2016-05-16)
1414
- [Full Changelog](https://github.com/chef/inspec/compare/v0.21.6...v0.22.0)
1415
-
1416
- **Implemented enhancements:**
1417
-
1418
- - update train dependency to 0.12.0 [\#757](https://github.com/chef/inspec/pull/757) ([chris-rock](https://github.com/chris-rock))
1419
- - run integration tests in docker [\#732](https://github.com/chef/inspec/pull/732) ([chris-rock](https://github.com/chris-rock))
1420
-
1421
- **Merged pull requests:**
1422
-
1423
- - fixed 'it' statements under file\_test [\#758](https://github.com/chef/inspec/pull/758) ([Anirudh-Gupta](https://github.com/Anirudh-Gupta))
1424
- - modification in command resource example [\#756](https://github.com/chef/inspec/pull/756) ([Anirudh-Gupta](https://github.com/Anirudh-Gupta))
1425
- - add sudo\_command option [\#754](https://github.com/chef/inspec/pull/754) ([jeremymv2](https://github.com/jeremymv2))
1426
- - remove string quotes around regexp \(docfix\) [\#750](https://github.com/chef/inspec/pull/750) ([lamont-granquist](https://github.com/lamont-granquist))
1427
- - rake release\_docker + smaller image builds [\#745](https://github.com/chef/inspec/pull/745) ([arlimus](https://github.com/arlimus))
1428
-
1429
- ## [v0.21.6](https://github.com/chef/inspec/tree/v0.21.6) (2016-05-13)
1430
- [Full Changelog](https://github.com/chef/inspec/compare/v0.21.5...v0.21.6)
1431
-
1432
- **Fixed bugs:**
1433
-
1434
- - catch corner-case with symbols on test-objects [\#748](https://github.com/chef/inspec/pull/748) ([arlimus](https://github.com/arlimus))
1435
- - Prevent nil.include? [\#747](https://github.com/chef/inspec/pull/747) ([alexpop](https://github.com/alexpop))
1436
-
1437
- ## [v0.21.5](https://github.com/chef/inspec/tree/v0.21.5) (2016-05-13)
1438
- [Full Changelog](https://github.com/chef/inspec/compare/v0.21.4...v0.21.5)
1439
-
1440
- **Fixed bugs:**
1441
-
1442
- - fix construction of ruby objects on string and array handlers [\#746](https://github.com/chef/inspec/pull/746) ([arlimus](https://github.com/arlimus))
1443
-
1444
- ## [v0.21.4](https://github.com/chef/inspec/tree/v0.21.4) (2016-05-13)
1445
- [Full Changelog](https://github.com/chef/inspec/compare/v0.21.3...v0.21.4)
1446
-
1447
- **Implemented enhancements:**
1448
-
1449
- - use struct for processes list [\#744](https://github.com/chef/inspec/pull/744) ([arlimus](https://github.com/arlimus))
1450
-
1451
- ## [v0.21.3](https://github.com/chef/inspec/tree/v0.21.3) (2016-05-11)
1452
- [Full Changelog](https://github.com/chef/inspec/compare/v0.21.2...v0.21.3)
1453
-
1454
- **Fixed bugs:**
1455
-
1456
- - Return empty array instead of nil for port methods [\#739](https://github.com/chef/inspec/pull/739) ([alexpop](https://github.com/alexpop))
1457
-
1458
- **Merged pull requests:**
1459
-
1460
- - deprecate array matcher [\#737](https://github.com/chef/inspec/pull/737) ([chris-rock](https://github.com/chris-rock))
1461
- - Escape os\_env command on Windows to handle env variables containing parentheses. [\#735](https://github.com/chef/inspec/pull/735) ([tpcwang](https://github.com/tpcwang))
1462
-
1463
- ## [v0.21.2](https://github.com/chef/inspec/tree/v0.21.2) (2016-05-11)
1464
- [Full Changelog](https://github.com/chef/inspec/compare/v0.21.1...v0.21.2)
1465
-
1466
- **Implemented enhancements:**
1467
-
1468
- - Read SELinux labels for processes [\#726](https://github.com/chef/inspec/issues/726)
1469
- - Fix contain\_match, add none\_match [\#736](https://github.com/chef/inspec/pull/736) ([alexpop](https://github.com/alexpop))
1470
-
1471
- **Fixed bugs:**
1472
-
1473
- - Fix contain\\_match, add none\\_match [\#736](https://github.com/chef/inspec/pull/736) ([alexpop](https://github.com/alexpop))
1474
-
1475
- ## [v0.21.1](https://github.com/chef/inspec/tree/v0.21.1) (2016-05-10)
1476
- [Full Changelog](https://github.com/chef/inspec/compare/v0.21.0...v0.21.1)
1477
-
1478
- **Fixed bugs:**
1479
-
1480
- - fix: remove non-existent class [\#729](https://github.com/chef/inspec/pull/729) ([chris-rock](https://github.com/chris-rock))
1481
-
1482
- **Merged pull requests:**
1483
-
1484
- - Expose label for processes only on linux [\#733](https://github.com/chef/inspec/pull/733) ([vjeffrey](https://github.com/vjeffrey))
1485
- - Add all\_match to matchers [\#730](https://github.com/chef/inspec/pull/730) ([vjeffrey](https://github.com/vjeffrey))
1486
-
1487
- ## [v0.21.0](https://github.com/chef/inspec/tree/v0.21.0) (2016-05-10)
1488
- [Full Changelog](https://github.com/chef/inspec/compare/v0.20.1...v0.21.0)
1489
-
1490
- **Implemented enhancements:**
1491
-
1492
- - Support nested describe.one blocks [\#711](https://github.com/chef/inspec/issues/711)
1493
- - inspec exec format json backtrace [\#614](https://github.com/chef/inspec/issues/614)
1494
- - Improve error output for compliance plugin [\#544](https://github.com/chef/inspec/issues/544)
1495
- - Cryptic error output if authentication with Chef Compliance fails [\#489](https://github.com/chef/inspec/issues/489)
1496
- - How to access the impact of a test failure? [\#377](https://github.com/chef/inspec/issues/377)
1497
- - Optimize InSpec detect [\#300](https://github.com/chef/inspec/issues/300)
1498
- - document output and/or expected results [\#210](https://github.com/chef/inspec/issues/210)
1499
- - Remove redundant space when missing expectation [\#724](https://github.com/chef/inspec/pull/724) ([alexpop](https://github.com/alexpop))
1500
- - Provide service params [\#721](https://github.com/chef/inspec/pull/721) ([alexpop](https://github.com/alexpop))
1501
- - api: make processes return integers for pid/vsz/rss [\#717](https://github.com/chef/inspec/pull/717) ([arlimus](https://github.com/arlimus))
1502
- - Expose systemd service properties via .info [\#715](https://github.com/chef/inspec/pull/715) ([alexpop](https://github.com/alexpop))
1503
- - Use only strings in resource examples, docs and tests [\#708](https://github.com/chef/inspec/pull/708) ([alexpop](https://github.com/alexpop))
1504
- - use filtertable with passwd resource [\#699](https://github.com/chef/inspec/pull/699) ([arlimus](https://github.com/arlimus))
1505
- - show error if user is not logged in to compliance server [\#696](https://github.com/chef/inspec/pull/696) ([chris-rock](https://github.com/chris-rock))
1506
- - JSON formatter redesign [\#671](https://github.com/chef/inspec/pull/671) ([arlimus](https://github.com/arlimus))
1507
-
1508
- **Fixed bugs:**
1509
-
1510
- - bugfix: handle train errors in inspec execution [\#705](https://github.com/chef/inspec/pull/705) ([arlimus](https://github.com/arlimus))
1511
-
1512
- **Closed issues:**
1513
-
1514
- - How do I inherit a profile from another profile? [\#691](https://github.com/chef/inspec/issues/691)
1515
- - How do I download a profile from a compliance server? [\#690](https://github.com/chef/inspec/issues/690)
1516
- - inspec compliance login fails [\#689](https://github.com/chef/inspec/issues/689)
1517
-
1518
- **Merged pull requests:**
1519
-
1520
- - inspec detect learns human-readable output [\#720](https://github.com/chef/inspec/pull/720) ([chris-rock](https://github.com/chris-rock))
1521
- - Add documentation on how to use ruby [\#718](https://github.com/chef/inspec/pull/718) ([alexpop](https://github.com/alexpop))
1522
- - export \#tests\(\) from OrTest object [\#714](https://github.com/chef/inspec/pull/714) ([arlimus](https://github.com/arlimus))
1523
- - use strings instead of symbols [\#707](https://github.com/chef/inspec/pull/707) ([vjeffrey](https://github.com/vjeffrey))
1524
- - hpux support for basic port properties [\#706](https://github.com/chef/inspec/pull/706) ([Anirudh-Gupta](https://github.com/Anirudh-Gupta))
1525
-
1526
- ## [v0.20.1](https://github.com/chef/inspec/tree/v0.20.1) (2016-04-30)
1527
- [Full Changelog](https://github.com/chef/inspec/compare/v0.20.0...v0.20.1)
1528
-
1529
- **Implemented enhancements:**
1530
-
1531
- - Add basename parameter and add tests [\#701](https://github.com/chef/inspec/pull/701) ([alexpop](https://github.com/alexpop))
1532
-
1533
- **Fixed bugs:**
1534
-
1535
- - fix appveyor caching [\#700](https://github.com/chef/inspec/pull/700) ([arlimus](https://github.com/arlimus))
1536
-
1537
- **Merged pull requests:**
1538
-
1539
- - 0.20.1 [\#702](https://github.com/chef/inspec/pull/702) ([alexpop](https://github.com/alexpop))
1540
-
1541
- ## [v0.20.0](https://github.com/chef/inspec/tree/v0.20.0) (2016-04-29)
1542
- [Full Changelog](https://github.com/chef/inspec/compare/v0.19.3...v0.20.0)
1543
-
1544
- **Implemented enhancements:**
1545
-
1546
- - update to train's new file interface: symlink + uid + gid [\#694](https://github.com/chef/inspec/pull/694) ([arlimus](https://github.com/arlimus))
1547
- - validate target backend [\#688](https://github.com/chef/inspec/pull/688) ([arlimus](https://github.com/arlimus))
1548
- - `where { field op value }` for filter table [\#684](https://github.com/chef/inspec/pull/684) ([arlimus](https://github.com/arlimus))
1549
- - add `shell -c` for executing calls against the inspec api [\#683](https://github.com/chef/inspec/pull/683) ([arlimus](https://github.com/arlimus))
1550
- - Hpux [\#682](https://github.com/chef/inspec/pull/682) ([Anirudh-Gupta](https://github.com/Anirudh-Gupta))
1551
- - Add table-style filter utility [\#681](https://github.com/chef/inspec/pull/681) ([arlimus](https://github.com/arlimus))
1552
- - added hpux user and package resource support [\#678](https://github.com/chef/inspec/pull/678) ([Anirudh-Gupta](https://github.com/Anirudh-Gupta))
1553
-
1554
- **Fixed bugs:**
1555
-
1556
- - Specifying an invalid target protocol should give a failure message [\#686](https://github.com/chef/inspec/issues/686)
1557
- - update compliance plugin [\#695](https://github.com/chef/inspec/pull/695) ([chris-rock](https://github.com/chris-rock))
1558
- - bugfix: restore pax\_global\_header fetcher filter [\#669](https://github.com/chef/inspec/pull/669) ([arlimus](https://github.com/arlimus))
1559
-
1560
- **Closed issues:**
1561
-
1562
- - How do I run an inspec profile in chef audit mode? [\#692](https://github.com/chef/inspec/issues/692)
1563
-
1564
- **Merged pull requests:**
1565
-
1566
- - 0.20.0 [\#698](https://github.com/chef/inspec/pull/698) ([arlimus](https://github.com/arlimus))
1567
- - update appveyor ruby to 2.2 + fix caching [\#697](https://github.com/chef/inspec/pull/697) ([arlimus](https://github.com/arlimus))
1568
-
1569
- ## [v0.19.3](https://github.com/chef/inspec/tree/v0.19.3) (2016-04-22)
1570
- [Full Changelog](https://github.com/chef/inspec/compare/v0.19.2...v0.19.3)
1571
-
1572
- **Fixed bugs:**
1573
-
1574
- - fix legacy supports call [\#679](https://github.com/chef/inspec/pull/679) ([arlimus](https://github.com/arlimus))
1575
-
1576
- **Merged pull requests:**
1577
-
1578
- - Releasing inspec 0.19.3 [\#680](https://github.com/chef/inspec/pull/680) ([alexpop](https://github.com/alexpop))
1579
- - v0.19.2 [\#675](https://github.com/chef/inspec/pull/675) ([arlimus](https://github.com/arlimus))
1580
-
1581
- ## [v0.19.2](https://github.com/chef/inspec/tree/v0.19.2) (2016-04-21)
1582
- [Full Changelog](https://github.com/chef/inspec/compare/v0.19.1...v0.19.2)
1583
-
1584
- **Implemented enhancements:**
1585
-
1586
- - Fix indenting for translated loops and ors [\#673](https://github.com/chef/inspec/pull/673) ([alexpop](https://github.com/alexpop))
1587
- - add regexp to cmp matcher [\#667](https://github.com/chef/inspec/pull/667) ([arlimus](https://github.com/arlimus))
1588
- - remodel bash and shell wrappers [\#662](https://github.com/chef/inspec/pull/662) ([arlimus](https://github.com/arlimus))
1589
-
1590
- **Fixed bugs:**
1591
-
1592
- - bugfix: fix formatting of cmp expectations [\#668](https://github.com/chef/inspec/pull/668) ([arlimus](https://github.com/arlimus))
1593
-
1594
- **Closed issues:**
1595
-
1596
- - Octal Permissions Match [\#666](https://github.com/chef/inspec/issues/666)
1597
- - file permissions for symlinked files are not checked correctly [\#665](https://github.com/chef/inspec/issues/665)
1598
-
1599
- **Merged pull requests:**
1600
-
1601
- - release via travis + test via rubygems [\#663](https://github.com/chef/inspec/pull/663) ([arlimus](https://github.com/arlimus))
1602
-
1603
- ## [v0.19.1](https://github.com/chef/inspec/tree/v0.19.1) (2016-04-18)
1604
- [Full Changelog](https://github.com/chef/inspec/compare/v0.19.0...v0.19.1)
1605
-
1606
- **Implemented enhancements:**
1607
-
1608
- - configure command execution shells to sh/bash/zsh [\#659](https://github.com/chef/inspec/pull/659) ([arlimus](https://github.com/arlimus))
1609
- - be descriptive on shadow.entries [\#657](https://github.com/chef/inspec/pull/657) ([arlimus](https://github.com/arlimus))
1610
-
1611
- **Fixed bugs:**
1612
-
1613
- - bugfix: print cmp expectations [\#656](https://github.com/chef/inspec/pull/656) ([arlimus](https://github.com/arlimus))
1614
-
1615
- **Closed issues:**
1616
-
1617
- - gem install failure on RHEL 7.2 Ruby 2.0 [\#653](https://github.com/chef/inspec/issues/653)
1618
-
1619
- **Merged pull requests:**
1620
-
1621
- - version bump: 0.19.1 [\#661](https://github.com/chef/inspec/pull/661) ([srenatus](https://github.com/srenatus))
1622
- - add requirements for gem installation to readme [\#655](https://github.com/chef/inspec/pull/655) ([arlimus](https://github.com/arlimus))
1623
-
1624
- ## [v0.19.0](https://github.com/chef/inspec/tree/v0.19.0) (2016-04-17)
1625
- [Full Changelog](https://github.com/chef/inspec/compare/v0.18.0...v0.19.0)
1626
-
1627
- **Implemented enhancements:**
1628
-
1629
- - Add required inspec version to inspec.yml [\#644](https://github.com/chef/inspec/issues/644)
1630
- - Resource grub conf [\#652](https://github.com/chef/inspec/pull/652) ([arlimus](https://github.com/arlimus))
1631
- - fail on unsupported os/platform [\#651](https://github.com/chef/inspec/pull/651) ([arlimus](https://github.com/arlimus))
1632
- - specify required inspec version in inspec.yml [\#648](https://github.com/chef/inspec/pull/648) ([arlimus](https://github.com/arlimus))
1633
- - feature: `cmp \< / \> / \<= / \>= / == / != sth` matcher [\#643](https://github.com/chef/inspec/pull/643) ([arlimus](https://github.com/arlimus))
1634
- - Add 'static' value as enabled to systemd service enabled check [\#637](https://github.com/chef/inspec/pull/637) ([jmccann](https://github.com/jmccann))
1635
- - add dockerized inspec [\#635](https://github.com/chef/inspec/pull/635) ([arlimus](https://github.com/arlimus))
1636
- - inspec-compliance + Compliance 1.0 [\#576](https://github.com/chef/inspec/pull/576) ([srenatus](https://github.com/srenatus))
1637
-
1638
- **Fixed bugs:**
1639
-
1640
- - `add\_test': undefined method error on Ubuntu 15.10 with Ruby 2.1 [\#642](https://github.com/chef/inspec/issues/642)
1641
- - Install failed on Ubuntu with Ruby 2.1 [\#641](https://github.com/chef/inspec/issues/641)
1642
- - Inspec json resource . example not working [\#631](https://github.com/chef/inspec/issues/631)
1643
- - Checking on services on SLES 11 fails [\#627](https://github.com/chef/inspec/issues/627)
1644
- - Inspec check fails on `examples/profile` [\#485](https://github.com/chef/inspec/issues/485)
1645
- - bugfix: rspec world handling on rspec 3.5 [\#650](https://github.com/chef/inspec/pull/650) ([arlimus](https://github.com/arlimus))
1646
- - Prevent its\(:to\_i\) from generated tests [\#639](https://github.com/chef/inspec/pull/639) ([alexpop](https://github.com/alexpop))
1647
- - bugfix: non-profile execution with json formatter [\#632](https://github.com/chef/inspec/pull/632) ([arlimus](https://github.com/arlimus))
1648
-
1649
- **Merged pull requests:**
1650
-
1651
- - add usage instructions for inspec container [\#649](https://github.com/chef/inspec/pull/649) ([chris-rock](https://github.com/chris-rock))
1652
- - update documentation for json resource [\#647](https://github.com/chef/inspec/pull/647) ([chris-rock](https://github.com/chris-rock))
1653
- - Add support for suse 11 to service resource [\#638](https://github.com/chef/inspec/pull/638) ([spuranam](https://github.com/spuranam))
1654
- - Add -i to ssh example, link to cli options [\#636](https://github.com/chef/inspec/pull/636) ([vjeffrey](https://github.com/vjeffrey))
1655
-
1656
- ## [v0.18.0](https://github.com/chef/inspec/tree/v0.18.0) (2016-04-09)
1657
- [Full Changelog](https://github.com/chef/inspec/compare/v0.17.1...v0.18.0)
1658
-
1659
- **Implemented enhancements:**
1660
-
1661
- - supports keyword marks tests as skipped instead of removing them [\#620](https://github.com/chef/inspec/pull/620) ([arlimus](https://github.com/arlimus))
1662
- - Support only\_if in controls [\#619](https://github.com/chef/inspec/pull/619) ([arlimus](https://github.com/arlimus))
1663
- - don't remove controls with only\_if [\#618](https://github.com/chef/inspec/pull/618) ([arlimus](https://github.com/arlimus))
1664
-
1665
- **Merged pull requests:**
1666
-
1667
- - 0.18.0 [\#629](https://github.com/chef/inspec/pull/629) ([arlimus](https://github.com/arlimus))
1668
- - Encourage sharing of profiles [\#625](https://github.com/chef/inspec/pull/625) ([nathenharvey](https://github.com/nathenharvey))
1669
- - add travis and appveyor badges [\#622](https://github.com/chef/inspec/pull/622) ([chris-rock](https://github.com/chris-rock))
1670
- - remove unused profile.tar.gz [\#621](https://github.com/chef/inspec/pull/621) ([chris-rock](https://github.com/chris-rock))
1671
- - Extended gordon\_config with more examples [\#610](https://github.com/chef/inspec/pull/610) ([alexpop](https://github.com/alexpop))
1672
- - Create ISSUE\_TEMPLATE [\#581](https://github.com/chef/inspec/pull/581) ([srenatus](https://github.com/srenatus))
1673
-
1674
- ## [v0.17.1](https://github.com/chef/inspec/tree/v0.17.1) (2016-03-31)
1675
- [Full Changelog](https://github.com/chef/inspec/compare/v0.17.0...v0.17.1)
1676
-
1677
- **Merged pull requests:**
1678
-
1679
- - add inspec objects \(not exposed by default\) [\#608](https://github.com/chef/inspec/pull/608) ([arlimus](https://github.com/arlimus))
1680
-
1681
- ## [v0.17.0](https://github.com/chef/inspec/tree/v0.17.0) (2016-03-31)
1682
- [Full Changelog](https://github.com/chef/inspec/compare/v0.16.4...v0.17.0)
1683
-
1684
- **Implemented enhancements:**
1685
-
1686
- - add advanced passwd filters \(experimental\) [\#602](https://github.com/chef/inspec/pull/602) ([arlimus](https://github.com/arlimus))
1687
-
1688
- **Closed issues:**
1689
-
1690
- - readable.by not working on RHEL7 [\#597](https://github.com/chef/inspec/issues/597)
1691
- - sshd\_config resource no method error [\#595](https://github.com/chef/inspec/issues/595)
1692
- - Update the readme.md file to include new cli output [\#590](https://github.com/chef/inspec/issues/590)
1693
-
1694
- **Merged pull requests:**
1695
-
1696
- - 0.17.0 [\#604](https://github.com/chef/inspec/pull/604) ([arlimus](https://github.com/arlimus))
1697
- - add file uid and gid accessors [\#603](https://github.com/chef/inspec/pull/603) ([arlimus](https://github.com/arlimus))
1698
- - fix errors introduced in \#593 [\#594](https://github.com/chef/inspec/pull/594) ([chris-rock](https://github.com/chris-rock))
1699
- - Updated documentation and examples to include tags and references [\#593](https://github.com/chef/inspec/pull/593) ([aaronlippold](https://github.com/aaronlippold))
1700
- - Ease removal of whitespace for Powershell Write-Output and VBScript Echo [\#592](https://github.com/chef/inspec/pull/592) ([chris-rock](https://github.com/chris-rock))
1701
- - Amazon linux support for service resource [\#580](https://github.com/chef/inspec/pull/580) ([jbussdieker](https://github.com/jbussdieker))
1702
- - Fixed API calls for inspec compliance [\#537](https://github.com/chef/inspec/pull/537) ([JTabel](https://github.com/JTabel))
1703
-
1704
- ## [v0.16.4](https://github.com/chef/inspec/tree/v0.16.4) (2016-03-25)
1705
- [Full Changelog](https://github.com/chef/inspec/compare/v0.16.3...v0.16.4)
1706
-
1707
- **Implemented enhancements:**
1708
-
1709
- - support --controls for inspec json [\#589](https://github.com/chef/inspec/pull/589) ([arlimus](https://github.com/arlimus))
1710
- - dont fail with stacktrace on connection errors [\#588](https://github.com/chef/inspec/pull/588) ([arlimus](https://github.com/arlimus))
1711
-
1712
- **Fixed bugs:**
1713
-
1714
- - Escape whitespace for compliance upload [\#486](https://github.com/chef/inspec/issues/486)
1715
- - inspec-compliance: url\_encode profile names [\#574](https://github.com/chef/inspec/pull/574) ([srenatus](https://github.com/srenatus))
1716
-
1717
- **Closed issues:**
1718
-
1719
- - --controls flag should be supported in all inspec commands [\#568](https://github.com/chef/inspec/issues/568)
1720
-
1721
- **Merged pull requests:**
1722
-
1723
- - 0.16.4 [\#591](https://github.com/chef/inspec/pull/591) ([arlimus](https://github.com/arlimus))
1724
- - Improvements to gordon example and docs [\#583](https://github.com/chef/inspec/pull/583) ([alexpop](https://github.com/alexpop))
1725
- - bugfix: fix rare inspec shell missing all resources [\#582](https://github.com/chef/inspec/pull/582) ([alexpop](https://github.com/alexpop))
1726
- - document tags and refs [\#561](https://github.com/chef/inspec/pull/561) ([chris-rock](https://github.com/chris-rock))
1727
-
1728
- ## [v0.16.3](https://github.com/chef/inspec/tree/v0.16.3) (2016-03-23)
1729
- [Full Changelog](https://github.com/chef/inspec/compare/v0.16.2...v0.16.3)
1730
-
1731
- **Fixed bugs:**
1732
-
1733
- - 0.16.3 [\#575](https://github.com/chef/inspec/pull/575) ([srenatus](https://github.com/srenatus))
1734
- - inspec-compliance: fix upload of profiles [\#573](https://github.com/chef/inspec/pull/573) ([srenatus](https://github.com/srenatus))
1735
-
1736
- **Closed issues:**
1737
-
1738
- - Issues with 'inspec compliance upload' [\#572](https://github.com/chef/inspec/issues/572)
1739
-
1740
- ## [v0.16.2](https://github.com/chef/inspec/tree/v0.16.2) (2016-03-22)
1741
- [Full Changelog](https://github.com/chef/inspec/compare/v0.16.1...v0.16.2)
1742
-
1743
- **Fixed bugs:**
1744
-
1745
- - bugfix: dont crash on read\_file contents in parse\_config [\#570](https://github.com/chef/inspec/pull/570) ([arlimus](https://github.com/arlimus))
1746
-
1747
- **Closed issues:**
1748
-
1749
- - inspec exec error on new install [\#569](https://github.com/chef/inspec/issues/569)
1750
-
1751
- **Merged pull requests:**
1752
-
1753
- - 0.16.2 [\#571](https://github.com/chef/inspec/pull/571) ([arlimus](https://github.com/arlimus))
1754
-
1755
- ## [v0.16.1](https://github.com/chef/inspec/tree/v0.16.1) (2016-03-22)
1756
- [Full Changelog](https://github.com/chef/inspec/compare/v0.16.0...v0.16.1)
1757
-
1758
- **Implemented enhancements:**
1759
-
1760
- - undefined method `addresses' for Port [\#555](https://github.com/chef/inspec/issues/555)
1761
- - add `wmi` resource [\#560](https://github.com/chef/inspec/pull/560) ([chris-rock](https://github.com/chris-rock))
1762
- - Add `vbscript` resource [\#559](https://github.com/chef/inspec/pull/559) ([chris-rock](https://github.com/chris-rock))
1763
-
1764
- **Merged pull requests:**
1765
-
1766
- - 0.16.1 [\#567](https://github.com/chef/inspec/pull/567) ([arlimus](https://github.com/arlimus))
1767
- - add support for addresses in port resource [\#558](https://github.com/chef/inspec/pull/558) ([chris-rock](https://github.com/chris-rock))
1768
-
1769
- ## [v0.16.0](https://github.com/chef/inspec/tree/v0.16.0) (2016-03-19)
1770
- [Full Changelog](https://github.com/chef/inspec/compare/v0.15.0...v0.16.0)
1771
-
1772
- **Implemented enhancements:**
1773
-
1774
- - Read Chef attributes within the tests ? [\#541](https://github.com/chef/inspec/issues/541)
1775
- - A resource to test http GET calls [\#538](https://github.com/chef/inspec/issues/538)
1776
- - rename `script` resource to `powershell` resource [\#553](https://github.com/chef/inspec/pull/553) ([chris-rock](https://github.com/chris-rock))
1777
- - add fulljson formatter [\#552](https://github.com/chef/inspec/pull/552) ([arlimus](https://github.com/arlimus))
1778
- - feature: add tags and refs [\#551](https://github.com/chef/inspec/pull/551) ([arlimus](https://github.com/arlimus))
1779
- - fix detect + add output option to archive command [\#546](https://github.com/chef/inspec/pull/546) ([arlimus](https://github.com/arlimus))
1780
- - adding named resource registry classes [\#540](https://github.com/chef/inspec/pull/540) ([adamleff](https://github.com/adamleff))
1781
- - add output stream to rspec configuration [\#529](https://github.com/chef/inspec/pull/529) ([vjeffrey](https://github.com/vjeffrey))
1782
- - Move integration tests to test/integration [\#468](https://github.com/chef/inspec/pull/468) ([chris-rock](https://github.com/chris-rock))
1783
-
1784
- **Fixed bugs:**
1785
-
1786
- - Unable to Handle Spaced Windows File Paths [\#469](https://github.com/chef/inspec/issues/469)
1787
- - fix inspec shell and continuously test it [\#556](https://github.com/chef/inspec/pull/556) ([arlimus](https://github.com/arlimus))
1788
- - bugfix: prevent duplicate loading of library files [\#547](https://github.com/chef/inspec/pull/547) ([arlimus](https://github.com/arlimus))
1789
- - fix detect + add output option to archive command [\#546](https://github.com/chef/inspec/pull/546) ([arlimus](https://github.com/arlimus))
1790
- - bugfix: archive command with inheritance-based profiles [\#545](https://github.com/chef/inspec/pull/545) ([arlimus](https://github.com/arlimus))
1791
-
1792
- **Closed issues:**
1793
-
1794
- - Add additional metadata to the control definition to allow for more complete mapping to security guidance documents [\#536](https://github.com/chef/inspec/issues/536)
1795
- - CLI: Specifying --profiles-path on check succeeds but displays usage error on archive [\#535](https://github.com/chef/inspec/issues/535)
1796
- - inspec failing to connect to Compliance \(SSL certificate error\) [\#531](https://github.com/chef/inspec/issues/531)
1797
-
1798
- **Merged pull requests:**
1799
-
1800
- - 0.16.0 [\#557](https://github.com/chef/inspec/pull/557) ([arlimus](https://github.com/arlimus))
1801
- - mock fetcher [\#550](https://github.com/chef/inspec/pull/550) ([arlimus](https://github.com/arlimus))
1802
- - testing: add inspec exec tests with json formatter [\#549](https://github.com/chef/inspec/pull/549) ([arlimus](https://github.com/arlimus))
1803
- - dont generate pretty json by default [\#548](https://github.com/chef/inspec/pull/548) ([arlimus](https://github.com/arlimus))
1804
- - Add title, description, code, and source\_location to example metadata [\#543](https://github.com/chef/inspec/pull/543) ([vjeffrey](https://github.com/vjeffrey))
1805
- - add functional tests for cli [\#542](https://github.com/chef/inspec/pull/542) ([arlimus](https://github.com/arlimus))
1806
- - Add a Gitter chat badge to README.md [\#530](https://github.com/chef/inspec/pull/530) ([gitter-badger](https://github.com/gitter-badger))
1807
-
1808
- ## [v0.15.0](https://github.com/chef/inspec/tree/v0.15.0) (2016-03-09)
1809
- [Full Changelog](https://github.com/chef/inspec/compare/v0.14.8...v0.15.0)
1810
-
1811
- **Implemented enhancements:**
1812
-
1813
- - add color output + make it the default [\#523](https://github.com/chef/inspec/pull/523) ([arlimus](https://github.com/arlimus))
1814
- - select controls to execute [\#522](https://github.com/chef/inspec/pull/522) ([arlimus](https://github.com/arlimus))
1815
-
1816
- **Fixed bugs:**
1817
-
1818
- - Rename internal File and OS resource classes [\#527](https://github.com/chef/inspec/pull/527) ([arlimus](https://github.com/arlimus))
1819
- - Placing all resources in the Inspec::Resources namespace [\#526](https://github.com/chef/inspec/pull/526) ([adamleff](https://github.com/adamleff))
1820
- - bugfix: inheritance of local profiles [\#524](https://github.com/chef/inspec/pull/524) ([arlimus](https://github.com/arlimus))
1821
-
1822
- **Closed issues:**
1823
-
1824
- - Colo\[u\]r those dots and Fs! [\#518](https://github.com/chef/inspec/issues/518)
1825
-
1826
- **Merged pull requests:**
1827
-
1828
- - 0.15.0 [\#528](https://github.com/chef/inspec/pull/528) ([arlimus](https://github.com/arlimus))
1829
- - 0.14.9 [\#525](https://github.com/chef/inspec/pull/525) ([arlimus](https://github.com/arlimus))
1830
-
1831
- ## [v0.14.8](https://github.com/chef/inspec/tree/v0.14.8) (2016-03-04)
1832
- [Full Changelog](https://github.com/chef/inspec/compare/v0.14.7...v0.14.8)
1833
-
1834
- **Closed issues:**
1835
-
1836
- - Question: Cron? [\#490](https://github.com/chef/inspec/issues/490)
1837
-
1838
- **Merged pull requests:**
1839
-
1840
- - 0.14.8 [\#520](https://github.com/chef/inspec/pull/520) ([arlimus](https://github.com/arlimus))
1841
- - expose control impacts in json [\#519](https://github.com/chef/inspec/pull/519) ([arlimus](https://github.com/arlimus))
1842
-
1843
- ## [v0.14.7](https://github.com/chef/inspec/tree/v0.14.7) (2016-03-01)
1844
- [Full Changelog](https://github.com/chef/inspec/compare/v0.14.6...v0.14.7)
1845
-
1846
- **Fixed bugs:**
1847
-
1848
- - `compliance` command does not work with self-signed https [\#511](https://github.com/chef/inspec/issues/511)
1849
- - check error - digest: no implicit conversion of nil into String \(TypeError\) [\#509](https://github.com/chef/inspec/issues/509)
1850
-
1851
- **Merged pull requests:**
1852
-
1853
- - 0.14.7 [\#513](https://github.com/chef/inspec/pull/513) ([chris-rock](https://github.com/chris-rock))
1854
- - adds a insecure option [\#512](https://github.com/chef/inspec/pull/512) ([chris-rock](https://github.com/chris-rock))
1855
-
1856
- ## [v0.14.6](https://github.com/chef/inspec/tree/v0.14.6) (2016-03-01)
1857
- [Full Changelog](https://github.com/chef/inspec/compare/v0.14.5...v0.14.6)
1858
-
1859
- **Implemented enhancements:**
1860
-
1861
- - Improve Supermarket CLI [\#508](https://github.com/chef/inspec/pull/508) ([alexpop](https://github.com/alexpop))
1862
-
1863
- **Fixed bugs:**
1864
-
1865
- - add missing supermarket loader [\#506](https://github.com/chef/inspec/pull/506) ([chris-rock](https://github.com/chris-rock))
1866
-
1867
- **Merged pull requests:**
1868
-
1869
- - 0.14.6 [\#510](https://github.com/chef/inspec/pull/510) ([chris-rock](https://github.com/chris-rock))
1870
-
1871
- ## [v0.14.5](https://github.com/chef/inspec/tree/v0.14.5) (2016-02-29)
1872
- [Full Changelog](https://github.com/chef/inspec/compare/v0.14.4...v0.14.5)
1873
-
1874
- **Merged pull requests:**
1875
-
1876
- - 0.14.5 [\#505](https://github.com/chef/inspec/pull/505) ([chris-rock](https://github.com/chris-rock))
1877
- - Fix license warning during gem build. [\#503](https://github.com/chef/inspec/pull/503) ([juliandunn](https://github.com/juliandunn))
1878
-
1879
- ## [v0.14.4](https://github.com/chef/inspec/tree/v0.14.4) (2016-02-26)
1880
- [Full Changelog](https://github.com/chef/inspec/compare/v0.14.3...v0.14.4)
1881
-
1882
- **Implemented enhancements:**
1883
-
1884
- - add xinetd\_conf resource [\#499](https://github.com/chef/inspec/pull/499) ([arlimus](https://github.com/arlimus))
1885
- - add `describe.one`: collection of tests with at least one passing [\#497](https://github.com/chef/inspec/pull/497) ([arlimus](https://github.com/arlimus))
1886
-
1887
- **Fixed bugs:**
1888
-
1889
- - don't crash on empty metadata during finalize [\#500](https://github.com/chef/inspec/pull/500) ([arlimus](https://github.com/arlimus))
1890
-
1891
- **Merged pull requests:**
1892
-
1893
- - 0.14.4 [\#501](https://github.com/chef/inspec/pull/501) ([arlimus](https://github.com/arlimus))
1894
-
1895
- ## [v0.14.3](https://github.com/chef/inspec/tree/v0.14.3) (2016-02-24)
1896
- [Full Changelog](https://github.com/chef/inspec/compare/v0.14.2...v0.14.3)
1897
-
1898
- **Implemented enhancements:**
1899
-
1900
- - cmp matcher should compare expected string == number [\#487](https://github.com/chef/inspec/pull/487) ([chris-rock](https://github.com/chris-rock))
1901
-
1902
- **Fixed bugs:**
1903
-
1904
- - expose inspec errors during profile read [\#492](https://github.com/chef/inspec/pull/492) ([arlimus](https://github.com/arlimus))
1905
-
1906
- **Merged pull requests:**
1907
-
1908
- - 0.14.3 [\#493](https://github.com/chef/inspec/pull/493) ([arlimus](https://github.com/arlimus))
1909
-
1910
- ## [v0.14.2](https://github.com/chef/inspec/tree/v0.14.2) (2016-02-22)
1911
- [Full Changelog](https://github.com/chef/inspec/compare/v0.14.1...v0.14.2)
1912
-
1913
- **Implemented enhancements:**
1914
-
1915
- - load plugins in the same gem installation [\#482](https://github.com/chef/inspec/pull/482) ([arlimus](https://github.com/arlimus))
1916
-
1917
- **Fixed bugs:**
1918
-
1919
- - fix cc upload [\#483](https://github.com/chef/inspec/pull/483) ([chris-rock](https://github.com/chris-rock))
1920
-
1921
- **Merged pull requests:**
1922
-
1923
- - 0.14.2 [\#484](https://github.com/chef/inspec/pull/484) ([arlimus](https://github.com/arlimus))
1924
-
1925
- ## [v0.14.1](https://github.com/chef/inspec/tree/v0.14.1) (2016-02-22)
1926
- [Full Changelog](https://github.com/chef/inspec/compare/v0.14.0...v0.14.1)
1927
-
1928
- **Implemented enhancements:**
1929
-
1930
- - optimize appveyor [\#479](https://github.com/chef/inspec/pull/479) ([chris-rock](https://github.com/chris-rock))
1931
- - fix windows tests [\#478](https://github.com/chef/inspec/pull/478) ([srenatus](https://github.com/srenatus))
1932
-
1933
- **Fixed bugs:**
1934
-
1935
- - ignore `pax\_global\_header` as valid file [\#480](https://github.com/chef/inspec/pull/480) ([chris-rock](https://github.com/chris-rock))
1936
-
1937
- **Merged pull requests:**
1938
-
1939
- - 0.14.1 [\#481](https://github.com/chef/inspec/pull/481) ([chris-rock](https://github.com/chris-rock))
1940
-
1941
- ## [v0.14.0](https://github.com/chef/inspec/tree/v0.14.0) (2016-02-22)
1942
- [Full Changelog](https://github.com/chef/inspec/compare/v0.13.0...v0.14.0)
1943
-
1944
- **Fixed bugs:**
1945
-
1946
- - force encoding to utf-8 [\#476](https://github.com/chef/inspec/pull/476) ([arlimus](https://github.com/arlimus))
1947
- - bugfix: make sure version is always a string [\#475](https://github.com/chef/inspec/pull/475) ([arlimus](https://github.com/arlimus))
1948
- - bugfix: handle edge-cases in upstart service [\#474](https://github.com/chef/inspec/pull/474) ([arlimus](https://github.com/arlimus))
1949
- - replace targets with fetcher+reader system [\#473](https://github.com/chef/inspec/pull/473) ([arlimus](https://github.com/arlimus))
1950
-
1951
- **Merged pull requests:**
1952
-
1953
- - 0.14.0 [\#477](https://github.com/chef/inspec/pull/477) ([arlimus](https://github.com/arlimus))
1954
-
1955
- ## [v0.13.0](https://github.com/chef/inspec/tree/v0.13.0) (2016-02-19)
1956
- [Full Changelog](https://github.com/chef/inspec/compare/v0.12.0...v0.13.0)
1957
-
1958
- **Implemented enhancements:**
1959
-
1960
- - add shadow resource for /etc/shadow [\#471](https://github.com/chef/inspec/pull/471) ([arlimus](https://github.com/arlimus))
1961
- - improve url handling [\#470](https://github.com/chef/inspec/pull/470) ([chris-rock](https://github.com/chris-rock))
1962
- - add filters to passwd resource + deprecate old accessors [\#467](https://github.com/chef/inspec/pull/467) ([arlimus](https://github.com/arlimus))
1963
- - cmp for single-entry arrays; add cmp docs [\#466](https://github.com/chef/inspec/pull/466) ([arlimus](https://github.com/arlimus))
1964
-
1965
- **Fixed bugs:**
1966
-
1967
- - Windows 2008 Still not detected correctly [\#453](https://github.com/chef/inspec/issues/453)
1968
- - Service-related docs, bugs, integration tests [\#463](https://github.com/chef/inspec/pull/463) ([srenatus](https://github.com/srenatus))
1969
- - fix url target resolution with zip and tar [\#462](https://github.com/chef/inspec/pull/462) ([arlimus](https://github.com/arlimus))
1970
- - ensure permissions of inspec-compliance config.json on store [\#461](https://github.com/chef/inspec/pull/461) ([srenatus](https://github.com/srenatus))
1971
-
1972
- **Closed issues:**
1973
-
1974
- - No way to reload the add resources from test code [\#459](https://github.com/chef/inspec/issues/459)
1975
- - add documentation for new server runlevel support [\#456](https://github.com/chef/inspec/issues/456)
1976
-
1977
- **Merged pull requests:**
1978
-
1979
- - 0.13.0 [\#472](https://github.com/chef/inspec/pull/472) ([chris-rock](https://github.com/chris-rock))
1980
-
1981
- ## [v0.12.0](https://github.com/chef/inspec/tree/v0.12.0) (2016-02-15)
1982
- [Full Changelog](https://github.com/chef/inspec/compare/v0.11.0...v0.12.0)
1983
-
1984
- **Implemented enhancements:**
1985
-
1986
- - add runlevel support for System V services [\#455](https://github.com/chef/inspec/pull/455) ([arlimus](https://github.com/arlimus))
1987
- - Add a init subcommand [\#454](https://github.com/chef/inspec/pull/454) ([chris-rock](https://github.com/chris-rock))
1988
-
1989
- **Fixed bugs:**
1990
-
1991
- - Windows 2008 isn't being detected. [\#346](https://github.com/chef/inspec/issues/346)
1992
- - Fix two minor logging and config bugs in CLI [\#452](https://github.com/chef/inspec/pull/452) ([srenatus](https://github.com/srenatus))
1993
- - bugfix: verify the target resolver before using it [\#449](https://github.com/chef/inspec/pull/449) ([arlimus](https://github.com/arlimus))
1994
- - Fix iptables on CentOS6 + more tests for iptables \(plus small code improvements\) [\#442](https://github.com/chef/inspec/pull/442) ([srenatus](https://github.com/srenatus))
1995
-
1996
- **Merged pull requests:**
1997
-
1998
- - 0.12.0 [\#457](https://github.com/chef/inspec/pull/457) ([arlimus](https://github.com/arlimus))
1999
- - rework target to resolver connection [\#447](https://github.com/chef/inspec/pull/447) ([arlimus](https://github.com/arlimus))
2000
- - separate directory resolver from target resolver [\#446](https://github.com/chef/inspec/pull/446) ([arlimus](https://github.com/arlimus))
2001
-
2002
- ## [v0.11.0](https://github.com/chef/inspec/tree/v0.11.0) (2016-02-10)
2003
- [Full Changelog](https://github.com/chef/inspec/compare/v0.10.1...v0.11.0)
2004
-
2005
- **Implemented enhancements:**
2006
-
2007
- - Improve apache resource [\#407](https://github.com/chef/inspec/pull/407) ([chris-rock](https://github.com/chris-rock))
2008
- - auditd\_rules rework [\#400](https://github.com/chef/inspec/pull/400) ([srenatus](https://github.com/srenatus))
2009
-
2010
- **Fixed bugs:**
2011
-
2012
- - File stats are not always working properly [\#430](https://github.com/chef/inspec/issues/430)
2013
- - Inspec iptables should have\_rule tests not working [\#420](https://github.com/chef/inspec/issues/420)
2014
- - Integration test for apache config [\#406](https://github.com/chef/inspec/issues/406)
2015
- - rework auditd\_rules resource [\#312](https://github.com/chef/inspec/issues/312)
2016
- - resource/auditd\_rules: update rule list format [\#309](https://github.com/chef/inspec/issues/309)
2017
-
2018
- **Merged pull requests:**
2019
-
2020
- - 0.11.0 [\#443](https://github.com/chef/inspec/pull/443) ([arlimus](https://github.com/arlimus))
2021
- - Fix supermarket cli registration [\#441](https://github.com/chef/inspec/pull/441) ([chris-rock](https://github.com/chris-rock))
2022
- - update to winrm 1.6.1 command scheme [\#439](https://github.com/chef/inspec/pull/439) ([arlimus](https://github.com/arlimus))
2023
- - semantics: rename CLI plugins registry -\> commands [\#435](https://github.com/chef/inspec/pull/435) ([arlimus](https://github.com/arlimus))
2024
- - avoid automatic plugin loading via library [\#434](https://github.com/chef/inspec/pull/434) ([arlimus](https://github.com/arlimus))
2025
- - clarify the role of the plugin API at the moment [\#433](https://github.com/chef/inspec/pull/433) ([arlimus](https://github.com/arlimus))
2026
- - Implement Supermarket Extension [\#432](https://github.com/chef/inspec/pull/432) ([chris-rock](https://github.com/chris-rock))
2027
- - dedup Gemfiles [\#429](https://github.com/chef/inspec/pull/429) ([srenatus](https://github.com/srenatus))
2028
- - fix loading order of plugins [\#428](https://github.com/chef/inspec/pull/428) ([arlimus](https://github.com/arlimus))
2029
- - Update dsl\_inspec.rst [\#427](https://github.com/chef/inspec/pull/427) ([GeoFruck](https://github.com/GeoFruck))
2030
-
2031
- ## [v0.10.1](https://github.com/chef/inspec/tree/v0.10.1) (2016-02-05)
2032
- [Full Changelog](https://github.com/chef/inspec/compare/v0.10.0...v0.10.1)
2033
-
2034
- **Fixed bugs:**
2035
-
2036
- - wrap basecli in inspec module [\#425](https://github.com/chef/inspec/pull/425) ([arlimus](https://github.com/arlimus))
2037
-
2038
- **Merged pull requests:**
2039
-
2040
- - 0.10.1 [\#426](https://github.com/chef/inspec/pull/426) ([chris-rock](https://github.com/chris-rock))
2041
-
2042
- ## [v0.10.0](https://github.com/chef/inspec/tree/v0.10.0) (2016-02-05)
2043
- [Full Changelog](https://github.com/chef/inspec/compare/v0.9.11...v0.10.0)
2044
-
2045
- **Implemented enhancements:**
2046
-
2047
- - Extend Plugin-System for CLI Plugins [\#421](https://github.com/chef/inspec/pull/421) ([chris-rock](https://github.com/chris-rock))
2048
- - establish plugin loading dock [\#415](https://github.com/chef/inspec/pull/415) ([arlimus](https://github.com/arlimus))
2049
- - JSON output for inspec check [\#411](https://github.com/chef/inspec/pull/411) ([chris-rock](https://github.com/chris-rock))
2050
- - Chef Compliance extension [\#409](https://github.com/chef/inspec/pull/409) ([chris-rock](https://github.com/chris-rock))
2051
- - RspecRunner: re-export report hash [\#404](https://github.com/chef/inspec/pull/404) ([srenatus](https://github.com/srenatus))
2052
-
2053
- **Fixed bugs:**
2054
-
2055
- - InSpec check crashes on tarball [\#408](https://github.com/chef/inspec/issues/408)
2056
- - Looks like supports is ignored from tar files [\#360](https://github.com/chef/inspec/issues/360)
2057
- - Check on archives is broken [\#343](https://github.com/chef/inspec/issues/343)
2058
- - upstart\_service: fallback to config files if `show-config` is not available [\#419](https://github.com/chef/inspec/pull/419) ([srenatus](https://github.com/srenatus))
2059
- - Use target helpers in Inspec::Profile\#from\_file [\#413](https://github.com/chef/inspec/pull/413) ([srenatus](https://github.com/srenatus))
2060
- - fix warning in \#find\_files\[\_or\_error\] [\#403](https://github.com/chef/inspec/pull/403) ([srenatus](https://github.com/srenatus))
2061
-
2062
- **Closed issues:**
2063
-
2064
- - be\_enabled for upstart service on RHEL 6 not working correctly [\#417](https://github.com/chef/inspec/issues/417)
2065
- - Why is the yml file required? [\#414](https://github.com/chef/inspec/issues/414)
2066
- - remove leftover OS check methods from the file resource [\#397](https://github.com/chef/inspec/issues/397)
2067
-
2068
- **Merged pull requests:**
2069
-
2070
- - 0.10.0 [\#424](https://github.com/chef/inspec/pull/424) ([chris-rock](https://github.com/chris-rock))
2071
- - ensure bundler is installed on travis [\#422](https://github.com/chef/inspec/pull/422) ([chris-rock](https://github.com/chris-rock))
2072
- - ec2 name tag instances for easier cleanup [\#418](https://github.com/chef/inspec/pull/418) ([alexpop](https://github.com/alexpop))
2073
- - add an simple describe for profile example [\#416](https://github.com/chef/inspec/pull/416) ([chris-rock](https://github.com/chris-rock))
2074
- - enable to configure the logger via cli [\#405](https://github.com/chef/inspec/pull/405) ([chris-rock](https://github.com/chris-rock))
2075
- - remove os check exposure in file resource [\#398](https://github.com/chef/inspec/pull/398) ([arlimus](https://github.com/arlimus))
2076
-
2077
- ## [v0.9.11](https://github.com/chef/inspec/tree/v0.9.11) (2016-01-29)
2078
- [Full Changelog](https://github.com/chef/inspec/compare/v0.9.10...v0.9.11)
2079
-
2080
- **Implemented enhancements:**
2081
-
2082
- - ec2 integration test [\#399](https://github.com/chef/inspec/pull/399) ([chris-rock](https://github.com/chris-rock))
2083
- - add winrm transport to Gemfile for test-kitchen [\#396](https://github.com/chef/inspec/pull/396) ([chris-rock](https://github.com/chris-rock))
2084
- - Solaris Support [\#395](https://github.com/chef/inspec/pull/395) ([chris-rock](https://github.com/chris-rock))
2085
-
2086
- **Fixed bugs:**
2087
-
2088
- - Logging in profile processing [\#349](https://github.com/chef/inspec/issues/349)
2089
- - runit\_service: fix resource, improve integration tests [\#401](https://github.com/chef/inspec/pull/401) ([srenatus](https://github.com/srenatus))
2090
- - basic logging setup for `inspec exec` [\#392](https://github.com/chef/inspec/pull/392) ([srenatus](https://github.com/srenatus))
2091
-
2092
- **Merged pull requests:**
2093
-
2094
- - 0.9.11 [\#402](https://github.com/chef/inspec/pull/402) ([chris-rock](https://github.com/chris-rock))
2095
- - Readme fixes [\#390](https://github.com/chef/inspec/pull/390) ([jzohrab](https://github.com/jzohrab))
2096
-
2097
- ## [v0.9.10](https://github.com/chef/inspec/tree/v0.9.10) (2016-01-25)
2098
- [Full Changelog](https://github.com/chef/inspec/compare/v0.9.9...v0.9.10)
2099
-
2100
- **Implemented enhancements:**
2101
-
2102
- - specify process supervision type in service resource [\#242](https://github.com/chef/inspec/issues/242)
2103
- - optimize the error output for missing registry keys to `nil` [\#388](https://github.com/chef/inspec/pull/388) ([chris-rock](https://github.com/chris-rock))
2104
- - update readme [\#382](https://github.com/chef/inspec/pull/382) ([chris-rock](https://github.com/chris-rock))
2105
- - add service overrides for picking specific service managers, add runit\_service [\#380](https://github.com/chef/inspec/pull/380) ([srenatus](https://github.com/srenatus))
2106
- - integration tests: stop using alpine iso [\#379](https://github.com/chef/inspec/pull/379) ([srenatus](https://github.com/srenatus))
2107
- - warn about legacy supports fields in metadata [\#378](https://github.com/chef/inspec/pull/378) ([arlimus](https://github.com/arlimus))
2108
- - Update README links to the examples directory [\#376](https://github.com/chef/inspec/pull/376) ([frightenedmonkey](https://github.com/frightenedmonkey))
2109
- - add profile tests \(non-legacy\) [\#375](https://github.com/chef/inspec/pull/375) ([arlimus](https://github.com/arlimus))
2110
- - Fix typo [\#372](https://github.com/chef/inspec/pull/372) ([jcreedcmu](https://github.com/jcreedcmu))
2111
- - separate RSpec handling in runner [\#371](https://github.com/chef/inspec/pull/371) ([arlimus](https://github.com/arlimus))
2112
- - Improve the description and summary of the InSpec gem. [\#370](https://github.com/chef/inspec/pull/370) ([arlimus](https://github.com/arlimus))
2113
-
2114
- **Fixed bugs:**
2115
-
2116
- - Windows OS Detection [\#383](https://github.com/chef/inspec/issues/383)
2117
- - security\_policy is not returning the right value [\#373](https://github.com/chef/inspec/issues/373)
2118
- - PostgreSQL\_Session Resource [\#302](https://github.com/chef/inspec/issues/302)
2119
- - bugfix: write given ID to metadata json [\#389](https://github.com/chef/inspec/pull/389) ([arlimus](https://github.com/arlimus))
2120
- - resources/launchd\_service: fix parsing of non-running services [\#387](https://github.com/chef/inspec/pull/387) ([srenatus](https://github.com/srenatus))
2121
- - bugfix: pin net-ssh 2.9 in gem file [\#386](https://github.com/chef/inspec/pull/386) ([chris-rock](https://github.com/chris-rock))
2122
- - resource/postgres\_session: add integration tests, change error handling [\#381](https://github.com/chef/inspec/pull/381) ([srenatus](https://github.com/srenatus))
2123
-
2124
- **Merged pull requests:**
2125
-
2126
- - 0.9.10 [\#391](https://github.com/chef/inspec/pull/391) ([chris-rock](https://github.com/chris-rock))
2127
- - Enable appveyor for unit tests on Windows [\#361](https://github.com/chef/inspec/pull/361) ([chris-rock](https://github.com/chris-rock))
2128
-
2129
- ## [v0.9.9](https://github.com/chef/inspec/tree/v0.9.9) (2016-01-16)
2130
- [Full Changelog](https://github.com/chef/inspec/compare/v0.9.8...v0.9.9)
2131
-
2132
- **Fixed bugs:**
2133
-
2134
- - Resource registry\_key { should\_not exist } unavailable [\#322](https://github.com/chef/inspec/issues/322)
2135
- - bugfix: only skip regkey if required [\#364](https://github.com/chef/inspec/pull/364) ([chris-rock](https://github.com/chris-rock))
2136
-
2137
- **Merged pull requests:**
2138
-
2139
- - 0.9.9 [\#369](https://github.com/chef/inspec/pull/369) ([chris-rock](https://github.com/chris-rock))
2140
- - add tests for loading metadata yaml internals [\#368](https://github.com/chef/inspec/pull/368) ([arlimus](https://github.com/arlimus))
2141
- - make metadata.rb legacy mode consistent for supports [\#367](https://github.com/chef/inspec/pull/367) ([arlimus](https://github.com/arlimus))
2142
- - lint with rubocop 0.36 [\#366](https://github.com/chef/inspec/pull/366) ([arlimus](https://github.com/arlimus))
2143
- - Fix ssh\_config example [\#365](https://github.com/chef/inspec/pull/365) ([tas50](https://github.com/tas50))
2144
- - Correctly detect UDP ports on linux [\#363](https://github.com/chef/inspec/pull/363) ([mivok](https://github.com/mivok))
2145
- - Update the title of the gordon-1.0 control [\#359](https://github.com/chef/inspec/pull/359) ([chris-rock](https://github.com/chris-rock))
2146
- - Inspec::Targets::UrlHelper: fix github handling, add tests [\#357](https://github.com/chef/inspec/pull/357) ([srenatus](https://github.com/srenatus))
2147
- - Fix systemd service enabled check [\#356](https://github.com/chef/inspec/pull/356) ([jmccann](https://github.com/jmccann))
2148
- - Adding AIX classes, tests, and targetted ssh testing [\#333](https://github.com/chef/inspec/pull/333) ([foobarbam](https://github.com/foobarbam))
2149
-
2150
- ## [v0.9.8](https://github.com/chef/inspec/tree/v0.9.8) (2016-01-11)
2151
- [Full Changelog](https://github.com/chef/inspec/compare/v0.9.7...v0.9.8)
2152
-
2153
- **Implemented enhancements:**
2154
-
2155
- - Control Numbers and Display in Compliance GUI [\#306](https://github.com/chef/inspec/issues/306)
2156
- - Support supports for resources [\#282](https://github.com/chef/inspec/issues/282)
2157
- - Unify metadata and collect it from target resolver [\#342](https://github.com/chef/inspec/pull/342) ([arlimus](https://github.com/arlimus))
2158
- - implement `mount` resource [\#341](https://github.com/chef/inspec/pull/341) ([chris-rock](https://github.com/chris-rock))
2159
- - Update Integration Tests [\#314](https://github.com/chef/inspec/pull/314) ([chris-rock](https://github.com/chris-rock))
2160
- - RFC: Compliance Profile Structure [\#252](https://github.com/chef/inspec/pull/252) ([chris-rock](https://github.com/chris-rock))
2161
-
2162
- **Fixed bugs:**
2163
-
2164
- - Inspec doesn't read controls [\#351](https://github.com/chef/inspec/issues/351)
2165
- - not working under windows, installed from gem [\#323](https://github.com/chef/inspec/issues/323)
2166
- - Resource 'file' missing 'be\_mounted.with' [\#310](https://github.com/chef/inspec/issues/310)
2167
- - `inspec check` on examples generates errors [\#215](https://github.com/chef/inspec/issues/215)
2168
- - bugfix: ignore supports when generating a profile's json representation [\#355](https://github.com/chef/inspec/pull/355) ([srenatus](https://github.com/srenatus))
2169
- - Support old "supports" field in metadata [\#347](https://github.com/chef/inspec/pull/347) ([srenatus](https://github.com/srenatus))
2170
- - Fix custom resource loading from `libraries` [\#337](https://github.com/chef/inspec/pull/337) ([arlimus](https://github.com/arlimus))
2171
-
2172
- **Closed issues:**
2173
-
2174
- - Create RFC on profile structure [\#296](https://github.com/chef/inspec/issues/296)
2175
-
2176
- **Merged pull requests:**
2177
-
2178
- - fix reading profiles bug [\#352](https://github.com/chef/inspec/pull/352) ([srenatus](https://github.com/srenatus))
2179
- - 0.9.8 [\#350](https://github.com/chef/inspec/pull/350) ([chris-rock](https://github.com/chris-rock))
2180
- - clarify how to bump version in rake [\#348](https://github.com/chef/inspec/pull/348) ([arlimus](https://github.com/arlimus))
2181
- - Add `supports` to metadata to specify supported systems [\#344](https://github.com/chef/inspec/pull/344) ([arlimus](https://github.com/arlimus))
2182
- - Update list of examples [\#340](https://github.com/chef/inspec/pull/340) ([chris-rock](https://github.com/chris-rock))
2183
- - add a description for custom resources [\#339](https://github.com/chef/inspec/pull/339) ([arlimus](https://github.com/arlimus))
2184
- - ignore auto-generated controls during verify check [\#332](https://github.com/chef/inspec/pull/332) ([arlimus](https://github.com/arlimus))
2185
- - Set exit status to return value of Inspec Runner [\#331](https://github.com/chef/inspec/pull/331) ([rbhitchcock](https://github.com/rbhitchcock))
2186
- - Verify profile metadata contents correctly [\#330](https://github.com/chef/inspec/pull/330) ([arlimus](https://github.com/arlimus))
2187
-
2188
- ## [v0.9.7](https://github.com/chef/inspec/tree/v0.9.7) (2015-12-21)
2189
- [Full Changelog](https://github.com/chef/inspec/compare/v0.9.6...v0.9.7)
2190
-
2191
- **Implemented enhancements:**
2192
-
2193
- - Configuration number comparisons [\#308](https://github.com/chef/inspec/issues/308)
2194
- - Allow for reading options from a file [\#284](https://github.com/chef/inspec/issues/284)
2195
- - file resource mode matcher does not display file permissions correctly on failure [\#230](https://github.com/chef/inspec/issues/230)
2196
-
2197
- **Fixed bugs:**
2198
-
2199
- - remove commandline defaults, they break json config [\#327](https://github.com/chef/inspec/pull/327) ([srenatus](https://github.com/srenatus))
2200
- - Fixing issue with security policy always returning nil [\#321](https://github.com/chef/inspec/pull/321) ([jeremymv2](https://github.com/jeremymv2))
2201
- - reset rspec configuration when initializing Inspec::Runner [\#320](https://github.com/chef/inspec/pull/320) ([srenatus](https://github.com/srenatus))
2202
- - EL package resource improvements: catch missing newlines & add release info [\#248](https://github.com/chef/inspec/pull/248) ([troyready](https://github.com/troyready))
2203
-
2204
- **Closed issues:**
2205
-
2206
- - convert logindef values to integer if possible [\#121](https://github.com/chef/inspec/issues/121)
2207
-
2208
- **Merged pull requests:**
2209
-
2210
- - 0.9.7 [\#328](https://github.com/chef/inspec/pull/328) ([arlimus](https://github.com/arlimus))
2211
- - remove format default for `inspec exec` [\#326](https://github.com/chef/inspec/pull/326) ([srenatus](https://github.com/srenatus))
2212
- - teach `cmp` matcher octal tricks [\#324](https://github.com/chef/inspec/pull/324) ([srenatus](https://github.com/srenatus))
2213
-
2214
- ## [v0.9.6](https://github.com/chef/inspec/tree/v0.9.6) (2015-12-11)
2215
- [Full Changelog](https://github.com/chef/inspec/compare/v0.9.5...v0.9.6)
2216
-
2217
- **Implemented enhancements:**
2218
-
2219
- - JSON configuration [\#292](https://github.com/chef/inspec/issues/292)
2220
- - Replace the `pry... ` bits in inspec shell [\#267](https://github.com/chef/inspec/issues/267)
2221
- - Better wording for check [\#260](https://github.com/chef/inspec/issues/260)
2222
- - OS resource with string and symbol support [\#227](https://github.com/chef/inspec/issues/227)
2223
- - matcher for less-restrictive comparison [\#318](https://github.com/chef/inspec/pull/318) ([chris-rock](https://github.com/chris-rock))
2224
- - add readme to examples [\#313](https://github.com/chef/inspec/pull/313) ([chris-rock](https://github.com/chris-rock))
2225
- - Minor `inspec shell` improvements [\#283](https://github.com/chef/inspec/pull/283) ([srenatus](https://github.com/srenatus))
2226
- - add kitchen-ansible inspec example [\#275](https://github.com/chef/inspec/pull/275) ([alexpop](https://github.com/alexpop))
2227
- - add kitchen-puppet example with inspec testing [\#273](https://github.com/chef/inspec/pull/273) ([alexpop](https://github.com/alexpop))
2228
- - Feature: Add shell `help resource` command [\#269](https://github.com/chef/inspec/pull/269) ([chris-rock](https://github.com/chris-rock))
2229
-
2230
- **Fixed bugs:**
2231
-
2232
- - auditd\_conf parameters should be case insensitive [\#307](https://github.com/chef/inspec/issues/307)
2233
- - Processes resource doesn't handle user or state [\#295](https://github.com/chef/inspec/issues/295)
2234
- - JSON configuration [\#292](https://github.com/chef/inspec/issues/292)
2235
- - Windows file matcher does not match existing files [\#288](https://github.com/chef/inspec/issues/288)
2236
- - Inspec hangs when executing some windows profiles against linux machine [\#279](https://github.com/chef/inspec/issues/279)
2237
- - Utils::FindFiles doesn't work [\#276](https://github.com/chef/inspec/issues/276)
2238
- - etc\_group not implemented for centos [\#266](https://github.com/chef/inspec/issues/266)
2239
- - Port resource returns arrays [\#256](https://github.com/chef/inspec/issues/256)
2240
- - Custom resource not available, undefined local variable or method `gordon\_config` [\#232](https://github.com/chef/inspec/issues/232)
2241
- - File permission checks should return false unless file exists [\#301](https://github.com/chef/inspec/pull/301) ([adamleff](https://github.com/adamleff))
2242
- - remove json doc for windows\_feature [\#272](https://github.com/chef/inspec/pull/272) ([chris-rock](https://github.com/chris-rock))
2243
- - improvement: add etc\_group support for centos and add integration test [\#270](https://github.com/chef/inspec/pull/270) ([chris-rock](https://github.com/chris-rock))
2244
-
2245
- **Merged pull requests:**
2246
-
2247
- - 0.9.6 [\#319](https://github.com/chef/inspec/pull/319) ([arlimus](https://github.com/arlimus))
2248
- - Bugfix: Properly initialize script resource [\#316](https://github.com/chef/inspec/pull/316) ([chris-rock](https://github.com/chris-rock))
2249
- - improve shell prompt and help [\#315](https://github.com/chef/inspec/pull/315) ([chris-rock](https://github.com/chris-rock))
2250
- - port resource: array attributes, resource alternative [\#303](https://github.com/chef/inspec/pull/303) ([srenatus](https://github.com/srenatus))
2251
- - support string and symbol for os resource [\#299](https://github.com/chef/inspec/pull/299) ([chris-rock](https://github.com/chris-rock))
2252
- - \[resources/apache\_conf\]: add tests, fix bug [\#298](https://github.com/chef/inspec/pull/298) ([srenatus](https://github.com/srenatus))
2253
- - \[resources/processes\] add user\(s\), state\(s\) attribute [\#297](https://github.com/chef/inspec/pull/297) ([srenatus](https://github.com/srenatus))
2254
- - fix small grammar error [\#294](https://github.com/chef/inspec/pull/294) ([juliandunn](https://github.com/juliandunn))
2255
- - read config from file/stdin [\#293](https://github.com/chef/inspec/pull/293) ([srenatus](https://github.com/srenatus))
2256
- - revert to old find\_files interface [\#291](https://github.com/chef/inspec/pull/291) ([srenatus](https://github.com/srenatus))
2257
- - Adding support for Wind River Linux [\#289](https://github.com/chef/inspec/pull/289) ([adamleff](https://github.com/adamleff))
2258
- - travis workarounds [\#286](https://github.com/chef/inspec/pull/286) ([srenatus](https://github.com/srenatus))
2259
- - Support mint in the integration tests [\#281](https://github.com/chef/inspec/pull/281) ([artem-sidorenko](https://github.com/artem-sidorenko))
2260
- - align cli documentation with cli [\#278](https://github.com/chef/inspec/pull/278) ([chris-rock](https://github.com/chris-rock))
2261
- - Remove description of custom resource [\#277](https://github.com/chef/inspec/pull/277) ([chris-rock](https://github.com/chris-rock))
2262
- - add rake tasks for showing and bumping the version of inspec [\#265](https://github.com/chef/inspec/pull/265) ([arlimus](https://github.com/arlimus))
2263
-
2264
- ## [v0.9.5](https://github.com/chef/inspec/tree/v0.9.5) (2015-11-25)
2265
- [Full Changelog](https://github.com/chef/inspec/compare/v0.9.4...v0.9.5)
2266
-
2267
- **Implemented enhancements:**
2268
-
2269
- - Support the -i switch for key files as per ssh [\#261](https://github.com/chef/inspec/issues/261)
2270
- - Add -p alias for --port like ssh [\#263](https://github.com/chef/inspec/pull/263) ([alexmanly](https://github.com/alexmanly))
2271
-
2272
- **Merged pull requests:**
2273
-
2274
- - 0.9.5 [\#264](https://github.com/chef/inspec/pull/264) ([arlimus](https://github.com/arlimus))
2275
- - Add -i alias for --key\_files like ssh [\#262](https://github.com/chef/inspec/pull/262) ([jcreedcmu](https://github.com/jcreedcmu))
2276
-
2277
- ## [v0.9.4](https://github.com/chef/inspec/tree/v0.9.4) (2015-11-24)
2278
- [Full Changelog](https://github.com/chef/inspec/compare/v0.9.3...v0.9.4)
2279
-
2280
- **Fixed bugs:**
2281
-
2282
- - registry\_key needs to be case insensitive [\#254](https://github.com/chef/inspec/issues/254)
2283
- - User resource doesn't handle group names with spaces [\#238](https://github.com/chef/inspec/issues/238)
2284
- - inspec does not extract section name from test file header [\#182](https://github.com/chef/inspec/issues/182)
2285
- - bugfix: user resources support for group with whitespace [\#258](https://github.com/chef/inspec/pull/258) ([chris-rock](https://github.com/chris-rock))
2286
- - Bugfix: make registry\_key resource case-insensitive [\#255](https://github.com/chef/inspec/pull/255) ([alexpop](https://github.com/alexpop))
2287
-
2288
- **Merged pull requests:**
2289
-
2290
- - 0.9.4 [\#259](https://github.com/chef/inspec/pull/259) ([arlimus](https://github.com/arlimus))
2291
- - Improve conf file resources \(csv, json, yaml, ini\) [\#257](https://github.com/chef/inspec/pull/257) ([chris-rock](https://github.com/chris-rock))
2292
- - improvement: update install instructions and add notes for windows builds [\#253](https://github.com/chef/inspec/pull/253) ([chris-rock](https://github.com/chris-rock))
2293
-
2294
- ## [v0.9.3](https://github.com/chef/inspec/tree/v0.9.3) (2015-11-20)
2295
- [Full Changelog](https://github.com/chef/inspec/compare/v0.9.2...v0.9.3)
2296
-
2297
- **Implemented enhancements:**
2298
-
2299
- - Support the control keyword, synonymous to rule [\#188](https://github.com/chef/inspec/issues/188)
2300
-
2301
- **Fixed bugs:**
2302
-
2303
- - Multiple computed calls to describe aren't registered [\#246](https://github.com/chef/inspec/issues/246)
2304
-
2305
- **Closed issues:**
2306
-
2307
- - port resource does not work on CentOS [\#239](https://github.com/chef/inspec/issues/239)
2308
- - os\_env not working [\#236](https://github.com/chef/inspec/issues/236)
2309
- - service resource misbehaves on upstart hosts [\#226](https://github.com/chef/inspec/issues/226)
2310
- - OS resource requires requires a Symbol not a String \(wrong in docs\) [\#224](https://github.com/chef/inspec/issues/224)
2311
- - Cannot run against remote WinRM SSL systems [\#221](https://github.com/chef/inspec/issues/221)
2312
- - Proper Changelog [\#211](https://github.com/chef/inspec/issues/211)
2313
-
2314
- **Merged pull requests:**
2315
-
2316
- - 0.9.3 [\#251](https://github.com/chef/inspec/pull/251) ([arlimus](https://github.com/arlimus))
2317
- - Introduce automated changelog generation [\#250](https://github.com/chef/inspec/pull/250) ([arlimus](https://github.com/arlimus))
2318
- - ensure all test directories are on the runner $LOAD\_PATH [\#249](https://github.com/chef/inspec/pull/249) ([schisamo](https://github.com/schisamo))
2319
- - bugfix: support multiple computed calls to describe [\#247](https://github.com/chef/inspec/pull/247) ([arlimus](https://github.com/arlimus))
2320
- - Add Windows support to the `os\_env` resource [\#245](https://github.com/chef/inspec/pull/245) ([schisamo](https://github.com/schisamo))
2321
- - Added links to the different sections. [\#244](https://github.com/chef/inspec/pull/244) ([jjasghar](https://github.com/jjasghar))
2322
- - bugfix: run integration tests on windows [\#243](https://github.com/chef/inspec/pull/243) ([chris-rock](https://github.com/chris-rock))
2323
- - add port support for centos [\#241](https://github.com/chef/inspec/pull/241) ([chris-rock](https://github.com/chris-rock))
2324
- - api: don't force root on os\_env [\#237](https://github.com/chef/inspec/pull/237) ([arlimus](https://github.com/arlimus))
2325
- - change test-kitchen example from rule to control [\#235](https://github.com/chef/inspec/pull/235) ([chris-rock](https://github.com/chris-rock))
2326
- - lint [\#234](https://github.com/chef/inspec/pull/234) ([arlimus](https://github.com/arlimus))
2327
- - improvement: rewrite registry\_key resource, serverspec compatibility and add integration tests [\#233](https://github.com/chef/inspec/pull/233) ([alexpop](https://github.com/alexpop))
2328
- - Upstart with System V fallback [\#228](https://github.com/chef/inspec/pull/228) ([chris-rock](https://github.com/chris-rock))
2329
- - OS resource requires a Symbol not a String [\#225](https://github.com/chef/inspec/pull/225) ([stuartpreston](https://github.com/stuartpreston))
2330
- - Update README.md [\#223](https://github.com/chef/inspec/pull/223) ([jjasghar](https://github.com/jjasghar))
2331
- - add a tiny sudo example to the readme [\#222](https://github.com/chef/inspec/pull/222) ([arlimus](https://github.com/arlimus))
2332
-
2333
- ## [v0.9.2](https://github.com/chef/inspec/tree/v0.9.2) (2015-11-06)
2334
- [Full Changelog](https://github.com/chef/inspec/compare/0.9.1...v0.9.2)
2335
-
2336
- **Merged pull requests:**
2337
-
2338
- - 0.9.2 [\#220](https://github.com/chef/inspec/pull/220) ([arlimus](https://github.com/arlimus))
2339
- - bugfix: correct add\_content call to new param structure [\#219](https://github.com/chef/inspec/pull/219) ([arlimus](https://github.com/arlimus))
2340
- - Add version to resource declaration [\#218](https://github.com/chef/inspec/pull/218) ([jcreedcmu](https://github.com/jcreedcmu))
2341
- - Not using git in the gemspec file [\#217](https://github.com/chef/inspec/pull/217) ([tyler-ball](https://github.com/tyler-ball))
2342
- - Updating Gemfile grouped dependencies to match what is already in the ChefDK [\#216](https://github.com/chef/inspec/pull/216) ([tyler-ball](https://github.com/tyler-ball))
2343
- - Fix contain / should match confusion [\#214](https://github.com/chef/inspec/pull/214) ([zmalone](https://github.com/zmalone))
2344
- - Fix doc typos [\#213](https://github.com/chef/inspec/pull/213) ([juliandunn](https://github.com/juliandunn))
2345
- - Add test-kitchen example reference to readme [\#212](https://github.com/chef/inspec/pull/212) ([chris-rock](https://github.com/chris-rock))
2346
- - Massively improve README [\#208](https://github.com/chef/inspec/pull/208) ([echohack](https://github.com/echohack))
2347
-
2348
- ## [0.9.1](https://github.com/chef/inspec/tree/0.9.1) (2015-11-04)
2349
- [Full Changelog](https://github.com/chef/inspec/compare/v0.9.1...0.9.1)
2350
-
2351
- **Closed issues:**
2352
-
2353
- - add cla bot [\#180](https://github.com/chef/inspec/issues/180)
2354
- - update license [\#130](https://github.com/chef/inspec/issues/130)
2355
-
2356
- **Merged pull requests:**
2357
-
2358
- - add inspec and friends, thank you @chris-rock, @nathenharvey, @colincam, @juliandunn [\#209](https://github.com/chef/inspec/pull/209) ([arlimus](https://github.com/arlimus))
2359
- - Fix package resource documentation example. [\#207](https://github.com/chef/inspec/pull/207) ([fnichol](https://github.com/fnichol))
2360
- - Rename gem in test-kitchen example [\#206](https://github.com/chef/inspec/pull/206) ([srenatus](https://github.com/srenatus))
2361
- - 0.9.1 [\#205](https://github.com/chef/inspec/pull/205) ([arlimus](https://github.com/arlimus))
2362
- - relax pry version [\#204](https://github.com/chef/inspec/pull/204) ([chris-rock](https://github.com/chris-rock))
2363
- - push to rubygems [\#203](https://github.com/chef/inspec/pull/203) ([arlimus](https://github.com/arlimus))
2364
- - update table style [\#202](https://github.com/chef/inspec/pull/202) ([chris-rock](https://github.com/chris-rock))
2365
- - Apache 2.0 LICENSE [\#201](https://github.com/chef/inspec/pull/201) ([jamesc](https://github.com/jamesc))
2366
-
2367
- ## [v0.9.1](https://github.com/chef/inspec/tree/v0.9.1) (2015-11-03)
2368
- [Full Changelog](https://github.com/chef/inspec/compare/0.9.0...v0.9.1)
2369
-
2370
- ## [0.9.0](https://github.com/chef/inspec/tree/0.9.0) (2015-11-03)
2371
- [Full Changelog](https://github.com/chef/inspec/compare/0.8.0...0.9.0)
2372
-
2373
- **Closed issues:**
2374
-
2375
- - Make text replacements in documentation work correctly [\#170](https://github.com/chef/inspec/issues/170)
2376
- - rename project to inspec [\#129](https://github.com/chef/inspec/issues/129)
2377
- - resource integration tests [\#73](https://github.com/chef/inspec/issues/73)
2378
-
2379
- **Merged pull requests:**
2380
-
2381
- - 0.9.0 [\#200](https://github.com/chef/inspec/pull/200) ([arlimus](https://github.com/arlimus))
2382
- - bugfix: dont skip controls during json generation [\#199](https://github.com/chef/inspec/pull/199) ([arlimus](https://github.com/arlimus))
2383
- - Fix typo and warning in command exist? check [\#198](https://github.com/chef/inspec/pull/198) ([arlimus](https://github.com/arlimus))
2384
- - rename rule to control [\#197](https://github.com/chef/inspec/pull/197) ([chris-rock](https://github.com/chris-rock))
2385
- - improvement: fail properly if os is not supported [\#196](https://github.com/chef/inspec/pull/196) ([chris-rock](https://github.com/chris-rock))
2386
- - bugfix: relax fail for command.exist? for inspec check command [\#195](https://github.com/chef/inspec/pull/195) ([chris-rock](https://github.com/chris-rock))
2387
- - api: introduce control keyword [\#194](https://github.com/chef/inspec/pull/194) ([arlimus](https://github.com/arlimus))
2388
- - feature: introduce group title for files [\#193](https://github.com/chef/inspec/pull/193) ([arlimus](https://github.com/arlimus))
2389
- - thank you serverspec! [\#192](https://github.com/chef/inspec/pull/192) ([arlimus](https://github.com/arlimus))
2390
- - change library loading from /lib -\> /libraries and fix auto-loading [\#191](https://github.com/chef/inspec/pull/191) ([arlimus](https://github.com/arlimus))
2391
- - improve command.exist? for more operating systems [\#190](https://github.com/chef/inspec/pull/190) ([chris-rock](https://github.com/chris-rock))
2392
- - formatting, mostly ... also package =\> oneget [\#189](https://github.com/chef/inspec/pull/189) ([jamescott](https://github.com/jamescott))
2393
- - bugfix: ignore delivery when building the gem [\#186](https://github.com/chef/inspec/pull/186) ([arlimus](https://github.com/arlimus))
2394
- - api: change `--disable-sudo` to `--sudo` [\#185](https://github.com/chef/inspec/pull/185) ([arlimus](https://github.com/arlimus))
2395
- - use new internal structure for inspect check [\#184](https://github.com/chef/inspec/pull/184) ([chris-rock](https://github.com/chris-rock))
2396
- - remove dup method users, use usernames, fix example [\#183](https://github.com/chef/inspec/pull/183) ([chris-rock](https://github.com/chris-rock))
2397
- - Update docs [\#181](https://github.com/chef/inspec/pull/181) ([chris-rock](https://github.com/chris-rock))
2398
- - do not expose stderr method via os\_env [\#179](https://github.com/chef/inspec/pull/179) ([chris-rock](https://github.com/chris-rock))
2399
- - deactivate group policy [\#178](https://github.com/chef/inspec/pull/178) ([chris-rock](https://github.com/chris-rock))
2400
- - MAINTAINERS listed in the project [\#177](https://github.com/chef/inspec/pull/177) ([nathenharvey](https://github.com/nathenharvey))
2401
- - fix os\_env example [\#173](https://github.com/chef/inspec/pull/173) ([chris-rock](https://github.com/chris-rock))
2402
- - add abbreviations for docs [\#172](https://github.com/chef/inspec/pull/172) ([chris-rock](https://github.com/chris-rock))
2403
- - Update README.md [\#171](https://github.com/chef/inspec/pull/171) ([jcreedcmu](https://github.com/jcreedcmu))
2404
- - Fix docs so they at least compile with rst2html.py [\#169](https://github.com/chef/inspec/pull/169) ([jcreedcmu](https://github.com/jcreedcmu))
2405
- - Update ctl\_inspec.rst [\#168](https://github.com/chef/inspec/pull/168) ([jcreedcmu](https://github.com/jcreedcmu))
2406
- - Minor changes to the README [\#167](https://github.com/chef/inspec/pull/167) ([nathenharvey](https://github.com/nathenharvey))
2407
- - add draft version of InSpec DSL topic [\#165](https://github.com/chef/inspec/pull/165) ([jamescott](https://github.com/jamescott))
2408
- - sync words [\#164](https://github.com/chef/inspec/pull/164) ([jamescott](https://github.com/jamescott))
2409
- - Improve docs [\#163](https://github.com/chef/inspec/pull/163) ([chris-rock](https://github.com/chris-rock))
2410
- - Don't resolve `send` calls with dot-notation [\#162](https://github.com/chef/inspec/pull/162) ([arlimus](https://github.com/arlimus))
2411
- - Align profile structure [\#161](https://github.com/chef/inspec/pull/161) ([arlimus](https://github.com/arlimus))
2412
- - update docs [\#160](https://github.com/chef/inspec/pull/160) ([chris-rock](https://github.com/chris-rock))
2413
- - resource =\> audit resource [\#159](https://github.com/chef/inspec/pull/159) ([jamescott](https://github.com/jamescott))
2414
- - update readme [\#158](https://github.com/chef/inspec/pull/158) ([chris-rock](https://github.com/chris-rock))
2415
- - add apache base config [\#157](https://github.com/chef/inspec/pull/157) ([chris-rock](https://github.com/chris-rock))
2416
- - update to new kitchen-inspect [\#156](https://github.com/chef/inspec/pull/156) ([chris-rock](https://github.com/chris-rock))
2417
- - consistently set an empty logger in non-verbose mode [\#155](https://github.com/chef/inspec/pull/155) ([arlimus](https://github.com/arlimus))
2418
- - update query syntax [\#154](https://github.com/chef/inspec/pull/154) ([jamescott](https://github.com/jamescott))
2419
- - bugfixes for json dummy module [\#153](https://github.com/chef/inspec/pull/153) ([arlimus](https://github.com/arlimus))
2420
- - bugfix: correctly remove prefix from folder [\#152](https://github.com/chef/inspec/pull/152) ([arlimus](https://github.com/arlimus))
2421
- - Rename vulcanosec -\> inspec [\#151](https://github.com/chef/inspec/pull/151) ([arlimus](https://github.com/arlimus))
2422
- - feature: bring back profile check [\#150](https://github.com/chef/inspec/pull/150) ([arlimus](https://github.com/arlimus))
2423
- - Metadata [\#149](https://github.com/chef/inspec/pull/149) ([arlimus](https://github.com/arlimus))
2424
- - ignore local bundle config [\#148](https://github.com/chef/inspec/pull/148) ([arlimus](https://github.com/arlimus))
2425
- - simplify auditd name [\#147](https://github.com/chef/inspec/pull/147) ([chris-rock](https://github.com/chris-rock))
2426
- - Json [\#146](https://github.com/chef/inspec/pull/146) ([arlimus](https://github.com/arlimus))
2427
- - bugfix: delivery only build necessary gems [\#145](https://github.com/chef/inspec/pull/145) ([arlimus](https://github.com/arlimus))
2428
- - fix travis builds for 1.9.3 [\#144](https://github.com/chef/inspec/pull/144) ([arlimus](https://github.com/arlimus))
2429
- - more integration tests [\#143](https://github.com/chef/inspec/pull/143) ([chris-rock](https://github.com/chris-rock))
2430
- - json =\> exec [\#141](https://github.com/chef/inspec/pull/141) ([jamescott](https://github.com/jamescott))
2431
- - add InSpec CLI reference topic [\#140](https://github.com/chef/inspec/pull/140) ([jamescott](https://github.com/jamescott))
2432
- - encryptiong =\> encryption [\#139](https://github.com/chef/inspec/pull/139) ([jamescott](https://github.com/jamescott))
2433
- - edit out words [\#138](https://github.com/chef/inspec/pull/138) ([jamescott](https://github.com/jamescott))
2434
- - remove old docs file [\#136](https://github.com/chef/inspec/pull/136) ([chris-rock](https://github.com/chris-rock))
2435
- - Integration tests [\#135](https://github.com/chef/inspec/pull/135) ([chris-rock](https://github.com/chris-rock))
2436
- - add audit\_policy resource [\#134](https://github.com/chef/inspec/pull/134) ([jamescott](https://github.com/jamescott))
2437
- - add file resource + lots of matchers [\#132](https://github.com/chef/inspec/pull/132) ([jamescott](https://github.com/jamescott))
2438
-
2439
- ## [0.8.0](https://github.com/chef/inspec/tree/0.8.0) (2015-10-21)
2440
- [Full Changelog](https://github.com/chef/inspec/compare/0.7.0...0.8.0)
2441
-
2442
- **Implemented enhancements:**
2443
-
2444
- - Add WinRM transport layer [\#64](https://github.com/chef/inspec/issues/64)
2445
-
2446
- **Closed issues:**
2447
-
2448
- - ensure all resources have a proper to\_s method [\#98](https://github.com/chef/inspec/issues/98)
2449
- - Escape commands before we execute them [\#70](https://github.com/chef/inspec/issues/70)
2450
-
2451
- **Merged pull requests:**
2452
-
2453
- - 0.8.0 [\#131](https://github.com/chef/inspec/pull/131) ([chris-rock](https://github.com/chris-rock))
2454
- - more CentOS support [\#128](https://github.com/chef/inspec/pull/128) ([chris-rock](https://github.com/chris-rock))
2455
- - add more usage headers [\#127](https://github.com/chef/inspec/pull/127) ([chris-rock](https://github.com/chris-rock))
2456
- - add test-kitchen example [\#126](https://github.com/chef/inspec/pull/126) ([chris-rock](https://github.com/chris-rock))
2457
- - fix the header structure [\#124](https://github.com/chef/inspec/pull/124) ([jamescott](https://github.com/jamescott))
2458
- - add resources, sync matcher patterns [\#123](https://github.com/chef/inspec/pull/123) ([jamescott](https://github.com/jamescott))
2459
- - move markdown docs to rst [\#122](https://github.com/chef/inspec/pull/122) ([chris-rock](https://github.com/chris-rock))
2460
- - delivery: select build node on new fqdn [\#119](https://github.com/chef/inspec/pull/119) ([arlimus](https://github.com/arlimus))
2461
- - add first round of audit resource docs [\#118](https://github.com/chef/inspec/pull/118) ([jamescott](https://github.com/jamescott))
2462
- - Add support for `expect` [\#117](https://github.com/chef/inspec/pull/117) ([arlimus](https://github.com/arlimus))
2463
- - test: group resource tests [\#116](https://github.com/chef/inspec/pull/116) ([arlimus](https://github.com/arlimus))
2464
- - Fixes [\#115](https://github.com/chef/inspec/pull/115) ([chris-rock](https://github.com/chris-rock))
2465
- - simplify yum implementation [\#114](https://github.com/chef/inspec/pull/114) ([chris-rock](https://github.com/chris-rock))
2466
- - take care of ruby warnings [\#112](https://github.com/chef/inspec/pull/112) ([arlimus](https://github.com/arlimus))
2467
- - Train [\#111](https://github.com/chef/inspec/pull/111) ([arlimus](https://github.com/arlimus))
2468
- - make default rake tasks test+lint [\#110](https://github.com/chef/inspec/pull/110) ([arlimus](https://github.com/arlimus))
2469
- - make default rake tasks test+lint [\#109](https://github.com/chef/inspec/pull/109) ([arlimus](https://github.com/arlimus))
2470
- - make default rake tasks test+lint [\#108](https://github.com/chef/inspec/pull/108) ([arlimus](https://github.com/arlimus))
2471
- - Improve unit tests [\#106](https://github.com/chef/inspec/pull/106) ([chris-rock](https://github.com/chris-rock))
2472
- - add to\_s methods to resources, fixes \#98 [\#105](https://github.com/chef/inspec/pull/105) ([chris-rock](https://github.com/chris-rock))
2473
- - 0.7.0 release [\#104](https://github.com/chef/inspec/pull/104) ([chris-rock](https://github.com/chris-rock))
2474
72
 
2475
73
 
2476
74
 
2477
- \* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
75
+ \* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*