inspec_tools 2.0.3 → 2.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,116 @@
1
+ module Utils
2
+ # Perform scoring calculations for the different types that is used in a TestResult score.
3
+ class XCCDFScore
4
+ # @param groups [Array[HappyMapperTools::Benchmark::Group]]
5
+ # @param rule_results [Array[RuleResultType]]
6
+ def initialize(groups, rule_results)
7
+ @groups = groups
8
+ @rule_results = rule_results
9
+ end
10
+
11
+ # Calculate and return the urn:xccdf:scoring:default score for the entire benchmark.
12
+ # @return ScoreType
13
+ def default_score
14
+ HappyMapperTools::Benchmark::ScoreType.new('urn:xccdf:scoring:default', 100, score_benchmark_default)
15
+ end
16
+
17
+ # urn:xccdf:scoring:flat
18
+ # @return ScoreType
19
+ def flat_score
20
+ results = score_benchmark_with_weights(true)
21
+ HappyMapperTools::Benchmark::ScoreType.new('urn:xccdf:scoring:flat', results[:max], results[:score])
22
+ end
23
+
24
+ # urn:xccdf:scoring:flat-unweighted
25
+ # @return ScoreType
26
+ def flat_unweighted_score
27
+ results = score_benchmark_with_weights(false)
28
+ HappyMapperTools::Benchmark::ScoreType.new('urn:xccdf:scoring:flat-unweighted', results[:max], results[:score])
29
+ end
30
+
31
+ # urn:xccdf:scoring:absolute
32
+ # @return ScoreType
33
+ def absolute_score
34
+ results = score_benchmark_with_weights(true)
35
+ HappyMapperTools::Benchmark::ScoreType.new('urn:xccdf:scoring:absolute', 1, (results[:max] == results[:score] && results[:max].positive? ? 1 : 0))
36
+ end
37
+
38
+ private
39
+
40
+ # Return the overall score for the default model
41
+ def score_benchmark_default
42
+ return 0.0 unless @groups
43
+
44
+ count = 0
45
+ cumulative_score = 0.0
46
+
47
+ @groups.each do |group|
48
+ # Default weighted scoring only provides value when more than one rule exists per group. This implementation
49
+ # is not currently supporting more than one rule per group so weight need not apply.
50
+ rule_score = score_default_rule(test_results(group.rule.id))
51
+
52
+ if rule_score[:rule_count].positive?
53
+ count += 1
54
+ cumulative_score += rule_score[:rule_score]
55
+ end
56
+ end
57
+
58
+ return 0.0 unless count.positive?
59
+
60
+ (cumulative_score / count).round(2)
61
+ end
62
+
63
+ # @param weighted [Boolean] Indicate to apply with weights.
64
+ def score_benchmark_with_weights(weighted)
65
+ score = 0.0
66
+ max_score = 0.0
67
+
68
+ return { score: score, max: max_score } unless @groups
69
+
70
+ @groups.each do |group|
71
+ # Default weighted scoring only provides value when more than one rule exists per group. This implementation
72
+ # is not currently supporting more than one rule per group so weight need not apply.
73
+ rule_score = rule_counts_and_score(test_results(group.rule.id))
74
+
75
+ next unless rule_score[:rule_count].positive?
76
+
77
+ weight =
78
+ if weighted
79
+ group.rule.weight.nil? ? 1.0 : group.rule.weight.to_f
80
+ else
81
+ group.rule.weight.nil? || group.rule.weight.to_f != 0.0 ? 1.0 : 0.0
82
+ end
83
+
84
+ max_score += weight
85
+ score += (weight * rule_score[:rule_score]) / rule_score[:rule_count]
86
+ end
87
+
88
+ { score: score.round(2), max: max_score }
89
+ end
90
+
91
+ def score_default_rule(results)
92
+ sum = rule_counts_and_score(results)
93
+ return sum if sum[:rule_count].zero?
94
+
95
+ sum[:rule_score] = (100 * sum[:rule_score]) / sum[:rule_count]
96
+ sum
97
+ end
98
+
99
+ # Perform basic summation of rule results and passing tests
100
+ def rule_counts_and_score(results)
101
+ excluded_results = %w{notapplicable notchecked informational notselected}
102
+ rule_count = results.count { |r| !excluded_results.include?(r.result) }
103
+ rule_score = results.count { |r| r.result == 'pass' }
104
+
105
+ { rule_count: rule_count, rule_score: rule_score }
106
+ end
107
+
108
+ # Get all test results with the matching rule id
109
+ # @return [Array]
110
+ def test_results(id)
111
+ return [] unless @rule_results
112
+
113
+ @rule_results.select { |r| r.idref == id }
114
+ end
115
+ end
116
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: inspec_tools
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.3
4
+ version: 2.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Robert Thew
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: exe
13
13
  cert_chain: []
14
- date: 2020-05-26 00:00:00.000000000 Z
14
+ date: 2020-08-11 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: colorize
@@ -27,6 +27,20 @@ dependencies:
27
27
  - - "~>"
28
28
  - !ruby/object:Gem::Version
29
29
  version: '0'
30
+ - !ruby/object:Gem::Dependency
31
+ name: git-lite-version-bump
32
+ requirement: !ruby/object:Gem::Requirement
33
+ requirements:
34
+ - - ">="
35
+ - !ruby/object:Gem::Version
36
+ version: 0.17.3
37
+ type: :runtime
38
+ prerelease: false
39
+ version_requirements: !ruby/object:Gem::Requirement
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ version: 0.17.3
30
44
  - !ruby/object:Gem::Dependency
31
45
  name: inspec
32
46
  requirement: !ruby/object:Gem::Requirement
@@ -132,33 +146,33 @@ dependencies:
132
146
  - !ruby/object:Gem::Version
133
147
  version: '2.8'
134
148
  - !ruby/object:Gem::Dependency
135
- name: word_wrap
149
+ name: rubocop
136
150
  requirement: !ruby/object:Gem::Requirement
137
151
  requirements:
138
- - - "~>"
152
+ - - ">="
139
153
  - !ruby/object:Gem::Version
140
- version: '1.0'
154
+ version: '0'
141
155
  type: :runtime
142
156
  prerelease: false
143
157
  version_requirements: !ruby/object:Gem::Requirement
144
158
  requirements:
145
- - - "~>"
159
+ - - ">="
146
160
  - !ruby/object:Gem::Version
147
- version: '1.0'
161
+ version: '0'
148
162
  - !ruby/object:Gem::Dependency
149
- name: git-lite-version-bump
163
+ name: word_wrap
150
164
  requirement: !ruby/object:Gem::Requirement
151
165
  requirements:
152
- - - ">="
166
+ - - "~>"
153
167
  - !ruby/object:Gem::Version
154
- version: 0.17.3
168
+ version: '1.0'
155
169
  type: :runtime
156
170
  prerelease: false
157
171
  version_requirements: !ruby/object:Gem::Requirement
158
172
  requirements:
159
- - - ">="
173
+ - - "~>"
160
174
  - !ruby/object:Gem::Version
161
- version: 0.17.3
175
+ version: '1.0'
162
176
  - !ruby/object:Gem::Dependency
163
177
  name: bundler
164
178
  requirement: !ruby/object:Gem::Requirement
@@ -174,7 +188,7 @@ dependencies:
174
188
  - !ruby/object:Gem::Version
175
189
  version: '0'
176
190
  - !ruby/object:Gem::Dependency
177
- name: minitest
191
+ name: bundler-audit
178
192
  requirement: !ruby/object:Gem::Requirement
179
193
  requirements:
180
194
  - - ">="
@@ -188,7 +202,7 @@ dependencies:
188
202
  - !ruby/object:Gem::Version
189
203
  version: '0'
190
204
  - !ruby/object:Gem::Dependency
191
- name: pry
205
+ name: codeclimate-test-reporter
192
206
  requirement: !ruby/object:Gem::Requirement
193
207
  requirements:
194
208
  - - ">="
@@ -202,7 +216,7 @@ dependencies:
202
216
  - !ruby/object:Gem::Version
203
217
  version: '0'
204
218
  - !ruby/object:Gem::Dependency
205
- name: rake
219
+ name: minitest
206
220
  requirement: !ruby/object:Gem::Requirement
207
221
  requirements:
208
222
  - - ">="
@@ -216,21 +230,21 @@ dependencies:
216
230
  - !ruby/object:Gem::Version
217
231
  version: '0'
218
232
  - !ruby/object:Gem::Dependency
219
- name: codeclimate-test-reporter
233
+ name: minitest-reporters
220
234
  requirement: !ruby/object:Gem::Requirement
221
235
  requirements:
222
- - - ">="
236
+ - - "~>"
223
237
  - !ruby/object:Gem::Version
224
- version: '0'
238
+ version: '1.4'
225
239
  type: :development
226
240
  prerelease: false
227
241
  version_requirements: !ruby/object:Gem::Requirement
228
242
  requirements:
229
- - - ">="
243
+ - - "~>"
230
244
  - !ruby/object:Gem::Version
231
- version: '0'
245
+ version: '1.4'
232
246
  - !ruby/object:Gem::Dependency
233
- name: simplecov
247
+ name: pry
234
248
  requirement: !ruby/object:Gem::Requirement
235
249
  requirements:
236
250
  - - ">="
@@ -244,7 +258,7 @@ dependencies:
244
258
  - !ruby/object:Gem::Version
245
259
  version: '0'
246
260
  - !ruby/object:Gem::Dependency
247
- name: rubocop
261
+ name: rake
248
262
  requirement: !ruby/object:Gem::Requirement
249
263
  requirements:
250
264
  - - ">="
@@ -258,7 +272,7 @@ dependencies:
258
272
  - !ruby/object:Gem::Version
259
273
  version: '0'
260
274
  - !ruby/object:Gem::Dependency
261
- name: bundler-audit
275
+ name: simplecov
262
276
  requirement: !ruby/object:Gem::Requirement
263
277
  requirements:
264
278
  - - ">="
@@ -280,18 +294,18 @@ executables:
280
294
  extensions: []
281
295
  extra_rdoc_files: []
282
296
  files:
283
- - CHANGELOG.md
284
297
  - LICENSE.md
285
298
  - README.md
286
299
  - Rakefile
287
300
  - exe/inspec_tools
288
- - lib/data/NIST_Map_02052020_CIS_Controls_Version_7.1_Implementation_Groups_1.2.xlsx
289
- - lib/data/NIST_Map_09212017B_CSC-CIS_Critical_Security_Controls_VER_6.1_Excel_9.1.2016.xlsx
290
301
  - lib/data/README.TXT
291
302
  - lib/data/U_CCI_List.xml
292
303
  - lib/data/attributes.yml
293
304
  - lib/data/cci2html.xsl
305
+ - lib/data/cis_to_nist_critical_controls
306
+ - lib/data/cis_to_nist_mapping
294
307
  - lib/data/mapping.yml
308
+ - lib/data/rubocop.yml
295
309
  - lib/data/stig.csv
296
310
  - lib/data/threshold.yaml
297
311
  - lib/exceptions/impact_input_error.rb
@@ -304,6 +318,7 @@ files:
304
318
  - lib/inspec_tools/ckl.rb
305
319
  - lib/inspec_tools/cli.rb
306
320
  - lib/inspec_tools/csv.rb
321
+ - lib/inspec_tools/generate_map.rb
307
322
  - lib/inspec_tools/help.rb
308
323
  - lib/inspec_tools/help/compliance.md
309
324
  - lib/inspec_tools/help/csv2inspec.md
@@ -327,12 +342,17 @@ files:
327
342
  - lib/overrides/object.rb
328
343
  - lib/overrides/string.rb
329
344
  - lib/overrides/true_class.rb
345
+ - lib/utilities/cci_xml.rb
346
+ - lib/utilities/cis_to_nist.rb
330
347
  - lib/utilities/csv_util.rb
331
- - lib/utilities/extract_nist_cis_mapping.rb
332
348
  - lib/utilities/extract_pdf_text.rb
333
349
  - lib/utilities/inspec_util.rb
350
+ - lib/utilities/mapping_validator.rb
334
351
  - lib/utilities/parser.rb
335
352
  - lib/utilities/text_cleaner.rb
353
+ - lib/utilities/xccdf/from_inspec.rb
354
+ - lib/utilities/xccdf/to_xccdf.rb
355
+ - lib/utilities/xccdf/xccdf_score.rb
336
356
  homepage: https://inspec-tools.mitre.org/
337
357
  licenses:
338
358
  - Apache-2.0
@@ -1,704 +0,0 @@
1
- # Changelog
2
-
3
- ## [Unreleased](https://github.com/mitre/inspec_tools/tree/HEAD)
4
-
5
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v2.0.2.pre13...HEAD)
6
-
7
- **Implemented enhancements:**
8
-
9
- - Round compliance score down [\#146](https://github.com/mitre/inspec_tools/issues/146)
10
-
11
- **Fixed bugs:**
12
-
13
- - inspec\_tools docker images is not actually showing results to cli [\#183](https://github.com/mitre/inspec_tools/issues/183)
14
-
15
- **Closed issues:**
16
-
17
- - inspec\_tools docker container doesn't let me go into a bash shell [\#184](https://github.com/mitre/inspec_tools/issues/184)
18
- - Add a Dockerfile so folks can eaily add this into their ci/cd container workflows [\#162](https://github.com/mitre/inspec_tools/issues/162)
19
-
20
- **Merged pull requests:**
21
-
22
- - Every usage of Bucket and Tally uses it as a symbol, making it a symbol as part of its declaration [\#187](https://github.com/mitre/inspec_tools/pull/187) ([rbclark](https://github.com/rbclark))
23
- - Summary output [\#186](https://github.com/mitre/inspec_tools/pull/186) ([jsa5593](https://github.com/jsa5593))
24
- - Compliance score is rounded down and the README is updated [\#185](https://github.com/mitre/inspec_tools/pull/185) ([jsa5593](https://github.com/jsa5593))
25
-
26
- ## [v2.0.2.pre13](https://github.com/mitre/inspec_tools/tree/v2.0.2.pre13) (2020-05-22)
27
-
28
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v2.0.2.pre12...v2.0.2.pre13)
29
-
30
- **Implemented enhancements:**
31
-
32
- - Ruby to docker [\#181](https://github.com/mitre/inspec_tools/pull/181) ([jsa5593](https://github.com/jsa5593))
33
-
34
- **Fixed bugs:**
35
-
36
- - All Impacts Parsed from PDF are Medium [\#173](https://github.com/mitre/inspec_tools/issues/173)
37
-
38
- **Merged pull requests:**
39
-
40
- - Git version bump version 0.17.2 is broken due to a faulty regex. [\#182](https://github.com/mitre/inspec_tools/pull/182) ([rbclark](https://github.com/rbclark))
41
-
42
- ## [v2.0.2.pre12](https://github.com/mitre/inspec_tools/tree/v2.0.2.pre12) (2020-05-07)
43
-
44
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v2.0.2.pre11...v2.0.2.pre12)
45
-
46
- **Merged pull requests:**
47
-
48
- - Require a newer version of git-lite-version-bump for Windows support [\#178](https://github.com/mitre/inspec_tools/pull/178) ([rbclark](https://github.com/rbclark))
49
-
50
- ## [v2.0.2.pre11](https://github.com/mitre/inspec_tools/tree/v2.0.2.pre11) (2020-05-07)
51
-
52
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v2.0.2.pre10...v2.0.2.pre11)
53
-
54
- **Merged pull requests:**
55
-
56
- - git-lite-version-bump 0.17.0 is not compatible with Windows [\#176](https://github.com/mitre/inspec_tools/pull/176) ([rbclark](https://github.com/rbclark))
57
-
58
- ## [v2.0.2.pre10](https://github.com/mitre/inspec_tools/tree/v2.0.2.pre10) (2020-05-06)
59
-
60
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v2.0.2.pre9...v2.0.2.pre10)
61
-
62
- **Implemented enhancements:**
63
-
64
- - Standardize Severity Tag on CVSS 3.0 Terms [\#107](https://github.com/mitre/inspec_tools/issues/107)
65
-
66
- **Merged pull requests:**
67
-
68
- - Standardize Output of Severity and Impact to CVSS v3.0 terms [\#174](https://github.com/mitre/inspec_tools/pull/174) ([Bialogs](https://github.com/Bialogs))
69
-
70
- ## [v2.0.2.pre9](https://github.com/mitre/inspec_tools/tree/v2.0.2.pre9) (2020-05-04)
71
-
72
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v2.0.2.pre8...v2.0.2.pre9)
73
-
74
- **Implemented enhancements:**
75
-
76
- - Ensure the output of our converters formats with a standard of 2-space [\#140](https://github.com/mitre/inspec_tools/issues/140)
77
- - Ensure we do not create code that uses " where ' are the correct style [\#138](https://github.com/mitre/inspec_tools/issues/138)
78
-
79
- **Fixed bugs:**
80
-
81
- - Summary always returns 0 for profile errors [\#164](https://github.com/mitre/inspec_tools/issues/164)
82
- - Multiple fields missing from CKL generated with inspec2ckl [\#150](https://github.com/mitre/inspec_tools/issues/150)
83
- - update inspec2ckl to support both tag and sub-descriptions in output [\#148](https://github.com/mitre/inspec_tools/issues/148)
84
-
85
- **Merged pull requests:**
86
-
87
- - Apply fixes from CodeFactor [\#172](https://github.com/mitre/inspec_tools/pull/172) ([aaronlippold](https://github.com/aaronlippold))
88
- - Add parameter to InspecUtils\#control\_status to specify when used for summary. [\#170](https://github.com/mitre/inspec_tools/pull/170) ([Bialogs](https://github.com/Bialogs))
89
- - Generate Ruby with Single Quoted Strings [\#169](https://github.com/mitre/inspec_tools/pull/169) ([Bialogs](https://github.com/Bialogs))
90
- - Update CKL parse method to dig into sub descriptions [\#168](https://github.com/mitre/inspec_tools/pull/168) ([Bialogs](https://github.com/Bialogs))
91
-
92
- ## [v2.0.2.pre8](https://github.com/mitre/inspec_tools/tree/v2.0.2.pre8) (2020-04-30)
93
-
94
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v2.0.2.pre7...v2.0.2.pre8)
95
-
96
- **Fixed bugs:**
97
-
98
- - CCI Information is blank in CKL output [\#147](https://github.com/mitre/inspec_tools/issues/147)
99
- - STIG Viewer fails to validate CKL Schema [\#131](https://github.com/mitre/inspec_tools/issues/131)
100
-
101
- **Closed issues:**
102
-
103
- - Add integration tests to validate output Checklist against schema [\#62](https://github.com/mitre/inspec_tools/issues/62)
104
-
105
- **Merged pull requests:**
106
-
107
- - Break CCI Vuln Information into separate StigData [\#167](https://github.com/mitre/inspec_tools/pull/167) ([Bialogs](https://github.com/Bialogs))
108
- - Missing array type for replace\_tags [\#166](https://github.com/mitre/inspec_tools/pull/166) ([Didar-Bhullar](https://github.com/Didar-Bhullar))
109
- - 131 ckl schema [\#163](https://github.com/mitre/inspec_tools/pull/163) ([Bialogs](https://github.com/Bialogs))
110
-
111
- ## [v2.0.2.pre7](https://github.com/mitre/inspec_tools/tree/v2.0.2.pre7) (2020-04-28)
112
-
113
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v2.0.2.pre6...v2.0.2.pre7)
114
-
115
- **Implemented enhancements:**
116
-
117
- - Determine why we are getting odd terminal output at the end of an xccdf2inspec run [\#155](https://github.com/mitre/inspec_tools/issues/155)
118
-
119
- **Closed issues:**
120
-
121
- - Delete un-needed branches in the repo [\#157](https://github.com/mitre/inspec_tools/issues/157)
122
- - Remove guardfile [\#141](https://github.com/mitre/inspec_tools/issues/141)
123
-
124
- **Merged pull requests:**
125
-
126
- - Remove Guardfile from Specfile [\#161](https://github.com/mitre/inspec_tools/pull/161) ([Bialogs](https://github.com/Bialogs))
127
- - Updated README to standardize wording [\#160](https://github.com/mitre/inspec_tools/pull/160) ([Bialogs](https://github.com/Bialogs))
128
- - Remove guardfile [\#159](https://github.com/mitre/inspec_tools/pull/159) ([Bialogs](https://github.com/Bialogs))
129
- - Remove unnecessary debug output from xccdf2inspec [\#158](https://github.com/mitre/inspec_tools/pull/158) ([rbclark](https://github.com/rbclark))
130
-
131
- ## [v2.0.2.pre6](https://github.com/mitre/inspec_tools/tree/v2.0.2.pre6) (2020-04-28)
132
-
133
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v2.0.2.pre5...v2.0.2.pre6)
134
-
135
- **Implemented enhancements:**
136
-
137
- - Remove tag with NIST revision [\#139](https://github.com/mitre/inspec_tools/issues/139)
138
-
139
- **Fixed bugs:**
140
-
141
- - CCE- data seems to be coming into the CCI references in some XCCDF files [\#151](https://github.com/mitre/inspec_tools/issues/151)
142
- - small fix to resolve issues with CCE data in the XCCDF [\#156](https://github.com/mitre/inspec_tools/pull/156) ([aaronlippold](https://github.com/aaronlippold))
143
-
144
- **Closed issues:**
145
-
146
- - update inspec2ckl schema to the newest CKL Schema in the stig viewer 2.10 [\#149](https://github.com/mitre/inspec_tools/issues/149)
147
- - Categorize all errors the same [\#145](https://github.com/mitre/inspec_tools/issues/145)
148
-
149
- **Merged pull requests:**
150
-
151
- - Apply fixes from CodeFactor [\#153](https://github.com/mitre/inspec_tools/pull/153) ([aaronlippold](https://github.com/aaronlippold))
152
-
153
- ## [v2.0.2.pre5](https://github.com/mitre/inspec_tools/tree/v2.0.2.pre5) (2020-04-15)
154
-
155
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v2.0.1.pre4...v2.0.2.pre5)
156
-
157
- **Implemented enhancements:**
158
-
159
- - Summary Error Count [\#132](https://github.com/mitre/inspec_tools/issues/132)
160
- - change check and fix tags to sub-descriptions in xccdf2inspec [\#47](https://github.com/mitre/inspec_tools/issues/47)
161
- - merge in the `merge\_tool` [\#42](https://github.com/mitre/inspec_tools/issues/42)
162
- - InSpec 3.x Data features [\#22](https://github.com/mitre/inspec_tools/issues/22)
163
-
164
- **Merged pull requests:**
165
-
166
- - Ruby 2.6.6 and 2.7.1 update [\#143](https://github.com/mitre/inspec_tools/pull/143) ([Bialogs](https://github.com/Bialogs))
167
-
168
- ## [v2.0.1.pre4](https://github.com/mitre/inspec_tools/tree/v2.0.1.pre4) (2020-04-06)
169
-
170
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v2.0.1.pre3...v2.0.1.pre4)
171
-
172
- **Closed issues:**
173
-
174
- - consider how to convert impact 0 to Severity in inspec2ckl [\#60](https://github.com/mitre/inspec_tools/issues/60)
175
-
176
- **Merged pull requests:**
177
-
178
- - Add unit tests for XLSXTool and add system tests in CI [\#130](https://github.com/mitre/inspec_tools/pull/130) ([Bialogs](https://github.com/Bialogs))
179
- - Apply fixes from CodeFactor [\#129](https://github.com/mitre/inspec_tools/pull/129) ([aaronlippold](https://github.com/aaronlippold))
180
-
181
- ## [v2.0.1.pre3](https://github.com/mitre/inspec_tools/tree/v2.0.1.pre3) (2020-04-03)
182
-
183
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v2.0.1.pre2...v2.0.1.pre3)
184
-
185
- **Merged pull requests:**
186
-
187
- - Cleanup xlsx2inspec Process of Adding NIST and CIS Controls to Inspec Controls [\#127](https://github.com/mitre/inspec_tools/pull/127) ([Bialogs](https://github.com/Bialogs))
188
-
189
- ## [v2.0.1.pre2](https://github.com/mitre/inspec_tools/tree/v2.0.1.pre2) (2020-04-02)
190
-
191
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v2.0.1.pre1...v2.0.1.pre2)
192
-
193
- **Merged pull requests:**
194
-
195
- - Missed some references to inspec/objects [\#126](https://github.com/mitre/inspec_tools/pull/126) ([Bialogs](https://github.com/Bialogs))
196
- - Move to mitre/inspec-objects [\#125](https://github.com/mitre/inspec_tools/pull/125) ([Bialogs](https://github.com/Bialogs))
197
-
198
- ## [v2.0.1.pre1](https://github.com/mitre/inspec_tools/tree/v2.0.1.pre1) (2020-04-02)
199
-
200
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v2.0.0...v2.0.1.pre1)
201
-
202
- **Merged pull requests:**
203
-
204
- - Pull lfs objects in when building the gem. [\#124](https://github.com/mitre/inspec_tools/pull/124) ([rbclark](https://github.com/rbclark))
205
-
206
- ## [v2.0.0](https://github.com/mitre/inspec_tools/tree/v2.0.0) (2020-04-01)
207
-
208
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.8.10...v2.0.0)
209
-
210
- **Fixed bugs:**
211
-
212
- - xlsx2inspec failing to parse controls over two digits [\#117](https://github.com/mitre/inspec_tools/issues/117)
213
-
214
- **Merged pull requests:**
215
-
216
- - Update parse XLSXTool\#parse\_cis\_control to handle the case when there… [\#123](https://github.com/mitre/inspec_tools/pull/123) ([Bialogs](https://github.com/Bialogs))
217
- - Track Inspec versions \>= 4.18.100 [\#122](https://github.com/mitre/inspec_tools/pull/122) ([Bialogs](https://github.com/Bialogs))
218
- - Restructure workflow for publishing gem [\#121](https://github.com/mitre/inspec_tools/pull/121) ([rbclark](https://github.com/rbclark))
219
-
220
- ## [v1.8.10](https://github.com/mitre/inspec_tools/tree/v1.8.10) (2020-03-30)
221
-
222
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.8.9...v1.8.10)
223
-
224
- **Merged pull requests:**
225
-
226
- - added two digit contol parsing fixes \#117 [\#120](https://github.com/mitre/inspec_tools/pull/120) ([yarick](https://github.com/yarick))
227
-
228
- ## [v1.8.9](https://github.com/mitre/inspec_tools/tree/v1.8.9) (2020-03-30)
229
-
230
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.8.8...v1.8.9)
231
-
232
- **Merged pull requests:**
233
-
234
- - Fix bug in creating severity override guidance tags [\#118](https://github.com/mitre/inspec_tools/pull/118) ([Bialogs](https://github.com/Bialogs))
235
-
236
- ## [v1.8.8](https://github.com/mitre/inspec_tools/tree/v1.8.8) (2020-03-30)
237
-
238
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.8.7...v1.8.8)
239
-
240
- **Implemented enhancements:**
241
-
242
- - add a `--json-full` and `--json-counts` option to the summary command - like the cli so I can pipe to jq [\#78](https://github.com/mitre/inspec_tools/issues/78)
243
-
244
- **Merged pull requests:**
245
-
246
- - Add --json-full and --json-summary options to summary subcommand [\#116](https://github.com/mitre/inspec_tools/pull/116) ([Bialogs](https://github.com/Bialogs))
247
-
248
- ## [v1.8.7](https://github.com/mitre/inspec_tools/tree/v1.8.7) (2020-03-29)
249
-
250
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.8.6...v1.8.7)
251
-
252
- ## [v1.8.6](https://github.com/mitre/inspec_tools/tree/v1.8.6) (2020-03-27)
253
-
254
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.8.5...v1.8.6)
255
-
256
- **Closed issues:**
257
-
258
- - GitHub Actions Build Matrix [\#112](https://github.com/mitre/inspec_tools/issues/112)
259
-
260
- **Merged pull requests:**
261
-
262
- - Update build/test process to only use GitHub actions [\#115](https://github.com/mitre/inspec_tools/pull/115) ([Bialogs](https://github.com/Bialogs))
263
-
264
- ## [v1.8.5](https://github.com/mitre/inspec_tools/tree/v1.8.5) (2020-03-27)
265
-
266
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.8.4...v1.8.5)
267
-
268
- **Implemented enhancements:**
269
-
270
- - add "\# encoding: utf-8" to controls [\#54](https://github.com/mitre/inspec_tools/issues/54)
271
-
272
- **Merged pull requests:**
273
-
274
- - Add '\# encoding: UTF-8' to the top of all generated controls/\*.rb [\#114](https://github.com/mitre/inspec_tools/pull/114) ([Bialogs](https://github.com/Bialogs))
275
-
276
- ## [v1.8.4](https://github.com/mitre/inspec_tools/tree/v1.8.4) (2020-03-27)
277
-
278
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.8.3...v1.8.4)
279
-
280
- **Fixed bugs:**
281
-
282
- - \[BUG\] inspec\_tools \> 1.7.1 getting unknown encoding name - UTF-8 \(RuntimeError\) [\#110](https://github.com/mitre/inspec_tools/issues/110)
283
-
284
- **Merged pull requests:**
285
-
286
- - Reorganize overrides [\#113](https://github.com/mitre/inspec_tools/pull/113) ([Bialogs](https://github.com/Bialogs))
287
-
288
- ## [v1.8.3](https://github.com/mitre/inspec_tools/tree/v1.8.3) (2020-03-27)
289
-
290
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.8.2...v1.8.3)
291
-
292
- **Merged pull requests:**
293
-
294
- - Spaces cause interpreter not to pick up encoding correctly [\#111](https://github.com/mitre/inspec_tools/pull/111) ([Bialogs](https://github.com/Bialogs))
295
-
296
- ## [v1.8.2](https://github.com/mitre/inspec_tools/tree/v1.8.2) (2020-03-25)
297
-
298
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.8.1...v1.8.2)
299
-
300
- **Merged pull requests:**
301
-
302
- - Gemspec Dependency Updates [\#109](https://github.com/mitre/inspec_tools/pull/109) ([Bialogs](https://github.com/Bialogs))
303
-
304
- ## [v1.8.1](https://github.com/mitre/inspec_tools/tree/v1.8.1) (2020-03-24)
305
-
306
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.8.0...v1.8.1)
307
-
308
- **Closed issues:**
309
-
310
- - Please update the homepage in the gemspec to point to inspec-tools.mitre.org [\#105](https://github.com/mitre/inspec_tools/issues/105)
311
-
312
- **Merged pull requests:**
313
-
314
- - Update Gem homepage to https://inspec-tools.mitre.org/ [\#108](https://github.com/mitre/inspec_tools/pull/108) ([Bialogs](https://github.com/Bialogs))
315
-
316
- ## [v1.8.0](https://github.com/mitre/inspec_tools/tree/v1.8.0) (2020-03-24)
317
-
318
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.7.3...v1.8.0)
319
-
320
- **Closed issues:**
321
-
322
- - csv2inspec impact doesn't correct format "CAT I II III" severities [\#88](https://github.com/mitre/inspec_tools/issues/88)
323
-
324
- **Merged pull requests:**
325
-
326
- - Support conversion from CAT/Category style severities when generating an impact number. [\#106](https://github.com/mitre/inspec_tools/pull/106) ([Bialogs](https://github.com/Bialogs))
327
-
328
- ## [v1.7.3](https://github.com/mitre/inspec_tools/tree/v1.7.3) (2020-03-23)
329
-
330
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.7.2...v1.7.3)
331
-
332
- **Merged pull requests:**
333
-
334
- - Hotfix [\#104](https://github.com/mitre/inspec_tools/pull/104) ([Bialogs](https://github.com/Bialogs))
335
-
336
- ## [v1.7.2](https://github.com/mitre/inspec_tools/tree/v1.7.2) (2020-03-23)
337
-
338
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.7.1...v1.7.2)
339
-
340
- **Implemented enhancements:**
341
-
342
- - add warning in CLI if needed app is missing for pdf2inspec [\#38](https://github.com/mitre/inspec_tools/issues/38)
343
-
344
- **Merged pull requests:**
345
-
346
- - Allow pushing to any gem host to support GitHub [\#103](https://github.com/mitre/inspec_tools/pull/103) ([Bialogs](https://github.com/Bialogs))
347
-
348
- ## [v1.7.1](https://github.com/mitre/inspec_tools/tree/v1.7.1) (2020-03-23)
349
-
350
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.7.0...v1.7.1)
351
-
352
- **Merged pull requests:**
353
-
354
- - GitHub Action Workflow Updates [\#102](https://github.com/mitre/inspec_tools/pull/102) ([Bialogs](https://github.com/Bialogs))
355
-
356
- ## [v1.7.0](https://github.com/mitre/inspec_tools/tree/v1.7.0) (2020-03-20)
357
-
358
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.6.21...v1.7.0)
359
-
360
- **Implemented enhancements:**
361
-
362
- - Migrate to depend on the new inspect objects library [\#86](https://github.com/mitre/inspec_tools/issues/86)
363
-
364
- **Merged pull requests:**
365
-
366
- - Remove warnings \(\#minor\) [\#101](https://github.com/mitre/inspec_tools/pull/101) ([Bialogs](https://github.com/Bialogs))
367
-
368
- ## [v1.6.21](https://github.com/mitre/inspec_tools/tree/v1.6.21) (2020-03-20)
369
-
370
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.6.20...v1.6.21)
371
-
372
- **Implemented enhancements:**
373
-
374
- - Parse cis XSLX [\#90](https://github.com/mitre/inspec_tools/pull/90) ([lukemalinowski](https://github.com/lukemalinowski))
375
-
376
- **Closed issues:**
377
-
378
- - figure out rubygems.org [\#31](https://github.com/mitre/inspec_tools/issues/31)
379
-
380
- ## [v1.6.20](https://github.com/mitre/inspec_tools/tree/v1.6.20) (2020-03-17)
381
-
382
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.6.19...v1.6.20)
383
-
384
- **Merged pull requests:**
385
-
386
- - Rubygems release workflow [\#100](https://github.com/mitre/inspec_tools/pull/100) ([Bialogs](https://github.com/Bialogs))
387
-
388
- ## [v1.6.19](https://github.com/mitre/inspec_tools/tree/v1.6.19) (2020-03-16)
389
-
390
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.6.18...v1.6.19)
391
-
392
- **Merged pull requests:**
393
-
394
- - Update github workflows [\#99](https://github.com/mitre/inspec_tools/pull/99) ([Bialogs](https://github.com/Bialogs))
395
-
396
- ## [v1.6.18](https://github.com/mitre/inspec_tools/tree/v1.6.18) (2020-03-16)
397
-
398
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.6.17...v1.6.18)
399
-
400
- ## [v1.6.17](https://github.com/mitre/inspec_tools/tree/v1.6.17) (2020-03-13)
401
-
402
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.6.16...v1.6.17)
403
-
404
- **Fixed bugs:**
405
-
406
- - Fix VERSION file update to update the right file in the gem [\#79](https://github.com/mitre/inspec_tools/issues/79)
407
-
408
- ## [v1.6.16](https://github.com/mitre/inspec_tools/tree/v1.6.16) (2020-03-13)
409
-
410
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.6.15...v1.6.16)
411
-
412
- **Fixed bugs:**
413
-
414
- - The `changelog.md` versions seem to be broken [\#80](https://github.com/mitre/inspec_tools/issues/80)
415
- - Update version.yml regex to match multidigit version numbers and use … [\#98](https://github.com/mitre/inspec_tools/pull/98) ([Bialogs](https://github.com/Bialogs))
416
-
417
- ## [v1.6.15](https://github.com/mitre/inspec_tools/tree/v1.6.15) (2020-03-13)
418
-
419
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.6.14...v1.6.15)
420
-
421
- **Merged pull requests:**
422
-
423
- - Fix issue with CHANGELOD.md not generating because of invalid startin… [\#97](https://github.com/mitre/inspec_tools/pull/97) ([Bialogs](https://github.com/Bialogs))
424
-
425
- ## [v1.6.14](https://github.com/mitre/inspec_tools/tree/v1.6.14) (2020-03-13)
426
-
427
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.6.13...v1.6.14)
428
-
429
- **Closed issues:**
430
-
431
- - add travis to the commit/PR workflow [\#36](https://github.com/mitre/inspec_tools/issues/36)
432
-
433
- **Merged pull requests:**
434
-
435
- - Use my personal version of github-actions-x/commit until git-lfs patc… [\#96](https://github.com/mitre/inspec_tools/pull/96) ([Bialogs](https://github.com/Bialogs))
436
-
437
- ## [v1.6.13](https://github.com/mitre/inspec_tools/tree/v1.6.13) (2020-03-13)
438
-
439
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.6.12...v1.6.13)
440
-
441
- **Closed issues:**
442
-
443
- - use github\_changelog\_generator in our release process [\#33](https://github.com/mitre/inspec_tools/issues/33)
444
- - add project instructions for Changelog, contribution and issue\_template [\#32](https://github.com/mitre/inspec_tools/issues/32)
445
-
446
- **Merged pull requests:**
447
-
448
- - Enable git-lfs for this repository; tracking xls and xlsx files. [\#94](https://github.com/mitre/inspec_tools/pull/94) ([Bialogs](https://github.com/Bialogs))
449
-
450
- ## [v1.6.12](https://github.com/mitre/inspec_tools/tree/v1.6.12) (2020-03-13)
451
-
452
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.6.11...v1.6.12)
453
-
454
- **Closed issues:**
455
-
456
- - Typo in main README.md [\#89](https://github.com/mitre/inspec_tools/issues/89)
457
-
458
- **Merged pull requests:**
459
-
460
- - Fix typo in README.md, Remove development guidance in favor of a wiki… [\#93](https://github.com/mitre/inspec_tools/pull/93) ([Bialogs](https://github.com/Bialogs))
461
-
462
- ## [v1.6.11](https://github.com/mitre/inspec_tools/tree/v1.6.11) (2020-03-12)
463
-
464
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.6.10...v1.6.11)
465
-
466
- **Closed issues:**
467
-
468
- - DISA STIG web address needs to be updated [\#66](https://github.com/mitre/inspec_tools/issues/66)
469
-
470
- **Merged pull requests:**
471
-
472
- - Ignore debug generated files [\#92](https://github.com/mitre/inspec_tools/pull/92) ([Bialogs](https://github.com/Bialogs))
473
-
474
- ## [v1.6.10](https://github.com/mitre/inspec_tools/tree/v1.6.10) (2020-03-12)
475
-
476
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.6.9...v1.6.10)
477
-
478
- **Fixed bugs:**
479
-
480
- - Fix https://public.cyber.mil refernces [\#81](https://github.com/mitre/inspec_tools/pull/81) ([aaronlippold](https://github.com/aaronlippold))
481
-
482
- ## [v1.6.9](https://github.com/mitre/inspec_tools/tree/v1.6.9) (2020-03-06)
483
-
484
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.6.8...v1.6.9)
485
-
486
- ## [v1.6.8](https://github.com/mitre/inspec_tools/tree/v1.6.8) (2020-03-05)
487
-
488
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.6.7...v1.6.8)
489
-
490
- ## [v1.6.7](https://github.com/mitre/inspec_tools/tree/v1.6.7) (2020-02-11)
491
-
492
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.6.6...v1.6.7)
493
-
494
- ## [v1.6.6](https://github.com/mitre/inspec_tools/tree/v1.6.6) (2020-02-05)
495
-
496
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/53bdcb3...v1.6.6)
497
-
498
- **Fixed bugs:**
499
-
500
- - --help option is broken but inspec\_tools help \<command\> works [\#77](https://github.com/mitre/inspec_tools/issues/77)
501
- - Fixes \#77 by shifting help commands around [\#87](https://github.com/mitre/inspec_tools/pull/87) ([lukemalinowski](https://github.com/lukemalinowski))
502
-
503
- **Merged pull requests:**
504
-
505
- - Apply fixes from CodeFactor [\#82](https://github.com/mitre/inspec_tools/pull/82) ([aaronlippold](https://github.com/aaronlippold))
506
-
507
- ## [53bdcb3](https://github.com/mitre/inspec_tools/tree/53bdcb3) (2019-11-06)
508
-
509
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.6.4...53bdcb3)
510
-
511
- **Fixed bugs:**
512
-
513
- - --version and -v are broken [\#76](https://github.com/mitre/inspec_tools/issues/76)
514
-
515
- **Closed issues:**
516
-
517
- - Logic fix [\#83](https://github.com/mitre/inspec_tools/issues/83)
518
-
519
- **Merged pull requests:**
520
-
521
- - Fixes \#83 [\#85](https://github.com/mitre/inspec_tools/pull/85) ([aaronlippold](https://github.com/aaronlippold))
522
- - Fixes \#76 by editing version number [\#84](https://github.com/mitre/inspec_tools/pull/84) ([lukemalinowski](https://github.com/lukemalinowski))
523
-
524
- ## [v1.6.4](https://github.com/mitre/inspec_tools/tree/v1.6.4) (2019-11-05)
525
-
526
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.6.3...v1.6.4)
527
-
528
- ## [v1.6.3](https://github.com/mitre/inspec_tools/tree/v1.6.3) (2019-11-05)
529
-
530
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.6.5...v1.6.3)
531
-
532
- ## [v1.6.5](https://github.com/mitre/inspec_tools/tree/v1.6.5) (2019-11-05)
533
-
534
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.6.2...v1.6.5)
535
-
536
- ## [v1.6.2](https://github.com/mitre/inspec_tools/tree/v1.6.2) (2019-11-05)
537
-
538
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.6.1...v1.6.2)
539
-
540
- ## [v1.6.1](https://github.com/mitre/inspec_tools/tree/v1.6.1) (2019-11-05)
541
-
542
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.6.0...v1.6.1)
543
-
544
- **Merged pull requests:**
545
-
546
- - Update Profile logic include control exceptions [\#75](https://github.com/mitre/inspec_tools/pull/75) ([rx294](https://github.com/rx294))
547
- - Null Byte in json report causes inspec2ckl to bomb-out [\#73](https://github.com/mitre/inspec_tools/pull/73) ([kevin-j-smith](https://github.com/kevin-j-smith))
548
- - Add in 'inspec' and 'fileutils' require statements [\#65](https://github.com/mitre/inspec_tools/pull/65) ([samcornwell](https://github.com/samcornwell))
549
-
550
- ## [v1.6.0](https://github.com/mitre/inspec_tools/tree/v1.6.0) (2019-10-04)
551
-
552
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.5.0...v1.6.0)
553
-
554
- **Closed issues:**
555
-
556
- - Updated logic for results metrics [\#74](https://github.com/mitre/inspec_tools/issues/74)
557
-
558
- ## [v1.5.0](https://github.com/mitre/inspec_tools/tree/v1.5.0) (2019-09-10)
559
-
560
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.4.2...v1.5.0)
561
-
562
- **Closed issues:**
563
-
564
- - Feature Enhancement: Inspec command plugin for inspec\_tools [\#67](https://github.com/mitre/inspec_tools/issues/67)
565
-
566
- **Merged pull requests:**
567
-
568
- - Kevin j smith adding inspec command plugin logic [\#72](https://github.com/mitre/inspec_tools/pull/72) ([lukemalinowski](https://github.com/lukemalinowski))
569
- - Added logic so that inspec\_tools can be a plugin to Inspec as a comma… [\#68](https://github.com/mitre/inspec_tools/pull/68) ([kevin-j-smith](https://github.com/kevin-j-smith))
570
-
571
- ## [v1.4.2](https://github.com/mitre/inspec_tools/tree/v1.4.2) (2019-07-30)
572
-
573
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.4.1...v1.4.2)
574
-
575
- **Closed issues:**
576
-
577
- - Add additional option for Summary command [\#64](https://github.com/mitre/inspec_tools/issues/64)
578
- - `insert\_json\_metadata': undefined method `version' for nil:NilClass [\#63](https://github.com/mitre/inspec_tools/issues/63)
579
-
580
- **Merged pull requests:**
581
-
582
- - Updated rake version [\#69](https://github.com/mitre/inspec_tools/pull/69) ([robthew](https://github.com/robthew))
583
-
584
- ## [v1.4.1](https://github.com/mitre/inspec_tools/tree/v1.4.1) (2019-06-20)
585
-
586
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.4.0...v1.4.1)
587
-
588
- ## [v1.4.0](https://github.com/mitre/inspec_tools/tree/v1.4.0) (2019-05-17)
589
-
590
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.3.6...v1.4.0)
591
-
592
- **Merged pull requests:**
593
-
594
- - Apply fixes from CodeFactor [\#61](https://github.com/mitre/inspec_tools/pull/61) ([aaronlippold](https://github.com/aaronlippold))
595
-
596
- ## [v1.3.6](https://github.com/mitre/inspec_tools/tree/v1.3.6) (2019-05-02)
597
-
598
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.3.5...v1.3.6)
599
-
600
- **Implemented enhancements:**
601
-
602
- - document new metadata.json file and creation of file in README.md [\#53](https://github.com/mitre/inspec_tools/issues/53)
603
- - remove 'severity' from conversion [\#57](https://github.com/mitre/inspec_tools/pull/57) ([aaronlippold](https://github.com/aaronlippold))
604
-
605
- **Closed issues:**
606
-
607
- - While working with STIGViewer there were some missing TAGs [\#50](https://github.com/mitre/inspec_tools/issues/50)
608
- - remove severity tag in xccdf to inspec converted [\#44](https://github.com/mitre/inspec_tools/issues/44)
609
-
610
- ## [v1.3.5](https://github.com/mitre/inspec_tools/tree/v1.3.5) (2019-05-01)
611
-
612
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.3.4...v1.3.5)
613
-
614
- ## [v1.3.4](https://github.com/mitre/inspec_tools/tree/v1.3.4) (2019-05-01)
615
-
616
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.1.6...v1.3.4)
617
-
618
- **Closed issues:**
619
-
620
- - Needed app is missing [\#49](https://github.com/mitre/inspec_tools/issues/49)
621
- - 2018 b79e5c3 [\#48](https://github.com/mitre/inspec_tools/issues/48)
622
-
623
- **Merged pull requests:**
624
-
625
- - Metadata docs and tools [\#55](https://github.com/mitre/inspec_tools/pull/55) ([samcornwell](https://github.com/samcornwell))
626
- - Fix bugs introduced by \#51 \(STIGViewer PR\) [\#52](https://github.com/mitre/inspec_tools/pull/52) ([samcornwell](https://github.com/samcornwell))
627
- - Enhancements to meet working with STIGViewer as well as tracking some custom metadata when converting from xccdf2inspec and inspec2ckl [\#51](https://github.com/mitre/inspec_tools/pull/51) ([kevin-j-smith](https://github.com/kevin-j-smith))
628
- - Add modules summary, compliance [\#45](https://github.com/mitre/inspec_tools/pull/45) ([rx294](https://github.com/rx294))
629
-
630
- ## [v1.1.6](https://github.com/mitre/inspec_tools/tree/v1.1.6) (2018-12-13)
631
-
632
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.1.5...v1.1.6)
633
-
634
- ## [v1.1.5](https://github.com/mitre/inspec_tools/tree/v1.1.5) (2018-12-11)
635
-
636
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.1.2...v1.1.5)
637
-
638
- **Implemented enhancements:**
639
-
640
- - Add help for the gem usage and or ruby usage [\#7](https://github.com/mitre/inspec_tools/issues/7)
641
- - add sub-help command output to match README and document each function [\#6](https://github.com/mitre/inspec_tools/issues/6)
642
-
643
- **Closed issues:**
644
-
645
- - add rubocop integration or PRs [\#34](https://github.com/mitre/inspec_tools/issues/34)
646
- - Do we want to expose the --cci flag in the example as it is now not needed by default given it is in the /data directory [\#29](https://github.com/mitre/inspec_tools/issues/29)
647
- - fix the subcommands help so it works as expected [\#28](https://github.com/mitre/inspec_tools/issues/28)
648
- - THOR CLI: xccdf2inspec for example was giving me a hard time about the order of -x or --xccdf or --cci or -c and the order they were in - the docs on it seems to give two sets of directions [\#27](https://github.com/mitre/inspec_tools/issues/27)
649
- - do we have to do anything special for including CIS Benchmarks? [\#21](https://github.com/mitre/inspec_tools/issues/21)
650
- - clean up debug statements [\#20](https://github.com/mitre/inspec_tools/issues/20)
651
- - Give attribution for files in /data [\#19](https://github.com/mitre/inspec_tools/issues/19)
652
- - add copyright statements if necessary [\#15](https://github.com/mitre/inspec_tools/issues/15)
653
- - check /examples/sample\_json to see if any of the results are sensitive [\#14](https://github.com/mitre/inspec_tools/issues/14)
654
-
655
- **Merged pull requests:**
656
-
657
- - replaced docsplit with pdf-reader [\#43](https://github.com/mitre/inspec_tools/pull/43) ([robthew](https://github.com/robthew))
658
- - Updated remove dir statement [\#41](https://github.com/mitre/inspec_tools/pull/41) ([robthew](https://github.com/robthew))
659
- - Added appveyor config [\#40](https://github.com/mitre/inspec_tools/pull/40) ([robthew](https://github.com/robthew))
660
- - Travis test [\#39](https://github.com/mitre/inspec_tools/pull/39) ([robthew](https://github.com/robthew))
661
- - Add rubocop to the process [\#35](https://github.com/mitre/inspec_tools/pull/35) ([aaronlippold](https://github.com/aaronlippold))
662
- - \* added refernces to external data sources [\#30](https://github.com/mitre/inspec_tools/pull/30) ([aaronlippold](https://github.com/aaronlippold))
663
-
664
- ## [v1.1.2](https://github.com/mitre/inspec_tools/tree/v1.1.2) (2018-11-08)
665
-
666
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.1.1...v1.1.2)
667
-
668
- ## [v1.1.1](https://github.com/mitre/inspec_tools/tree/v1.1.1) (2018-11-08)
669
-
670
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.1.0...v1.1.1)
671
-
672
- ## [v1.1.0](https://github.com/mitre/inspec_tools/tree/v1.1.0) (2018-11-08)
673
-
674
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/85b69b32277ea43f95b09eee00e9f7b84c62dfff...v1.1.0)
675
-
676
- **Fixed bugs:**
677
-
678
- - Remove unneeded `exe` dir if we are going to standardize on `bin`and update the `.gemspec` file [\#25](https://github.com/mitre/inspec_tools/issues/25)
679
-
680
- **Closed issues:**
681
-
682
- - when you When build the gem and install it - the command `inspec\_tools` does not seem to install into the path [\#26](https://github.com/mitre/inspec_tools/issues/26)
683
- - Add MITRE Copyright to the end of the README.md [\#23](https://github.com/mitre/inspec_tools/issues/23)
684
- - Update email addresses to MITRE addresses [\#18](https://github.com/mitre/inspec_tools/issues/18)
685
- - update readme.md [\#17](https://github.com/mitre/inspec_tools/issues/17)
686
- - update inspec\_tools.gemspec [\#16](https://github.com/mitre/inspec_tools/issues/16)
687
- - update license to apache 2.0 [\#13](https://github.com/mitre/inspec_tools/issues/13)
688
- - Separate Files defaults to \[False\] [\#10](https://github.com/mitre/inspec_tools/issues/10)
689
- - Rename repository to 'inspec\_tools' [\#9](https://github.com/mitre/inspec_tools/issues/9)
690
-
691
- **Merged pull requests:**
692
-
693
- - Cleanup Debug Statetements [\#12](https://github.com/mitre/inspec_tools/pull/12) ([yarick](https://github.com/yarick))
694
- - Change default separated\_files setting to default to true [\#11](https://github.com/mitre/inspec_tools/pull/11) ([yarick](https://github.com/yarick))
695
- - Cleanup [\#8](https://github.com/mitre/inspec_tools/pull/8) ([robthew](https://github.com/robthew))
696
- - Unification [\#5](https://github.com/mitre/inspec_tools/pull/5) ([dromazmj](https://github.com/dromazmj))
697
- - \* Adds functionality for inspec2csv [\#4](https://github.com/mitre/inspec_tools/pull/4) ([dromazmj](https://github.com/dromazmj))
698
- - Md/pdf [\#3](https://github.com/mitre/inspec_tools/pull/3) ([dromazmj](https://github.com/dromazmj))
699
- - Md/csv2inspec [\#2](https://github.com/mitre/inspec_tools/pull/2) ([dromazmj](https://github.com/dromazmj))
700
- - Writes code in the inspec util to output an inspec json to a directory [\#1](https://github.com/mitre/inspec_tools/pull/1) ([dromazmj](https://github.com/dromazmj))
701
-
702
-
703
-
704
- \* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*