inspec 5.22.40 → 6.6.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 726c6ee1bd28542e454b2b7496ee4e3bd469a51009295e069c5e877a5f7cdec4
4
- data.tar.gz: efffd8a3dc8df221233904801be0c0fa8d31c366e84ec152f3881af3531b3a64
3
+ metadata.gz: 7145e01e64e1c20915a545ba5582a59b8c19522f0eaddf66055fce1b1b1ce428
4
+ data.tar.gz: 62a67bff0e18b1c92567a67c4822f4e7c7fdd9ea2ee82e541e6c2e67ef4f8f16
5
5
  SHA512:
6
- metadata.gz: b524d1bd0815c88ce5e1adc69bdfe15573f4608bef00ce35c09c78d7a24f31a8e0205e90883637111d0a238bfea6cdfb2e905f50ea2c25d1762245d23abd2bfb
7
- data.tar.gz: 21e16ebbbe4657e7f6c6d2a62f4a91b890be0070383c01a7a18409dd24d0c84ca7b358c1f71e7dd94f14679150c35d66d94629689560e7b35e027c84f71e9e5e
6
+ metadata.gz: 2fee45943fa837e958dc1a26b03492236469d21b52410f54457dc0ef06ef82749aad95ff981ccbeecd6ff02b1c422eab8819204ec089ffa8fc0d487f9f36bf8f
7
+ data.tar.gz: 9b75899257f59cc068b555bbe6bc65323ad94c64a440ce343537647af284f257f69902c8c85e1bb53c129ca94b2b34bd782e63efb6b4513ba79cfaf7c549f926
data/Gemfile CHANGED
@@ -1,3 +1,12 @@
1
+ # For Chef internal builds, allows preview versions of gems if available.
2
+ if ENV["ARTIFACTORY_BASE_URL"]
3
+ source ENV["ARTIFACTORY_BASE_URL"] + "/artifactory/api/gems/omnibus-gems-local/" do
4
+ # TODO: either fully populate this list, or revert back to non-block format
5
+ # to sweep all Chef gems from Artifactory.
6
+ gem "chef-licensing"
7
+ end
8
+ end
9
+
1
10
  source "https://rubygems.org"
2
11
 
3
12
  gem "inspec", path: "."
@@ -11,10 +20,6 @@ gem "inspec-bin", path: "./inspec-bin"
11
20
 
12
21
  gem "ffi", ">= 1.9.14", "!= 1.13.0", "!= 1.14.2"
13
22
 
14
- # We have a build issue 2023-11-13 with unf_ext 0.0.9 so we are pinning to 0.0.8.2
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"
17
-
18
23
  # inspec tests depend text output that changed in the 3.10 release
19
24
  # but our runtime dep is still 3.9+
20
25
  gem "rspec", ">= 3.10"
@@ -33,7 +38,7 @@ group :test do
33
38
  gem "m"
34
39
  gem "minitest-sprint", "~> 1.0"
35
40
  gem "minitest", "5.15.0"
36
- gem "mocha", "~> 2.1"
41
+ gem "mocha", "~> 1.1"
37
42
  gem "nokogiri", "~> 1.9"
38
43
  gem "pry-byebug"
39
44
  gem "pry", "~> 0.10"
data/inspec.gemspec CHANGED
@@ -8,9 +8,17 @@ 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 = "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."
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 = "Apache-2.0"
21
+ spec.license = "LicenseRef-Chef-EULA"
14
22
  spec.require_paths = ["lib"]
15
23
 
16
24
  spec.required_ruby_version = ">= 2.7"
@@ -35,7 +43,7 @@ Gem::Specification.new do |spec|
35
43
  spec.add_dependency "progress_bar", "~> 1.3.3"
36
44
 
37
45
  # Used for Azure profile until integrated into train
38
- spec.add_dependency "faraday_middleware", ">= 0.12.2", "< 1.3"
46
+ spec.add_dependency "faraday_middleware", ">= 0.12.2", "< 1.1"
39
47
 
40
48
  # Train plugins we ship with InSpec
41
49
  spec.add_dependency "train-habitat", "~> 0.1"
@@ -0,0 +1,6 @@
1
+ Gem::Specification.new do |spec|
2
+ spec.name = "inspec-license"
3
+ spec.summary = "Plugin to list user licenses."
4
+ spec.description = ""
5
+ spec.license = "Apache-2.0"
6
+ end
@@ -0,0 +1,6 @@
1
+ Gem::Specification.new do |spec|
2
+ spec.name = "inspec-parallel"
3
+ spec.summary = "Plugin to handle parallel InSpec scan operations over multiple targets"
4
+ spec.description = ""
5
+ spec.license = "Apache-2.0"
6
+ end
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: 5.22.40
4
+ version: 6.6.0
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-01-19 00:00:00.000000000 Z
11
+ date: 2023-11-09 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: 5.22.40
19
+ version: 6.6.0
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: 5.22.40
26
+ version: 6.6.0
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: train
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -89,7 +89,7 @@ dependencies:
89
89
  version: 0.12.2
90
90
  - - "<"
91
91
  - !ruby/object:Gem::Version
92
- version: '1.3'
92
+ version: '1.1'
93
93
  type: :runtime
94
94
  prerelease: false
95
95
  version_requirements: !ruby/object:Gem::Requirement
@@ -99,7 +99,7 @@ dependencies:
99
99
  version: 0.12.2
100
100
  - - "<"
101
101
  - !ruby/object:Gem::Version
102
- version: '1.3'
102
+ version: '1.1'
103
103
  - !ruby/object:Gem::Dependency
104
104
  name: train-habitat
105
105
  requirement: !ruby/object:Gem::Requirement
@@ -170,10 +170,13 @@ dependencies:
170
170
  - - '='
171
171
  - !ruby/object:Gem::Version
172
172
  version: 2.13.2
173
- description: InSpec provides a framework for creating end-to-end infrastructure tests.
174
- You can use it for integration or even compliance testing. Create fully portable
175
- test profiles and use them in your workflow to ensure stability and security. Integrate
176
- InSpec in your change lifecycle for local testing, CI/CD, and deployment verification.
173
+ description: |+
174
+ 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.
175
+
176
+ 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.
177
+
178
+ Source code obtained from the Chef GitHub repository is made available under Apache-2.0, a copy of which is included.
179
+
177
180
  email:
178
181
  - inspec@chef.io
179
182
  executables: []
@@ -198,6 +201,8 @@ files:
198
201
  - lib/plugins/inspec-init/templates/profiles/gcp/controls/example.rb
199
202
  - lib/plugins/inspec-init/templates/profiles/gcp/inputs.yml
200
203
  - lib/plugins/inspec-init/templates/profiles/gcp/inspec.yml
204
+ - lib/plugins/inspec-license/inspec-license.gemspec
205
+ - lib/plugins/inspec-parallel/inspec-parallel.gemspec
201
206
  - lib/plugins/inspec-plugin-manager-cli/inspec-plugin-manager-cli.gemspec
202
207
  - lib/plugins/inspec-reporter-html2/inspec-reporter-html2.gemspec
203
208
  - lib/plugins/inspec-reporter-json-min/inspec-reporter-json-min.gemspec
@@ -206,7 +211,7 @@ files:
206
211
  - lib/plugins/inspec-streaming-reporter-progress-bar/inspec-streaming-reporter-progress-bar.gemspec
207
212
  homepage: https://github.com/inspec/inspec
208
213
  licenses:
209
- - Apache-2.0
214
+ - LicenseRef-Chef-EULA
210
215
  metadata: {}
211
216
  post_install_message:
212
217
  rdoc_options: []