dependabot-common 0.151.1 → 0.152.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: c6c34567520949a76f0dbf7d249661def4c89a742162485337625e60fd63ff27
4
- data.tar.gz: b341918ad95d6036adb20f12e9e2ed0dd20ba7e8dbcdded6cb082ac50dc689a7
3
+ metadata.gz: df71ebefe835a5dcc3ce7b067fe3044d36ba4d18898eae0a94b00403936dc7de
4
+ data.tar.gz: 4b54a35869fa0e366dd6d62931535f0f2f7a6761fb019f3807dc94ef074f162a
5
5
  SHA512:
6
- metadata.gz: 19c37134e349976ce49ac2479c79bbdfd112b36195dcf3368abc2744f20cdab2ff1cd73641c32ce76b57d1ed43e6c5fc127af2388970a9d9da3e817e3cf46272
7
- data.tar.gz: 9333b2f27c648e28025931fc1de517ef459ddec5cfefd34dc588bc4d8f4827aabd01292efb441c18a087244ebf130832fc9d441a642de8254173b4e4db633a0e
6
+ metadata.gz: ecb34fee2a18b042c38c5fc02d36e6d9f2e8bc64fb22da7edae5a2bdaa2d8efcadd6edd25e91978c35a369546ea5af792618a367bf6b33b85cde69c30d1f8645
7
+ data.tar.gz: 273b011695d020b8a101ec335f2c44d942d55545025d379e89d073fa3474f959522de74bbac5efec24df1561a8fbd922ac5687ad92c3f615542b0dbfe50d9b20
@@ -234,20 +234,29 @@ module Dependabot
234
234
  end
235
235
 
236
236
  def post(url, json)
237
- response = Excon.post(
238
- url,
239
- body: json,
240
- user: credentials&.fetch("username", nil),
241
- password: credentials&.fetch("password", nil),
242
- idempotent: true,
243
- **SharedHelpers.excon_defaults(
244
- headers: auth_header.merge(
245
- {
246
- "Content-Type" => "application/json"
247
- }
237
+ response = nil
238
+
239
+ retry_connection_failures do
240
+ response = Excon.post(
241
+ url,
242
+ body: json,
243
+ user: credentials&.fetch("username", nil),
244
+ password: credentials&.fetch("password", nil),
245
+ idempotent: true,
246
+ **SharedHelpers.excon_defaults(
247
+ headers: auth_header.merge(
248
+ {
249
+ "Content-Type" => "application/json"
250
+ }
251
+ )
248
252
  )
249
253
  )
250
- )
254
+
255
+ raise InternalServerError if response.status == 500
256
+ raise BadGateway if response.status == 502
257
+ raise ServiceNotAvailable if response.status == 503
258
+ end
259
+
251
260
  raise NotFound if response.status == 404
252
261
 
253
262
  response
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Dependabot
4
- VERSION = "0.151.1"
4
+ VERSION = "0.152.0"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dependabot-common
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.151.1
4
+ version: 0.152.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dependabot
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-06-07 00:00:00.000000000 Z
11
+ date: 2021-06-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport