dependabot-npm_and_yarn 0.108.22 → 0.108.23

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: 856cb4a7571d2506400a5ae30116194ddac75e15c585b9f669b05aa776e3796b
4
- data.tar.gz: 675a5bd65bf5d508f8af5031bc952b22d4296e3caa29c9924eac9fb32e8bdf49
3
+ metadata.gz: 87b5d99a210efab1b054c7eeb6eb0f0c4eed0c94dee7e7893ac277ee4b78a734
4
+ data.tar.gz: 95cb320e0f95ac034f1d30e1a422b80c6b5d0839803bd0e167e5b810f9bfd1ba
5
5
  SHA512:
6
- metadata.gz: f39e953bef6feea6ac6fe1f8a54cdb3953476a15d9398486f245b774f6ae6d5ffea352c90e4824c94d213a53cb08dc31e5e6b3d56626449c0735f797afc5f795
7
- data.tar.gz: b25d8f06a6f211dba02f7768e09995aef4fe4d39dc329305ac5aae40c23ab75dc5163df9c52c821384300c1cc1e54653742fe01b9b0ef78edd895d7a3d100211
6
+ metadata.gz: a4ab341cb21ff8009b4add593fa0a3175dd9ff6b7fc27ae8c2ed4079d9f2692f7bc59276c8306b74bcbe1471b9717696be72d5b7c91be1a0be2c0f705ce1b677
7
+ data.tar.gz: 54f7adb032abd62403fec59042a182f71b838828a54e26f02c3486cf79496831b4ed6869c1d71280576343e20c14d0a1963b9c599bcfcec756479c037d776886
data/helpers/package.json CHANGED
@@ -15,7 +15,7 @@
15
15
  "semver": "^6.1.2"
16
16
  },
17
17
  "devDependencies": {
18
- "eslint": "^6.0.0",
18
+ "eslint": "^6.0.1",
19
19
  "eslint-plugin-prettier": "^3.1.0",
20
20
  "jest": "^24.8.0",
21
21
  "nock": "^10.0.6",
data/helpers/yarn.lock CHANGED
@@ -1652,10 +1652,10 @@ eslint-visitor-keys@^1.0.0:
1652
1652
  resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#3f3180fb2e291017716acb4c9d6d5b5c34a6a81d"
1653
1653
  integrity sha512-qzm/XxIbxm/FHyH341ZrbnMUpe+5Bocte9xkmFMzPMjRaZMcXww+MpBptFvtU+79L362nqiLhekCxCxDPaUMBQ==
1654
1654
 
1655
- eslint@^6.0.0:
1656
- version "6.0.0"
1657
- resolved "https://registry.yarnpkg.com/eslint/-/eslint-6.0.0.tgz#9223f19223de73b4ed730e11bff44a376b65844d"
1658
- integrity sha512-SrrIfcd4tOgsspOKTSwamuTOAMZOUigHQhVMrzNjz4/B9Za6SHQDIocMIyIDfwDgx6MhS15nS6HC8kumCV2qBQ==
1655
+ eslint@^6.0.1:
1656
+ version "6.0.1"
1657
+ resolved "https://registry.yarnpkg.com/eslint/-/eslint-6.0.1.tgz#4a32181d72cb999d6f54151df7d337131f81cda7"
1658
+ integrity sha512-DyQRaMmORQ+JsWShYsSg4OPTjY56u1nCjAmICrE8vLWqyLKxhFXOthwMj1SA8xwfrv0CofLNVnqbfyhwCkaO0w==
1659
1659
  dependencies:
1660
1660
  "@babel/code-frame" "^7.0.0"
1661
1661
  ajv "^6.10.0"
@@ -222,7 +222,7 @@ module Dependabot
222
222
 
223
223
  version_not_found = status == 404
224
224
  version_not_found && version_endpoint_working?
225
- rescue Excon::Error::Timeout
225
+ rescue Excon::Error::Timeout, Excon::Error::Socket
226
226
  # Give the benefit of the doubt if the registry is playing up
227
227
  false
228
228
  end
@@ -243,7 +243,7 @@ module Dependabot
243
243
  idempotent: true,
244
244
  **SharedHelpers.excon_defaults
245
245
  ).status < 400
246
- rescue Excon::Error::Timeout
246
+ rescue Excon::Error::Timeout, Excon::Error::Socket
247
247
  # Give the benefit of the doubt if the registry is playing up
248
248
  true
249
249
  end
@@ -259,7 +259,10 @@ module Dependabot
259
259
 
260
260
  check_npm_response(npm_response)
261
261
  JSON.parse(npm_response.body)
262
- rescue JSON::ParserError, Excon::Error::Timeout, RegistryError => e
262
+ rescue JSON::ParserError,
263
+ Excon::Error::Timeout,
264
+ Excon::Error::Socket,
265
+ RegistryError => e
263
266
  return if git_dependency?
264
267
 
265
268
  retry_count ||= 0
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dependabot-npm_and_yarn
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.108.22
4
+ version: 0.108.23
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dependabot
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-06-24 00:00:00.000000000 Z
11
+ date: 2019-06-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: dependabot-common
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - '='
18
18
  - !ruby/object:Gem::Version
19
- version: 0.108.22
19
+ version: 0.108.23
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - '='
25
25
  - !ruby/object:Gem::Version
26
- version: 0.108.22
26
+ version: 0.108.23
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: byebug
29
29
  requirement: !ruby/object:Gem::Requirement