inspec_tools 2.0.2.pre13 → 2.0.7

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.
@@ -140,6 +140,7 @@ module InspecTools
140
140
  control['tags']['documentable'] = group.rule.description.documentable if group.rule.description.documentable != ''
141
141
  control['tags']['mitigations'] = group.rule.description.false_negatives if group.rule.description.mitigations != ''
142
142
  control['tags']['severity_override_guidance'] = group.rule.description.severity_override_guidance if group.rule.description.severity_override_guidance != ''
143
+ control['tags']['security_override_guidance'] = group.rule.description.security_override_guidance if group.rule.description.security_override_guidance != ''
143
144
  control['tags']['potential_impacts'] = group.rule.description.potential_impacts if group.rule.description.potential_impacts != ''
144
145
  control['tags']['third_party_tools'] = group.rule.description.third_party_tools if group.rule.description.third_party_tools != ''
145
146
  control['tags']['mitigation_controls'] = group.rule.description.mitigation_controls if group.rule.description.mitigation_controls != ''
@@ -3,9 +3,9 @@ require 'inspec-objects'
3
3
  require 'word_wrap'
4
4
  require 'yaml'
5
5
  require 'digest'
6
- require 'roo'
7
6
 
8
7
  require_relative '../utilities/inspec_util'
8
+ require_relative '../utilities/cis_to_nist'
9
9
 
10
10
  # rubocop:disable Metrics/AbcSize
11
11
  # rubocop:disable Metrics/PerceivedComplexity
@@ -14,7 +14,6 @@ require_relative '../utilities/inspec_util'
14
14
  module InspecTools
15
15
  # Methods for converting from XLS to various formats
16
16
  class XLSXTool
17
- CIS_2_NIST_XLSX = Roo::Spreadsheet.open(File.join(File.dirname(__FILE__), '../data/NIST_Map_02052020_CIS_Controls_Version_7.1_Implementation_Groups_1.2.xlsx'))
18
17
  LATEST_NIST_REV = 'Rev_4'.freeze
19
18
 
20
19
  def initialize(xlsx, mapping, name, verbose = false)
@@ -22,7 +21,7 @@ module InspecTools
22
21
  @xlsx = xlsx
23
22
  @mapping = mapping
24
23
  @verbose = verbose
25
- @cis_to_nist = get_cis_to_nist_control_mapping(CIS_2_NIST_XLSX)
24
+ @cis_to_nist = Utils::CisToNist.get_mapping('cis_to_nist_mapping')
26
25
  end
27
26
 
28
27
  def to_ckl
@@ -46,18 +45,6 @@ module InspecTools
46
45
 
47
46
  private
48
47
 
49
- def get_cis_to_nist_control_mapping(spreadsheet)
50
- cis_to_nist = {}
51
- spreadsheet.sheet(3).each do |row|
52
- if row[3].is_a? Numeric
53
- cis_to_nist[row[3].to_s] = row[0]
54
- else
55
- cis_to_nist[row[2].to_s] = row[0] unless (row[2] == '') || row[2].to_i.nil?
56
- end
57
- end
58
- cis_to_nist
59
- end
60
-
61
48
  def insert_json_metadata
62
49
  @profile['name'] = @name
63
50
  @profile['title'] = 'InSpec Profile'
@@ -0,0 +1,11 @@
1
+ module Utils
2
+ class CisToNist
3
+ def self.get_mapping(mapping_file)
4
+ path = File.expand_path(File.join(File.expand_path(__dir__), '..', 'data', mapping_file))
5
+ raise "CIS to NIST control mapping does not exist at #{path}. Has it been generated?" unless File.exist?(path)
6
+
7
+ mapping = File.open(path)
8
+ Marshal.load(mapping)
9
+ end
10
+ end
11
+ end
@@ -11,6 +11,7 @@ require 'overrides/true_class'
11
11
  require 'overrides/nil_class'
12
12
  require 'overrides/object'
13
13
  require 'overrides/string'
14
+ require 'rubocop'
14
15
 
15
16
  # rubocop:disable Metrics/ClassLength
16
17
  # rubocop:disable Metrics/AbcSize
@@ -314,6 +315,7 @@ module Utils
314
315
  control.add_tag(::Inspec::Object::Tag.new('documentable', json_control['tags']['documentable'])) unless json_control['tags']['documentable'].blank?
315
316
  control.add_tag(::Inspec::Object::Tag.new('mitigations', json_control['tags']['mitigations'])) unless json_control['tags']['mitigations'].blank?
316
317
  control.add_tag(::Inspec::Object::Tag.new('severity_override_guidance', json_control['tags']['severity_override_guidance'])) unless json_control['tags']['severity_override_guidance'].blank?
318
+ control.add_tag(::Inspec::Object::Tag.new('security_override_guidance', json_control['tags']['security_override_guidance'])) unless json_control['tags']['security_override_guidance'].blank?
317
319
  control.add_tag(::Inspec::Object::Tag.new('potential_impacts', json_control['tags']['potential_impacts'])) unless json_control['tags']['potential_impacts'].blank?
318
320
  control.add_tag(::Inspec::Object::Tag.new('third_party_tools', json_control['tags']['third_party_tools'])) unless json_control['tags']['third_party_tools'].blank?
319
321
  control.add_tag(::Inspec::Object::Tag.new('mitigation_controls', json_control['tags']['mitigation_controls'])) unless json_control['tags']['mitigation_controls'].blank?
@@ -393,7 +395,7 @@ module Utils
393
395
  file_name = control.id.to_s
394
396
  myfile = File.new("#{directory}/controls/#{file_name}.rb", 'w')
395
397
  myfile.puts "# encoding: UTF-8\n\n"
396
- myfile.puts wrap(control.to_ruby.gsub('"', "\'"), WIDTH) + "\n"
398
+ myfile.puts wrap(control.to_ruby, WIDTH) + "\n"
397
399
  myfile.close
398
400
  end
399
401
  else
@@ -424,6 +426,10 @@ module Utils
424
426
  end
425
427
  myfile.close
426
428
  end
429
+ config_store = ::RuboCop::ConfigStore.new
430
+ config_store.options_config = File.join(File.dirname(__FILE__), '../data/rubocop.yml')
431
+ rubocop = ::RuboCop::Runner.new({ auto_correct: true }, config_store)
432
+ rubocop.run([directory])
427
433
  end
428
434
  end
429
435
  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.2.pre13
4
+ version: 2.0.7
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-22 00:00:00.000000000 Z
14
+ date: 2020-07-21 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: colorize
@@ -160,13 +160,13 @@ dependencies:
160
160
  - !ruby/object:Gem::Version
161
161
  version: 0.17.3
162
162
  - !ruby/object:Gem::Dependency
163
- name: bundler
163
+ name: rubocop
164
164
  requirement: !ruby/object:Gem::Requirement
165
165
  requirements:
166
166
  - - ">="
167
167
  - !ruby/object:Gem::Version
168
168
  version: '0'
169
- type: :development
169
+ type: :runtime
170
170
  prerelease: false
171
171
  version_requirements: !ruby/object:Gem::Requirement
172
172
  requirements:
@@ -174,7 +174,7 @@ dependencies:
174
174
  - !ruby/object:Gem::Version
175
175
  version: '0'
176
176
  - !ruby/object:Gem::Dependency
177
- name: minitest
177
+ name: bundler
178
178
  requirement: !ruby/object:Gem::Requirement
179
179
  requirements:
180
180
  - - ">="
@@ -188,7 +188,7 @@ dependencies:
188
188
  - !ruby/object:Gem::Version
189
189
  version: '0'
190
190
  - !ruby/object:Gem::Dependency
191
- name: pry
191
+ name: minitest
192
192
  requirement: !ruby/object:Gem::Requirement
193
193
  requirements:
194
194
  - - ">="
@@ -202,7 +202,7 @@ dependencies:
202
202
  - !ruby/object:Gem::Version
203
203
  version: '0'
204
204
  - !ruby/object:Gem::Dependency
205
- name: rake
205
+ name: pry
206
206
  requirement: !ruby/object:Gem::Requirement
207
207
  requirements:
208
208
  - - ">="
@@ -216,7 +216,7 @@ dependencies:
216
216
  - !ruby/object:Gem::Version
217
217
  version: '0'
218
218
  - !ruby/object:Gem::Dependency
219
- name: codeclimate-test-reporter
219
+ name: rake
220
220
  requirement: !ruby/object:Gem::Requirement
221
221
  requirements:
222
222
  - - ">="
@@ -230,7 +230,7 @@ dependencies:
230
230
  - !ruby/object:Gem::Version
231
231
  version: '0'
232
232
  - !ruby/object:Gem::Dependency
233
- name: simplecov
233
+ name: codeclimate-test-reporter
234
234
  requirement: !ruby/object:Gem::Requirement
235
235
  requirements:
236
236
  - - ">="
@@ -244,7 +244,7 @@ dependencies:
244
244
  - !ruby/object:Gem::Version
245
245
  version: '0'
246
246
  - !ruby/object:Gem::Dependency
247
- name: rubocop
247
+ name: simplecov
248
248
  requirement: !ruby/object:Gem::Requirement
249
249
  requirements:
250
250
  - - ">="
@@ -280,18 +280,18 @@ executables:
280
280
  extensions: []
281
281
  extra_rdoc_files: []
282
282
  files:
283
- - CHANGELOG.md
284
283
  - LICENSE.md
285
284
  - README.md
286
285
  - Rakefile
287
286
  - 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
287
  - lib/data/README.TXT
291
288
  - lib/data/U_CCI_List.xml
292
289
  - lib/data/attributes.yml
293
290
  - lib/data/cci2html.xsl
291
+ - lib/data/cis_to_nist_critical_controls
292
+ - lib/data/cis_to_nist_mapping
294
293
  - lib/data/mapping.yml
294
+ - lib/data/rubocop.yml
295
295
  - lib/data/stig.csv
296
296
  - lib/data/threshold.yaml
297
297
  - lib/exceptions/impact_input_error.rb
@@ -327,8 +327,8 @@ files:
327
327
  - lib/overrides/object.rb
328
328
  - lib/overrides/string.rb
329
329
  - lib/overrides/true_class.rb
330
+ - lib/utilities/cis_to_nist.rb
330
331
  - lib/utilities/csv_util.rb
331
- - lib/utilities/extract_nist_cis_mapping.rb
332
332
  - lib/utilities/extract_pdf_text.rb
333
333
  - lib/utilities/inspec_util.rb
334
334
  - lib/utilities/parser.rb
@@ -348,9 +348,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
348
348
  version: '2.5'
349
349
  required_rubygems_version: !ruby/object:Gem::Requirement
350
350
  requirements:
351
- - - ">"
351
+ - - ">="
352
352
  - !ruby/object:Gem::Version
353
- version: 1.3.1
353
+ version: '0'
354
354
  requirements: []
355
355
  rubygems_version: 3.1.2
356
356
  signing_key:
@@ -1,678 +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.pre12...HEAD)
6
-
7
- **Implemented enhancements:**
8
-
9
- - Ruby to docker [\#181](https://github.com/mitre/inspec_tools/pull/181) ([jsa5593](https://github.com/jsa5593))
10
-
11
- **Fixed bugs:**
12
-
13
- - All Impacts Parsed from PDF are Medium [\#173](https://github.com/mitre/inspec_tools/issues/173)
14
-
15
- **Merged pull requests:**
16
-
17
- - 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))
18
-
19
- ## [v2.0.2.pre12](https://github.com/mitre/inspec_tools/tree/v2.0.2.pre12) (2020-05-07)
20
-
21
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v2.0.2.pre11...v2.0.2.pre12)
22
-
23
- **Merged pull requests:**
24
-
25
- - 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))
26
-
27
- ## [v2.0.2.pre11](https://github.com/mitre/inspec_tools/tree/v2.0.2.pre11) (2020-05-07)
28
-
29
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v2.0.2.pre10...v2.0.2.pre11)
30
-
31
- **Merged pull requests:**
32
-
33
- - 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))
34
-
35
- ## [v2.0.2.pre10](https://github.com/mitre/inspec_tools/tree/v2.0.2.pre10) (2020-05-06)
36
-
37
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v2.0.2.pre9...v2.0.2.pre10)
38
-
39
- **Implemented enhancements:**
40
-
41
- - Standardize Severity Tag on CVSS 3.0 Terms [\#107](https://github.com/mitre/inspec_tools/issues/107)
42
-
43
- **Merged pull requests:**
44
-
45
- - 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))
46
-
47
- ## [v2.0.2.pre9](https://github.com/mitre/inspec_tools/tree/v2.0.2.pre9) (2020-05-04)
48
-
49
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v2.0.2.pre8...v2.0.2.pre9)
50
-
51
- **Implemented enhancements:**
52
-
53
- - Ensure the output of our converters formats with a standard of 2-space [\#140](https://github.com/mitre/inspec_tools/issues/140)
54
- - Ensure we do not create code that uses " where ' are the correct style [\#138](https://github.com/mitre/inspec_tools/issues/138)
55
-
56
- **Fixed bugs:**
57
-
58
- - Summary always returns 0 for profile errors [\#164](https://github.com/mitre/inspec_tools/issues/164)
59
- - Multiple fields missing from CKL generated with inspec2ckl [\#150](https://github.com/mitre/inspec_tools/issues/150)
60
- - update inspec2ckl to support both tag and sub-descriptions in output [\#148](https://github.com/mitre/inspec_tools/issues/148)
61
-
62
- **Merged pull requests:**
63
-
64
- - Apply fixes from CodeFactor [\#172](https://github.com/mitre/inspec_tools/pull/172) ([aaronlippold](https://github.com/aaronlippold))
65
- - 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))
66
- - Generate Ruby with Single Quoted Strings [\#169](https://github.com/mitre/inspec_tools/pull/169) ([Bialogs](https://github.com/Bialogs))
67
- - Update CKL parse method to dig into sub descriptions [\#168](https://github.com/mitre/inspec_tools/pull/168) ([Bialogs](https://github.com/Bialogs))
68
-
69
- ## [v2.0.2.pre8](https://github.com/mitre/inspec_tools/tree/v2.0.2.pre8) (2020-04-30)
70
-
71
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v2.0.2.pre7...v2.0.2.pre8)
72
-
73
- **Fixed bugs:**
74
-
75
- - CCI Information is blank in CKL output [\#147](https://github.com/mitre/inspec_tools/issues/147)
76
- - STIG Viewer fails to validate CKL Schema [\#131](https://github.com/mitre/inspec_tools/issues/131)
77
-
78
- **Closed issues:**
79
-
80
- - Add integration tests to validate output Checklist against schema [\#62](https://github.com/mitre/inspec_tools/issues/62)
81
-
82
- **Merged pull requests:**
83
-
84
- - Break CCI Vuln Information into separate StigData [\#167](https://github.com/mitre/inspec_tools/pull/167) ([Bialogs](https://github.com/Bialogs))
85
- - Missing array type for replace\_tags [\#166](https://github.com/mitre/inspec_tools/pull/166) ([Didar-Bhullar](https://github.com/Didar-Bhullar))
86
- - 131 ckl schema [\#163](https://github.com/mitre/inspec_tools/pull/163) ([Bialogs](https://github.com/Bialogs))
87
-
88
- ## [v2.0.2.pre7](https://github.com/mitre/inspec_tools/tree/v2.0.2.pre7) (2020-04-28)
89
-
90
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v2.0.2.pre6...v2.0.2.pre7)
91
-
92
- **Implemented enhancements:**
93
-
94
- - Determine why we are getting odd terminal output at the end of an xccdf2inspec run [\#155](https://github.com/mitre/inspec_tools/issues/155)
95
-
96
- **Closed issues:**
97
-
98
- - Delete un-needed branches in the repo [\#157](https://github.com/mitre/inspec_tools/issues/157)
99
- - Remove guardfile [\#141](https://github.com/mitre/inspec_tools/issues/141)
100
-
101
- **Merged pull requests:**
102
-
103
- - Remove Guardfile from Specfile [\#161](https://github.com/mitre/inspec_tools/pull/161) ([Bialogs](https://github.com/Bialogs))
104
- - Updated README to standardize wording [\#160](https://github.com/mitre/inspec_tools/pull/160) ([Bialogs](https://github.com/Bialogs))
105
- - Remove guardfile [\#159](https://github.com/mitre/inspec_tools/pull/159) ([Bialogs](https://github.com/Bialogs))
106
- - Remove unnecessary debug output from xccdf2inspec [\#158](https://github.com/mitre/inspec_tools/pull/158) ([rbclark](https://github.com/rbclark))
107
-
108
- ## [v2.0.2.pre6](https://github.com/mitre/inspec_tools/tree/v2.0.2.pre6) (2020-04-28)
109
-
110
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v2.0.2.pre5...v2.0.2.pre6)
111
-
112
- **Implemented enhancements:**
113
-
114
- - Remove tag with NIST revision [\#139](https://github.com/mitre/inspec_tools/issues/139)
115
-
116
- **Fixed bugs:**
117
-
118
- - CCE- data seems to be coming into the CCI references in some XCCDF files [\#151](https://github.com/mitre/inspec_tools/issues/151)
119
- - 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))
120
-
121
- **Closed issues:**
122
-
123
- - update inspec2ckl schema to the newest CKL Schema in the stig viewer 2.10 [\#149](https://github.com/mitre/inspec_tools/issues/149)
124
- - Categorize all errors the same [\#145](https://github.com/mitre/inspec_tools/issues/145)
125
-
126
- **Merged pull requests:**
127
-
128
- - Apply fixes from CodeFactor [\#153](https://github.com/mitre/inspec_tools/pull/153) ([aaronlippold](https://github.com/aaronlippold))
129
-
130
- ## [v2.0.2.pre5](https://github.com/mitre/inspec_tools/tree/v2.0.2.pre5) (2020-04-15)
131
-
132
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v2.0.1.pre4...v2.0.2.pre5)
133
-
134
- **Implemented enhancements:**
135
-
136
- - Summary Error Count [\#132](https://github.com/mitre/inspec_tools/issues/132)
137
- - change check and fix tags to sub-descriptions in xccdf2inspec [\#47](https://github.com/mitre/inspec_tools/issues/47)
138
- - merge in the `merge\_tool` [\#42](https://github.com/mitre/inspec_tools/issues/42)
139
- - InSpec 3.x Data features [\#22](https://github.com/mitre/inspec_tools/issues/22)
140
-
141
- **Merged pull requests:**
142
-
143
- - Ruby 2.6.6 and 2.7.1 update [\#143](https://github.com/mitre/inspec_tools/pull/143) ([Bialogs](https://github.com/Bialogs))
144
-
145
- ## [v2.0.1.pre4](https://github.com/mitre/inspec_tools/tree/v2.0.1.pre4) (2020-04-06)
146
-
147
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v2.0.1.pre3...v2.0.1.pre4)
148
-
149
- **Closed issues:**
150
-
151
- - consider how to convert impact 0 to Severity in inspec2ckl [\#60](https://github.com/mitre/inspec_tools/issues/60)
152
-
153
- **Merged pull requests:**
154
-
155
- - 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))
156
- - Apply fixes from CodeFactor [\#129](https://github.com/mitre/inspec_tools/pull/129) ([aaronlippold](https://github.com/aaronlippold))
157
-
158
- ## [v2.0.1.pre3](https://github.com/mitre/inspec_tools/tree/v2.0.1.pre3) (2020-04-03)
159
-
160
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v2.0.1.pre2...v2.0.1.pre3)
161
-
162
- **Merged pull requests:**
163
-
164
- - 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))
165
-
166
- ## [v2.0.1.pre2](https://github.com/mitre/inspec_tools/tree/v2.0.1.pre2) (2020-04-02)
167
-
168
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v2.0.1.pre1...v2.0.1.pre2)
169
-
170
- **Merged pull requests:**
171
-
172
- - Missed some references to inspec/objects [\#126](https://github.com/mitre/inspec_tools/pull/126) ([Bialogs](https://github.com/Bialogs))
173
- - Move to mitre/inspec-objects [\#125](https://github.com/mitre/inspec_tools/pull/125) ([Bialogs](https://github.com/Bialogs))
174
-
175
- ## [v2.0.1.pre1](https://github.com/mitre/inspec_tools/tree/v2.0.1.pre1) (2020-04-02)
176
-
177
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v2.0.0...v2.0.1.pre1)
178
-
179
- **Merged pull requests:**
180
-
181
- - Pull lfs objects in when building the gem. [\#124](https://github.com/mitre/inspec_tools/pull/124) ([rbclark](https://github.com/rbclark))
182
-
183
- ## [v2.0.0](https://github.com/mitre/inspec_tools/tree/v2.0.0) (2020-04-01)
184
-
185
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.8.10...v2.0.0)
186
-
187
- **Fixed bugs:**
188
-
189
- - xlsx2inspec failing to parse controls over two digits [\#117](https://github.com/mitre/inspec_tools/issues/117)
190
-
191
- **Merged pull requests:**
192
-
193
- - 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))
194
- - Track Inspec versions \>= 4.18.100 [\#122](https://github.com/mitre/inspec_tools/pull/122) ([Bialogs](https://github.com/Bialogs))
195
- - Restructure workflow for publishing gem [\#121](https://github.com/mitre/inspec_tools/pull/121) ([rbclark](https://github.com/rbclark))
196
-
197
- ## [v1.8.10](https://github.com/mitre/inspec_tools/tree/v1.8.10) (2020-03-30)
198
-
199
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.8.9...v1.8.10)
200
-
201
- **Merged pull requests:**
202
-
203
- - added two digit contol parsing fixes \#117 [\#120](https://github.com/mitre/inspec_tools/pull/120) ([yarick](https://github.com/yarick))
204
-
205
- ## [v1.8.9](https://github.com/mitre/inspec_tools/tree/v1.8.9) (2020-03-30)
206
-
207
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.8.8...v1.8.9)
208
-
209
- **Merged pull requests:**
210
-
211
- - Fix bug in creating severity override guidance tags [\#118](https://github.com/mitre/inspec_tools/pull/118) ([Bialogs](https://github.com/Bialogs))
212
-
213
- ## [v1.8.8](https://github.com/mitre/inspec_tools/tree/v1.8.8) (2020-03-30)
214
-
215
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.8.7...v1.8.8)
216
-
217
- **Implemented enhancements:**
218
-
219
- - 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)
220
-
221
- **Merged pull requests:**
222
-
223
- - Add --json-full and --json-summary options to summary subcommand [\#116](https://github.com/mitre/inspec_tools/pull/116) ([Bialogs](https://github.com/Bialogs))
224
-
225
- ## [v1.8.7](https://github.com/mitre/inspec_tools/tree/v1.8.7) (2020-03-29)
226
-
227
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.8.6...v1.8.7)
228
-
229
- ## [v1.8.6](https://github.com/mitre/inspec_tools/tree/v1.8.6) (2020-03-27)
230
-
231
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.8.5...v1.8.6)
232
-
233
- **Closed issues:**
234
-
235
- - GitHub Actions Build Matrix [\#112](https://github.com/mitre/inspec_tools/issues/112)
236
-
237
- **Merged pull requests:**
238
-
239
- - Update build/test process to only use GitHub actions [\#115](https://github.com/mitre/inspec_tools/pull/115) ([Bialogs](https://github.com/Bialogs))
240
-
241
- ## [v1.8.5](https://github.com/mitre/inspec_tools/tree/v1.8.5) (2020-03-27)
242
-
243
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.8.4...v1.8.5)
244
-
245
- **Implemented enhancements:**
246
-
247
- - add "\# encoding: utf-8" to controls [\#54](https://github.com/mitre/inspec_tools/issues/54)
248
-
249
- **Merged pull requests:**
250
-
251
- - 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))
252
-
253
- ## [v1.8.4](https://github.com/mitre/inspec_tools/tree/v1.8.4) (2020-03-27)
254
-
255
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.8.3...v1.8.4)
256
-
257
- **Fixed bugs:**
258
-
259
- - \[BUG\] inspec\_tools \> 1.7.1 getting unknown encoding name - UTF-8 \(RuntimeError\) [\#110](https://github.com/mitre/inspec_tools/issues/110)
260
-
261
- **Merged pull requests:**
262
-
263
- - Reorganize overrides [\#113](https://github.com/mitre/inspec_tools/pull/113) ([Bialogs](https://github.com/Bialogs))
264
-
265
- ## [v1.8.3](https://github.com/mitre/inspec_tools/tree/v1.8.3) (2020-03-27)
266
-
267
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.8.2...v1.8.3)
268
-
269
- ## [v1.8.2](https://github.com/mitre/inspec_tools/tree/v1.8.2) (2020-03-25)
270
-
271
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.8.1...v1.8.2)
272
-
273
- **Merged pull requests:**
274
-
275
- - Spaces cause interpreter not to pick up encoding correctly [\#111](https://github.com/mitre/inspec_tools/pull/111) ([Bialogs](https://github.com/Bialogs))
276
- - Gemspec Dependency Updates [\#109](https://github.com/mitre/inspec_tools/pull/109) ([Bialogs](https://github.com/Bialogs))
277
-
278
- ## [v1.8.1](https://github.com/mitre/inspec_tools/tree/v1.8.1) (2020-03-24)
279
-
280
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.8.0...v1.8.1)
281
-
282
- **Closed issues:**
283
-
284
- - Please update the homepage in the gemspec to point to inspec-tools.mitre.org [\#105](https://github.com/mitre/inspec_tools/issues/105)
285
-
286
- **Merged pull requests:**
287
-
288
- - Update Gem homepage to https://inspec-tools.mitre.org/ [\#108](https://github.com/mitre/inspec_tools/pull/108) ([Bialogs](https://github.com/Bialogs))
289
-
290
- ## [v1.8.0](https://github.com/mitre/inspec_tools/tree/v1.8.0) (2020-03-24)
291
-
292
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.7.3...v1.8.0)
293
-
294
- **Closed issues:**
295
-
296
- - csv2inspec impact doesn't correct format "CAT I II III" severities [\#88](https://github.com/mitre/inspec_tools/issues/88)
297
-
298
- **Merged pull requests:**
299
-
300
- - 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))
301
-
302
- ## [v1.7.3](https://github.com/mitre/inspec_tools/tree/v1.7.3) (2020-03-23)
303
-
304
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.7.2...v1.7.3)
305
-
306
- **Merged pull requests:**
307
-
308
- - Hotfix [\#104](https://github.com/mitre/inspec_tools/pull/104) ([Bialogs](https://github.com/Bialogs))
309
-
310
- ## [v1.7.2](https://github.com/mitre/inspec_tools/tree/v1.7.2) (2020-03-23)
311
-
312
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.7.1...v1.7.2)
313
-
314
- **Implemented enhancements:**
315
-
316
- - add warning in CLI if needed app is missing for pdf2inspec [\#38](https://github.com/mitre/inspec_tools/issues/38)
317
-
318
- **Merged pull requests:**
319
-
320
- - Allow pushing to any gem host to support GitHub [\#103](https://github.com/mitre/inspec_tools/pull/103) ([Bialogs](https://github.com/Bialogs))
321
-
322
- ## [v1.7.1](https://github.com/mitre/inspec_tools/tree/v1.7.1) (2020-03-23)
323
-
324
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.7.0...v1.7.1)
325
-
326
- **Merged pull requests:**
327
-
328
- - GitHub Action Workflow Updates [\#102](https://github.com/mitre/inspec_tools/pull/102) ([Bialogs](https://github.com/Bialogs))
329
-
330
- ## [v1.7.0](https://github.com/mitre/inspec_tools/tree/v1.7.0) (2020-03-20)
331
-
332
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.6.21...v1.7.0)
333
-
334
- **Implemented enhancements:**
335
-
336
- - Migrate to depend on the new inspect objects library [\#86](https://github.com/mitre/inspec_tools/issues/86)
337
-
338
- **Merged pull requests:**
339
-
340
- - Remove warnings \(\#minor\) [\#101](https://github.com/mitre/inspec_tools/pull/101) ([Bialogs](https://github.com/Bialogs))
341
-
342
- ## [v1.6.21](https://github.com/mitre/inspec_tools/tree/v1.6.21) (2020-03-20)
343
-
344
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.6.20...v1.6.21)
345
-
346
- **Implemented enhancements:**
347
-
348
- - Parse cis XSLX [\#90](https://github.com/mitre/inspec_tools/pull/90) ([lukemalinowski](https://github.com/lukemalinowski))
349
-
350
- **Closed issues:**
351
-
352
- - figure out rubygems.org [\#31](https://github.com/mitre/inspec_tools/issues/31)
353
-
354
- ## [v1.6.20](https://github.com/mitre/inspec_tools/tree/v1.6.20) (2020-03-17)
355
-
356
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.6.19...v1.6.20)
357
-
358
- **Merged pull requests:**
359
-
360
- - Rubygems release workflow [\#100](https://github.com/mitre/inspec_tools/pull/100) ([Bialogs](https://github.com/Bialogs))
361
-
362
- ## [v1.6.19](https://github.com/mitre/inspec_tools/tree/v1.6.19) (2020-03-16)
363
-
364
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.6.18...v1.6.19)
365
-
366
- **Merged pull requests:**
367
-
368
- - Update github workflows [\#99](https://github.com/mitre/inspec_tools/pull/99) ([Bialogs](https://github.com/Bialogs))
369
-
370
- ## [v1.6.18](https://github.com/mitre/inspec_tools/tree/v1.6.18) (2020-03-16)
371
-
372
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.6.17...v1.6.18)
373
-
374
- ## [v1.6.17](https://github.com/mitre/inspec_tools/tree/v1.6.17) (2020-03-13)
375
-
376
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.6.16...v1.6.17)
377
-
378
- **Fixed bugs:**
379
-
380
- - Fix VERSION file update to update the right file in the gem [\#79](https://github.com/mitre/inspec_tools/issues/79)
381
-
382
- ## [v1.6.16](https://github.com/mitre/inspec_tools/tree/v1.6.16) (2020-03-13)
383
-
384
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.6.15...v1.6.16)
385
-
386
- **Fixed bugs:**
387
-
388
- - The `changelog.md` versions seem to be broken [\#80](https://github.com/mitre/inspec_tools/issues/80)
389
- - 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))
390
-
391
- ## [v1.6.15](https://github.com/mitre/inspec_tools/tree/v1.6.15) (2020-03-13)
392
-
393
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.6.14...v1.6.15)
394
-
395
- **Merged pull requests:**
396
-
397
- - 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))
398
-
399
- ## [v1.6.14](https://github.com/mitre/inspec_tools/tree/v1.6.14) (2020-03-13)
400
-
401
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.6.13...v1.6.14)
402
-
403
- **Closed issues:**
404
-
405
- - add travis to the commit/PR workflow [\#36](https://github.com/mitre/inspec_tools/issues/36)
406
-
407
- **Merged pull requests:**
408
-
409
- - 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))
410
-
411
- ## [v1.6.13](https://github.com/mitre/inspec_tools/tree/v1.6.13) (2020-03-13)
412
-
413
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.6.12...v1.6.13)
414
-
415
- **Closed issues:**
416
-
417
- - use github\_changelog\_generator in our release process [\#33](https://github.com/mitre/inspec_tools/issues/33)
418
- - add project instructions for Changelog, contribution and issue\_template [\#32](https://github.com/mitre/inspec_tools/issues/32)
419
-
420
- **Merged pull requests:**
421
-
422
- - 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))
423
-
424
- ## [v1.6.12](https://github.com/mitre/inspec_tools/tree/v1.6.12) (2020-03-13)
425
-
426
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.6.11...v1.6.12)
427
-
428
- **Closed issues:**
429
-
430
- - Typo in main README.md [\#89](https://github.com/mitre/inspec_tools/issues/89)
431
-
432
- **Merged pull requests:**
433
-
434
- - 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))
435
-
436
- ## [v1.6.11](https://github.com/mitre/inspec_tools/tree/v1.6.11) (2020-03-12)
437
-
438
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.6.10...v1.6.11)
439
-
440
- **Closed issues:**
441
-
442
- - DISA STIG web address needs to be updated [\#66](https://github.com/mitre/inspec_tools/issues/66)
443
-
444
- **Merged pull requests:**
445
-
446
- - Ignore debug generated files [\#92](https://github.com/mitre/inspec_tools/pull/92) ([Bialogs](https://github.com/Bialogs))
447
-
448
- ## [v1.6.10](https://github.com/mitre/inspec_tools/tree/v1.6.10) (2020-03-12)
449
-
450
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.6.9...v1.6.10)
451
-
452
- **Fixed bugs:**
453
-
454
- - Fix https://public.cyber.mil refernces [\#81](https://github.com/mitre/inspec_tools/pull/81) ([aaronlippold](https://github.com/aaronlippold))
455
-
456
- ## [v1.6.9](https://github.com/mitre/inspec_tools/tree/v1.6.9) (2020-03-06)
457
-
458
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.6.8...v1.6.9)
459
-
460
- ## [v1.6.8](https://github.com/mitre/inspec_tools/tree/v1.6.8) (2020-03-05)
461
-
462
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.6.7...v1.6.8)
463
-
464
- ## [v1.6.7](https://github.com/mitre/inspec_tools/tree/v1.6.7) (2020-02-11)
465
-
466
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.6.6...v1.6.7)
467
-
468
- ## [v1.6.6](https://github.com/mitre/inspec_tools/tree/v1.6.6) (2020-02-05)
469
-
470
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/53bdcb3...v1.6.6)
471
-
472
- **Fixed bugs:**
473
-
474
- - --help option is broken but inspec\_tools help \<command\> works [\#77](https://github.com/mitre/inspec_tools/issues/77)
475
- - Fixes \#77 by shifting help commands around [\#87](https://github.com/mitre/inspec_tools/pull/87) ([lukemalinowski](https://github.com/lukemalinowski))
476
-
477
- **Merged pull requests:**
478
-
479
- - Apply fixes from CodeFactor [\#82](https://github.com/mitre/inspec_tools/pull/82) ([aaronlippold](https://github.com/aaronlippold))
480
-
481
- ## [53bdcb3](https://github.com/mitre/inspec_tools/tree/53bdcb3) (2019-11-06)
482
-
483
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.6.4...53bdcb3)
484
-
485
- **Fixed bugs:**
486
-
487
- - --version and -v are broken [\#76](https://github.com/mitre/inspec_tools/issues/76)
488
-
489
- **Closed issues:**
490
-
491
- - Logic fix [\#83](https://github.com/mitre/inspec_tools/issues/83)
492
-
493
- **Merged pull requests:**
494
-
495
- - Fixes \#83 [\#85](https://github.com/mitre/inspec_tools/pull/85) ([aaronlippold](https://github.com/aaronlippold))
496
- - Fixes \#76 by editing version number [\#84](https://github.com/mitre/inspec_tools/pull/84) ([lukemalinowski](https://github.com/lukemalinowski))
497
-
498
- ## [v1.6.4](https://github.com/mitre/inspec_tools/tree/v1.6.4) (2019-11-05)
499
-
500
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.6.3...v1.6.4)
501
-
502
- ## [v1.6.3](https://github.com/mitre/inspec_tools/tree/v1.6.3) (2019-11-05)
503
-
504
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.6.5...v1.6.3)
505
-
506
- ## [v1.6.5](https://github.com/mitre/inspec_tools/tree/v1.6.5) (2019-11-05)
507
-
508
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.6.2...v1.6.5)
509
-
510
- ## [v1.6.2](https://github.com/mitre/inspec_tools/tree/v1.6.2) (2019-11-05)
511
-
512
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.6.1...v1.6.2)
513
-
514
- ## [v1.6.1](https://github.com/mitre/inspec_tools/tree/v1.6.1) (2019-11-05)
515
-
516
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.6.0...v1.6.1)
517
-
518
- **Merged pull requests:**
519
-
520
- - Update Profile logic include control exceptions [\#75](https://github.com/mitre/inspec_tools/pull/75) ([rx294](https://github.com/rx294))
521
- - 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))
522
-
523
- ## [v1.6.0](https://github.com/mitre/inspec_tools/tree/v1.6.0) (2019-10-04)
524
-
525
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.5.0...v1.6.0)
526
-
527
- **Closed issues:**
528
-
529
- - Updated logic for results metrics [\#74](https://github.com/mitre/inspec_tools/issues/74)
530
-
531
- ## [v1.5.0](https://github.com/mitre/inspec_tools/tree/v1.5.0) (2019-09-10)
532
-
533
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.4.2...v1.5.0)
534
-
535
- **Closed issues:**
536
-
537
- - Feature Enhancement: Inspec command plugin for inspec\_tools [\#67](https://github.com/mitre/inspec_tools/issues/67)
538
-
539
- **Merged pull requests:**
540
-
541
- - Kevin j smith adding inspec command plugin logic [\#72](https://github.com/mitre/inspec_tools/pull/72) ([lukemalinowski](https://github.com/lukemalinowski))
542
- - 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))
543
-
544
- ## [v1.4.2](https://github.com/mitre/inspec_tools/tree/v1.4.2) (2019-07-30)
545
-
546
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.4.1...v1.4.2)
547
-
548
- **Closed issues:**
549
-
550
- - Add additional option for Summary command [\#64](https://github.com/mitre/inspec_tools/issues/64)
551
- - `insert\_json\_metadata': undefined method `version' for nil:NilClass [\#63](https://github.com/mitre/inspec_tools/issues/63)
552
-
553
- **Merged pull requests:**
554
-
555
- - Updated rake version [\#69](https://github.com/mitre/inspec_tools/pull/69) ([robthew](https://github.com/robthew))
556
- - Add in 'inspec' and 'fileutils' require statements [\#65](https://github.com/mitre/inspec_tools/pull/65) ([samcornwell](https://github.com/samcornwell))
557
-
558
- ## [v1.4.1](https://github.com/mitre/inspec_tools/tree/v1.4.1) (2019-06-20)
559
-
560
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.4.0...v1.4.1)
561
-
562
- ## [v1.4.0](https://github.com/mitre/inspec_tools/tree/v1.4.0) (2019-05-17)
563
-
564
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.3.6...v1.4.0)
565
-
566
- **Merged pull requests:**
567
-
568
- - Apply fixes from CodeFactor [\#61](https://github.com/mitre/inspec_tools/pull/61) ([aaronlippold](https://github.com/aaronlippold))
569
-
570
- ## [v1.3.6](https://github.com/mitre/inspec_tools/tree/v1.3.6) (2019-05-02)
571
-
572
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.3.5...v1.3.6)
573
-
574
- **Implemented enhancements:**
575
-
576
- - document new metadata.json file and creation of file in README.md [\#53](https://github.com/mitre/inspec_tools/issues/53)
577
- - remove 'severity' from conversion [\#57](https://github.com/mitre/inspec_tools/pull/57) ([aaronlippold](https://github.com/aaronlippold))
578
-
579
- **Closed issues:**
580
-
581
- - While working with STIGViewer there were some missing TAGs [\#50](https://github.com/mitre/inspec_tools/issues/50)
582
- - remove severity tag in xccdf to inspec converted [\#44](https://github.com/mitre/inspec_tools/issues/44)
583
-
584
- ## [v1.3.5](https://github.com/mitre/inspec_tools/tree/v1.3.5) (2019-05-01)
585
-
586
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.3.4...v1.3.5)
587
-
588
- ## [v1.3.4](https://github.com/mitre/inspec_tools/tree/v1.3.4) (2019-05-01)
589
-
590
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.1.6...v1.3.4)
591
-
592
- **Closed issues:**
593
-
594
- - Needed app is missing [\#49](https://github.com/mitre/inspec_tools/issues/49)
595
- - 2018 b79e5c3 [\#48](https://github.com/mitre/inspec_tools/issues/48)
596
-
597
- **Merged pull requests:**
598
-
599
- - Metadata docs and tools [\#55](https://github.com/mitre/inspec_tools/pull/55) ([samcornwell](https://github.com/samcornwell))
600
- - Fix bugs introduced by \#51 \(STIGViewer PR\) [\#52](https://github.com/mitre/inspec_tools/pull/52) ([samcornwell](https://github.com/samcornwell))
601
- - 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))
602
- - Add modules summary, compliance [\#45](https://github.com/mitre/inspec_tools/pull/45) ([rx294](https://github.com/rx294))
603
-
604
- ## [v1.1.6](https://github.com/mitre/inspec_tools/tree/v1.1.6) (2018-12-13)
605
-
606
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.1.5...v1.1.6)
607
-
608
- ## [v1.1.5](https://github.com/mitre/inspec_tools/tree/v1.1.5) (2018-12-11)
609
-
610
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.1.2...v1.1.5)
611
-
612
- **Implemented enhancements:**
613
-
614
- - Add help for the gem usage and or ruby usage [\#7](https://github.com/mitre/inspec_tools/issues/7)
615
- - add sub-help command output to match README and document each function [\#6](https://github.com/mitre/inspec_tools/issues/6)
616
-
617
- **Closed issues:**
618
-
619
- - add rubocop integration or PRs [\#34](https://github.com/mitre/inspec_tools/issues/34)
620
- - 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)
621
- - fix the subcommands help so it works as expected [\#28](https://github.com/mitre/inspec_tools/issues/28)
622
- - 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)
623
- - do we have to do anything special for including CIS Benchmarks? [\#21](https://github.com/mitre/inspec_tools/issues/21)
624
- - clean up debug statements [\#20](https://github.com/mitre/inspec_tools/issues/20)
625
- - Give attribution for files in /data [\#19](https://github.com/mitre/inspec_tools/issues/19)
626
- - add copyright statements if necessary [\#15](https://github.com/mitre/inspec_tools/issues/15)
627
- - check /examples/sample\_json to see if any of the results are sensitive [\#14](https://github.com/mitre/inspec_tools/issues/14)
628
-
629
- **Merged pull requests:**
630
-
631
- - replaced docsplit with pdf-reader [\#43](https://github.com/mitre/inspec_tools/pull/43) ([robthew](https://github.com/robthew))
632
- - Updated remove dir statement [\#41](https://github.com/mitre/inspec_tools/pull/41) ([robthew](https://github.com/robthew))
633
- - Added appveyor config [\#40](https://github.com/mitre/inspec_tools/pull/40) ([robthew](https://github.com/robthew))
634
- - Travis test [\#39](https://github.com/mitre/inspec_tools/pull/39) ([robthew](https://github.com/robthew))
635
- - Add rubocop to the process [\#35](https://github.com/mitre/inspec_tools/pull/35) ([aaronlippold](https://github.com/aaronlippold))
636
- - \* added refernces to external data sources [\#30](https://github.com/mitre/inspec_tools/pull/30) ([aaronlippold](https://github.com/aaronlippold))
637
-
638
- ## [v1.1.2](https://github.com/mitre/inspec_tools/tree/v1.1.2) (2018-11-08)
639
-
640
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.1.1...v1.1.2)
641
-
642
- ## [v1.1.1](https://github.com/mitre/inspec_tools/tree/v1.1.1) (2018-11-08)
643
-
644
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.1.0...v1.1.1)
645
-
646
- ## [v1.1.0](https://github.com/mitre/inspec_tools/tree/v1.1.0) (2018-11-08)
647
-
648
- [Full Changelog](https://github.com/mitre/inspec_tools/compare/85b69b32277ea43f95b09eee00e9f7b84c62dfff...v1.1.0)
649
-
650
- **Fixed bugs:**
651
-
652
- - 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)
653
-
654
- **Closed issues:**
655
-
656
- - 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)
657
- - Add MITRE Copyright to the end of the README.md [\#23](https://github.com/mitre/inspec_tools/issues/23)
658
- - Update email addresses to MITRE addresses [\#18](https://github.com/mitre/inspec_tools/issues/18)
659
- - update readme.md [\#17](https://github.com/mitre/inspec_tools/issues/17)
660
- - update inspec\_tools.gemspec [\#16](https://github.com/mitre/inspec_tools/issues/16)
661
- - update license to apache 2.0 [\#13](https://github.com/mitre/inspec_tools/issues/13)
662
- - Separate Files defaults to \[False\] [\#10](https://github.com/mitre/inspec_tools/issues/10)
663
- - Rename repository to 'inspec\_tools' [\#9](https://github.com/mitre/inspec_tools/issues/9)
664
-
665
- **Merged pull requests:**
666
-
667
- - Cleanup Debug Statetements [\#12](https://github.com/mitre/inspec_tools/pull/12) ([yarick](https://github.com/yarick))
668
- - Change default separated\_files setting to default to true [\#11](https://github.com/mitre/inspec_tools/pull/11) ([yarick](https://github.com/yarick))
669
- - Cleanup [\#8](https://github.com/mitre/inspec_tools/pull/8) ([robthew](https://github.com/robthew))
670
- - Unification [\#5](https://github.com/mitre/inspec_tools/pull/5) ([dromazmj](https://github.com/dromazmj))
671
- - \* Adds functionality for inspec2csv [\#4](https://github.com/mitre/inspec_tools/pull/4) ([dromazmj](https://github.com/dromazmj))
672
- - Md/pdf [\#3](https://github.com/mitre/inspec_tools/pull/3) ([dromazmj](https://github.com/dromazmj))
673
- - Md/csv2inspec [\#2](https://github.com/mitre/inspec_tools/pull/2) ([dromazmj](https://github.com/dromazmj))
674
- - 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))
675
-
676
-
677
-
678
- \* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*