Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ gem "syslog"
gem "ostruct"
gem "csv"
gem "libyajl2", ">= 2.1" # Explicitly require newer version from rubygems.org
gem "faraday", ">= 2.14.3" # Code scan remediation; transitive dep via chef-licensing/inspec-core
gem "mixlib-authentication", "=3.0.10" #Pinning this to a specific version to avoid breaking changes

group :development, :test do
Expand Down
19 changes: 10 additions & 9 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
PATH
remote: .
specs:
knife (19.0.117)
knife (19.0.130)
abbrev
bcrypt_pbkdf (~> 1.1)
chef-licensing (~> 1.2)
chef-vault
ed25519 (>= 1.2, < 2.0)
erubis (~> 2.7)
ffi (>= 1.15, < 1.18.0)
ffi-yajl (>= 2.2, < 4.0)
ffi-yajl (>= 2.2, < 3.0)
highline (>= 1.6.9, < 4)
license-acceptance (>= 1.0.5, < 3)
mixlib-archive (>= 0.4, < 2.0)
Expand Down Expand Up @@ -166,7 +166,7 @@ GEM
logger (< 1.6.0)
net-ssh
coderay (1.1.3)
concurrent-ruby (1.3.6)
concurrent-ruby (1.3.7)
cookstyle (8.6.10)
rubocop (= 1.84.2)
corefoundation (0.3.13)
Expand All @@ -182,7 +182,7 @@ GEM
ed25519 (1.4.0)
erubi (1.13.1)
erubis (2.7.0)
faraday (2.14.2)
faraday (2.14.3)
faraday-net_http (>= 2.0, < 3.5)
json
logger
Expand Down Expand Up @@ -279,7 +279,7 @@ GEM
tomlrb
mixlib-log (3.2.3)
ffi (>= 1.15.5)
mixlib-shellout (3.3.9)
mixlib-shellout (3.4.10)
chef-utils
multi_json (1.19.1)
multipart-post (2.4.1)
Expand All @@ -304,17 +304,17 @@ GEM
netrc (0.11.0)
nori (2.7.1)
bigdecimal
ohai (19.1.24)
ohai (19.1.37)
base64
chef-config (>= 14.12, < 20)
chef-utils (>= 16.0, < 20)
ffi (>= 1.15.5)
ffi-yajl (~> 2.2)
ffi-yajl (>= 2.2, < 4.0)
ipaddress
mixlib-cli (>= 1.7.0)
mixlib-config (>= 2.0, < 4.0)
mixlib-log (>= 2.0.1, < 4.0)
mixlib-shellout (~> 3.3.6)
mixlib-shellout (>= 3.3.6, < 3.5.0)
plist (~> 3.1)
train-core
wmi-lite (~> 1.0)
Expand Down Expand Up @@ -405,7 +405,7 @@ GEM
time (0.4.2)
date
timeout (0.6.1)
tomlrb (1.3.0)
tomlrb (2.0.4)
train-core (3.16.5)
addressable (~> 2.5)
ffi (>= 1.16.0, < 1.18)
Expand Down Expand Up @@ -479,6 +479,7 @@ DEPENDENCIES
cheffish (>= 14)
crack (< 1.0.2)
csv
faraday (>= 2.14.3)
knife!
libyajl2 (>= 2.1)
mixlib-authentication (= 3.0.10)
Expand Down
2 changes: 1 addition & 1 deletion knife.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Gem::Specification.new do |s|
s.add_dependency "mixlib-cli", ">= 2.1.1", "< 3.0"
s.add_dependency "mixlib-archive", ">= 0.4", "< 2.0"
s.add_dependency "ffi", ">= 1.15", "< 1.18.0"
s.add_dependency "ffi-yajl", ">= 2.2", "< 4.0"
s.add_dependency "ffi-yajl", ">= 2.2", "< 3.0"
s.add_dependency "net-ssh", ">= 5.1", "< 8"
s.add_dependency "net-ssh-multi", "~> 1.2", ">= 1.2.1"
s.add_dependency "bcrypt_pbkdf", "~> 1.1" # ed25519 ssh key support
Expand Down
Loading