inspec 5.22.50 → 6.8.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +14 -4
- data/inspec.gemspec +12 -4
- data/lib/plugins/inspec-license/inspec-license.gemspec +6 -0
- data/lib/plugins/inspec-parallel/inspec-parallel.gemspec +6 -0
- metadata +17 -12
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b6b99d5ef7985f1fdc7315b1eaeb7f8ac1daa5f37720264a41072c6c93bfd6d5
|
4
|
+
data.tar.gz: e4d8316ba9bce858167356a2fc99b445c78b1293292e326d4e190ea549b51127
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 86a3fe036510babf1542548106ea7923d3837f555dd72619a8c5bf75c0e3d0742f4cf04c9d9c184afcf78b40e009b20b47da45c76bf6f9891c43515592c669d0
|
7
|
+
data.tar.gz: 7fd2228f96ea3992ac8caac76c1e664225637ccdb7b323bc58a97f3b0845ef2dabd1b247a157f89a646b23733e427937cb5f8324a1cc5b5cc4befbb397bab281
|
data/Gemfile
CHANGED
@@ -1,3 +1,14 @@
|
|
1
|
+
# TODO: Commentine artifactory source block temporarily
|
2
|
+
# to addres JIRA #9390 (Chef InSpec Verify pipeline is failing due to checksum mismatch of mixlib-shellout gem)
|
3
|
+
# For Chef internal builds, allows preview versions of gems if available.
|
4
|
+
# if ENV["ARTIFACTORY_BASE_URL"]
|
5
|
+
# source ENV["ARTIFACTORY_BASE_URL"] + "/artifactory/api/gems/omnibus-gems-local/" do
|
6
|
+
# # TODO: either fully populate this list, or revert back to non-block format
|
7
|
+
# # to sweep all Chef gems from Artifactory.
|
8
|
+
# gem "chef-licensing"
|
9
|
+
# end
|
10
|
+
# end
|
11
|
+
|
1
12
|
source "https://rubygems.org"
|
2
13
|
|
3
14
|
gem "inspec", path: "."
|
@@ -9,11 +20,10 @@ gem "inspec", path: "."
|
|
9
20
|
# in it in order to package the executable. Hence the odd backwards dependency.
|
10
21
|
gem "inspec-bin", path: "./inspec-bin"
|
11
22
|
|
12
|
-
|
23
|
+
# ffi version v1.17.0 is breaking verify pipeline as it requires
|
24
|
+
# rubygems version to be upgraded to >= 3.3.22 Ref:https://buildkite.com/chef/inspec-inspec-main-verify-private/builds/812#018fe177-2ccb-45ed-a25e-213c8a6453df/698-707
|
13
25
|
|
14
|
-
|
15
|
-
# See https://github.com/knu/ruby-unf_ext/issues/74 https://buildkite.com/chef/inspec-inspec-inspec-5-omnibus-release/builds/22
|
16
|
-
gem "unf_ext", "= 0.0.8.2"
|
26
|
+
gem "ffi", ">= 1.15.5", "< 1.17.0"
|
17
27
|
|
18
28
|
# inspec tests depend text output that changed in the 3.10 release
|
19
29
|
# but our runtime dep is still 3.9+
|
data/inspec.gemspec
CHANGED
@@ -8,12 +8,20 @@ Gem::Specification.new do |spec|
|
|
8
8
|
spec.authors = ["Chef InSpec Team"]
|
9
9
|
spec.email = ["inspec@chef.io"]
|
10
10
|
spec.summary = "Infrastructure and compliance testing."
|
11
|
-
spec.description =
|
11
|
+
spec.description = <<-EOT
|
12
|
+
InSpec provides a framework for creating end-to-end infrastructure tests. You can use it for integration or even compliance testing. Create fully portable test profiles and use them in your workflow to ensure stability and security. Integrate InSpec in your change lifecycle for local testing, CI/CD, and deployment verification.
|
13
|
+
|
14
|
+
Packaged distributions of Progress® Chef® products obtained from RubyGems are made available pursuant to the Progress Chef EULA at https://www.chef.io/end-user-license-agreement, unless there is an executed agreement in effect between you and Progress that covers the Progress Chef products ("Master Agreement"), in which case the Master Agreement shall govern.
|
15
|
+
|
16
|
+
Source code obtained from the Chef GitHub repository is made available under Apache-2.0, a copy of which is included.
|
17
|
+
|
18
|
+
EOT
|
19
|
+
|
12
20
|
spec.homepage = "https://github.com/inspec/inspec"
|
13
|
-
spec.license = "
|
21
|
+
spec.license = "LicenseRef-Chef-EULA"
|
14
22
|
spec.require_paths = ["lib"]
|
15
23
|
|
16
|
-
spec.required_ruby_version = ">=
|
24
|
+
spec.required_ruby_version = ">= 3.1.0"
|
17
25
|
|
18
26
|
# ONLY the aws/azure/gcp files. The rest will come in from inspec-core
|
19
27
|
# the gemspec is necessary for appbundler so don't remove it
|
@@ -31,7 +39,7 @@ Gem::Specification.new do |spec|
|
|
31
39
|
spec.add_dependency "progress_bar", "~> 1.3.3"
|
32
40
|
|
33
41
|
# Used for Azure profile until integrated into train
|
34
|
-
spec.add_dependency "faraday_middleware", ">= 0.12.2", "< 1.
|
42
|
+
spec.add_dependency "faraday_middleware", ">= 0.12.2", "< 1.1"
|
35
43
|
|
36
44
|
# Train plugins we ship with InSpec
|
37
45
|
spec.add_dependency "train-habitat", "~> 0.1"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: inspec
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 6.8.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Chef InSpec Team
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-07-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: inspec-core
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - '='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
19
|
+
version: 6.8.1
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - '='
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
26
|
+
version: 6.8.1
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: train
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -75,7 +75,7 @@ dependencies:
|
|
75
75
|
version: 0.12.2
|
76
76
|
- - "<"
|
77
77
|
- !ruby/object:Gem::Version
|
78
|
-
version: '1.
|
78
|
+
version: '1.1'
|
79
79
|
type: :runtime
|
80
80
|
prerelease: false
|
81
81
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -85,7 +85,7 @@ dependencies:
|
|
85
85
|
version: 0.12.2
|
86
86
|
- - "<"
|
87
87
|
- !ruby/object:Gem::Version
|
88
|
-
version: '1.
|
88
|
+
version: '1.1'
|
89
89
|
- !ruby/object:Gem::Dependency
|
90
90
|
name: train-habitat
|
91
91
|
requirement: !ruby/object:Gem::Requirement
|
@@ -156,10 +156,13 @@ dependencies:
|
|
156
156
|
- - '='
|
157
157
|
- !ruby/object:Gem::Version
|
158
158
|
version: 2.13.2
|
159
|
-
description:
|
160
|
-
You can use it for integration or even compliance testing. Create fully portable
|
161
|
-
|
162
|
-
|
159
|
+
description: |+
|
160
|
+
InSpec provides a framework for creating end-to-end infrastructure tests. You can use it for integration or even compliance testing. Create fully portable test profiles and use them in your workflow to ensure stability and security. Integrate InSpec in your change lifecycle for local testing, CI/CD, and deployment verification.
|
161
|
+
|
162
|
+
Packaged distributions of Progress® Chef® products obtained from RubyGems are made available pursuant to the Progress Chef EULA at https://www.chef.io/end-user-license-agreement, unless there is an executed agreement in effect between you and Progress that covers the Progress Chef products ("Master Agreement"), in which case the Master Agreement shall govern.
|
163
|
+
|
164
|
+
Source code obtained from the Chef GitHub repository is made available under Apache-2.0, a copy of which is included.
|
165
|
+
|
163
166
|
email:
|
164
167
|
- inspec@chef.io
|
165
168
|
executables: []
|
@@ -184,6 +187,8 @@ files:
|
|
184
187
|
- lib/plugins/inspec-init/templates/profiles/gcp/controls/example.rb
|
185
188
|
- lib/plugins/inspec-init/templates/profiles/gcp/inputs.yml
|
186
189
|
- lib/plugins/inspec-init/templates/profiles/gcp/inspec.yml
|
190
|
+
- lib/plugins/inspec-license/inspec-license.gemspec
|
191
|
+
- lib/plugins/inspec-parallel/inspec-parallel.gemspec
|
187
192
|
- lib/plugins/inspec-plugin-manager-cli/inspec-plugin-manager-cli.gemspec
|
188
193
|
- lib/plugins/inspec-reporter-html2/inspec-reporter-html2.gemspec
|
189
194
|
- lib/plugins/inspec-reporter-json-min/inspec-reporter-json-min.gemspec
|
@@ -192,7 +197,7 @@ files:
|
|
192
197
|
- lib/plugins/inspec-streaming-reporter-progress-bar/inspec-streaming-reporter-progress-bar.gemspec
|
193
198
|
homepage: https://github.com/inspec/inspec
|
194
199
|
licenses:
|
195
|
-
-
|
200
|
+
- LicenseRef-Chef-EULA
|
196
201
|
metadata: {}
|
197
202
|
post_install_message:
|
198
203
|
rdoc_options: []
|
@@ -202,7 +207,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
202
207
|
requirements:
|
203
208
|
- - ">="
|
204
209
|
- !ruby/object:Gem::Version
|
205
|
-
version:
|
210
|
+
version: 3.1.0
|
206
211
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
207
212
|
requirements:
|
208
213
|
- - ">="
|