inspec-core 5.22.95 → 5.23.6
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.
- checksums.yaml +4 -4
- data/Gemfile +1 -1
- data/inspec-core.gemspec +1 -1
- data/lib/inspec/base_cli.rb +10 -0
- data/lib/inspec/version.rb +1 -1
- metadata +10 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c009226468213d8efc51bc54b6e315c0d3ac50d9039ee198bbb1b24330a2f2cc
|
4
|
+
data.tar.gz: '0568f87bfec4df5740aaa3de94c1d2bc91b5b9e3f7a59dff8446052a63e83f02'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 90b9f7f4196b68f8bf1b2e33e2c6e4ef1164ede223639115cb1edf04587b9e2b0173fe9bd5badfe84fab507a443844e90d85cd2369b9bd2c44c209c1d9832c4a
|
7
|
+
data.tar.gz: 62f1267747c3fa35f3c75750f9fde168ac4682862a21efd4156b795c56d2cdf5cca580648c3bba9e8d7152139e55a2ff52457d3756ef6dbfcbb3279a0610474b
|
data/Gemfile
CHANGED
@@ -46,7 +46,7 @@ group :test do
|
|
46
46
|
gem "simplecov"
|
47
47
|
gem "simplecov_json_formatter"
|
48
48
|
gem "webmock"
|
49
|
-
gem "signet", "< 0.
|
49
|
+
gem "signet", "< 0.22.0" # 0.20.0+ requires min ruby 3.1
|
50
50
|
# Pinning to 1.15 as multi_json 1.16 require ruby 3.2 version
|
51
51
|
# Ref: https://buildkite.com/chef-oss/inspec-inspec-inspec-5-verify/builds/647#019808ca-087b-43bc-b1f9-40a36f59c5f4
|
52
52
|
gem "multi_json", "~> 1.15.0"
|
data/inspec-core.gemspec
CHANGED
@@ -54,5 +54,5 @@ Gem::Specification.new do |spec|
|
|
54
54
|
# which was causing a LoadError ('cannot load such file -- ast') for users/applications using 'inspec-core'.
|
55
55
|
spec.add_dependency "cookstyle"
|
56
56
|
|
57
|
-
spec.add_dependency "train-core", "~> 3.
|
57
|
+
spec.add_dependency "train-core", "~> 3.13", ">= 3.13.4"
|
58
58
|
end
|
data/lib/inspec/base_cli.rb
CHANGED
@@ -140,6 +140,16 @@ module Inspec
|
|
140
140
|
desc: "A list of paths to the ssh config file, e.g ~/.ssh/config or /etc/ssh/ssh_config."
|
141
141
|
option :podman_url, type: :string,
|
142
142
|
desc: "Provides the path to the Podman API endpoint. Defaults to unix:///run/user/$UID/podman/podman.sock for rootless container, unix:///run/podman/podman.sock for rootful container (for this you need to execute inspec as root user)."
|
143
|
+
option :socks_proxy, type: :string,
|
144
|
+
desc: "SOCKS5H proxy URL to tunnel the WinRM connection (e.g., socks5h://proxy-host:1080)."
|
145
|
+
option :socks_user, type: :string,
|
146
|
+
desc: "Username for authenticating with the SOCKS5 proxy."
|
147
|
+
option :socks_password, type: :string, lazy_default: -1,
|
148
|
+
desc: "Password for authenticating with the SOCKS5 proxy."
|
149
|
+
option :kerberos_realm, type: :string,
|
150
|
+
desc: "Kerberos realm used for authentication."
|
151
|
+
option :kerberos_service, type: :string,
|
152
|
+
desc: "Kerberos service principal name (e.g., HTTP, HOST)."
|
143
153
|
end
|
144
154
|
|
145
155
|
def self.profile_options
|
data/lib/inspec/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: inspec-core
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.
|
4
|
+
version: 5.23.6
|
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: 2025-
|
11
|
+
date: 2025-09-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: chef-telemetry
|
@@ -396,14 +396,20 @@ dependencies:
|
|
396
396
|
requirements:
|
397
397
|
- - "~>"
|
398
398
|
- !ruby/object:Gem::Version
|
399
|
-
version: 3.
|
399
|
+
version: '3.13'
|
400
|
+
- - ">="
|
401
|
+
- !ruby/object:Gem::Version
|
402
|
+
version: 3.13.4
|
400
403
|
type: :runtime
|
401
404
|
prerelease: false
|
402
405
|
version_requirements: !ruby/object:Gem::Requirement
|
403
406
|
requirements:
|
404
407
|
- - "~>"
|
405
408
|
- !ruby/object:Gem::Version
|
406
|
-
version: 3.
|
409
|
+
version: '3.13'
|
410
|
+
- - ">="
|
411
|
+
- !ruby/object:Gem::Version
|
412
|
+
version: 3.13.4
|
407
413
|
description: InSpec provides a framework for creating end-to-end infrastructure tests.
|
408
414
|
You can use it for integration or even compliance testing. Create fully portable
|
409
415
|
test profiles and use them in your workflow to ensure stability and security. Integrate
|