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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a7b225f8fda920cb03f73a84eb1edc2b98339058c824f2323bee26995b37c74b
4
- data.tar.gz: 5b6eb547488c20ff9e8170066f0ba38871afeead368f91248254ccf171e33327
3
+ metadata.gz: c009226468213d8efc51bc54b6e315c0d3ac50d9039ee198bbb1b24330a2f2cc
4
+ data.tar.gz: '0568f87bfec4df5740aaa3de94c1d2bc91b5b9e3f7a59dff8446052a63e83f02'
5
5
  SHA512:
6
- metadata.gz: 01e6f8d6a5749288c3a53d9fc0166d3b8e832437cbb63aa86dc67dfe09160a956c528a9fe06e43f7912b497d8201b99556d68f6b4569ba6ac044910db821fea0
7
- data.tar.gz: d6e5f9d3e5b5393d3cc0fbe9754ddba827cb1f12df3911fe1486dfe314b1386d5dca7b32a52509b65f9ad10cc6870ba0d990e63b5bb38456df98a57b82667fc2
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.21.0" # 0.20.0+ requires min ruby 3.1
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.12.13" # Adding tight version constraint for train as it is compatible with Ruby 3.0.x
57
+ spec.add_dependency "train-core", "~> 3.13", ">= 3.13.4"
58
58
  end
@@ -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
@@ -1,3 +1,3 @@
1
1
  module Inspec
2
- VERSION = "5.22.95".freeze
2
+ VERSION = "5.23.6".freeze
3
3
  end
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.22.95
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-08-04 00:00:00.000000000 Z
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.12.13
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.12.13
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