berkshelf 8.0.7 → 8.0.9

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: 1b5a13a8ee09f56803846ad1bf3046802f231c30f80d75c89a3a7a372e779fb6
4
- data.tar.gz: 5410164e53e455a48de4cae7721a8a58f46a80e74a954bb588b33e3c005f80da
3
+ metadata.gz: 80b38fc167aeaac8e33a0219cc4ada1bf3e1614a5553294cabfdc7460c5f56b6
4
+ data.tar.gz: 4f642360c7e11c3946c8463cd422dd2279a27f3bcf6512481183dd55e98613d8
5
5
  SHA512:
6
- metadata.gz: 556d5c24a23c8926a51e68215db48679470aa91b0e5a11c89a61249a4ad527608dae6bea34516e5aa0847a561b1e41f57e27b88c77af9fdc78f1eb9ca6bc2da1
7
- data.tar.gz: 65a853433f25465b79f9e3fda0ef52b62cc73a1149d11b4768d40779898960430859073654778b07a2ea3a0da8e81a8b08ddbfb4f51f39bbda67a1da30b6d683
6
+ metadata.gz: 452b88f63d021f69c75c196f3bd39e1e4f4595e208d75b1f88bc190964c79d05ce8fabc03726884d22396072c00c63fd8423194b495054e96c46cc9439d11bc7
7
+ data.tar.gz: d05010ba4e991b5300b1bda01f1efc73f797e1f85af0666095ff633524f1e3ec54ab650a0ecb81bd59402fd100f6249af7e7fa31f36d526192d88212b32ac5fa
@@ -16,7 +16,7 @@ module Berkshelf
16
16
  def add_trusted_cert(cert)
17
17
  @store.add_cert(cert)
18
18
  rescue OpenSSL::X509::StoreError => e
19
- raise e unless e.message == "cert already in hash table"
19
+ raise e unless e.message.match(/cert already in hash table/)
20
20
  end
21
21
 
22
22
  def trusted_certs_dir
@@ -1,3 +1,3 @@
1
1
  module Berkshelf
2
- VERSION = "8.0.7".freeze
2
+ VERSION = "8.0.9".freeze
3
3
  end
@@ -130,17 +130,17 @@ describe Berkshelf::APIClient::Connection do
130
130
  end
131
131
 
132
132
  it "raises Berkshelf::APIClient::ServiceUnavailable for 500s" do
133
- stub_request(:get, "http://supermarket.getchef.com/universe").to_return(status: [500, "Internal Server Error"])
133
+ stub_request(:get, "http://supermarket.getchef.com/universe").to_return(status: 500, body: "Internal Server Error")
134
134
  expect { subject }.to raise_error(Berkshelf::APIClient::ServiceUnavailable)
135
135
  end
136
136
 
137
137
  it "raises Berkshelf::APIClient::ServiceNotFound for 404s" do
138
- stub_request(:get, "http://supermarket.getchef.com/universe").to_return(status: [404, "Not Found"])
138
+ stub_request(:get, "http://supermarket.getchef.com/universe").to_return(status: 404, body: "Not Found")
139
139
  expect { subject }.to raise_error(Berkshelf::APIClient::ServiceNotFound)
140
140
  end
141
141
 
142
142
  it "raises Net::HTTPBadRequest for 400s" do
143
- stub_request(:get, "http://supermarket.getchef.com/universe").to_return(status: [400, "Bad Request"])
143
+ stub_request(:get, "http://supermarket.getchef.com/universe").to_return(status: 400, body: "Bad Request")
144
144
  expect { subject }.to raise_error(Berkshelf::APIClient::BadResponse)
145
145
  end
146
146
 
@@ -107,7 +107,7 @@ describe Berkshelf::CommunityREST do
107
107
  it "raises a CookbookNotFound error on a 404 response for a non-existent cookbook" do
108
108
  stub_request(:get, "#{api_uri}/cookbooks/not_real/versions/1_0_0").to_return(
109
109
  status: 404,
110
- body: nil
110
+ body: "Not Found"
111
111
  )
112
112
 
113
113
  expect do
@@ -142,7 +142,7 @@ describe Berkshelf::CommunityREST do
142
142
  it "raises a CookbookNotFound error on a 404 response" do
143
143
  stub_request(:get, "#{api_uri}/cookbooks/not_real").to_return(
144
144
  status: 404,
145
- body: nil
145
+ body: "Not Found"
146
146
  )
147
147
 
148
148
  expect do
@@ -177,7 +177,7 @@ describe Berkshelf::CommunityREST do
177
177
  it "raises a CookbookNotFound error on a 404 response" do
178
178
  stub_request(:get, "#{api_uri}/cookbooks/not_real").to_return(
179
179
  status: 404,
180
- body: nil
180
+ body: "Not Found"
181
181
  )
182
182
 
183
183
  expect do
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: berkshelf
3
3
  version: !ruby/object:Gem::Version
4
- version: 8.0.7
4
+ version: 8.0.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jamie Winsor
@@ -12,7 +12,7 @@ authors:
12
12
  autorequire:
13
13
  bindir: bin
14
14
  cert_chain: []
15
- date: 2023-06-12 00:00:00.000000000 Z
15
+ date: 2023-09-27 00:00:00.000000000 Z
16
16
  dependencies:
17
17
  - !ruby/object:Gem::Dependency
18
18
  name: mixlib-shellout