dependabot-common 0.185.0 → 0.187.0
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 +4 -4
- data/lib/dependabot/shared_helpers.rb +3 -0
- data/lib/dependabot/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5a415dd5d41d2ea9bd87ba43b0f9ad9d45e55e8169f7e27e005512fb5a0e08ab
|
|
4
|
+
data.tar.gz: 50534c221638a6e3d1bb243723ec057005c965a0d0755d0d4dcef69f7f03d4fa
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 27fc351fde03f6f671677a95f079d2b36995a8f00feb1dcefaaefbf9a2eedebd72bc3b4491631dc3dd96ea016c74871695915721387e8f83466eb9a0a8470c04
|
|
7
|
+
data.tar.gz: 3c240fc2d29dfa10702d75ec274ec1b9bba7ffa031d1a4d5843fa0b3cdf3294715c633d85c0585e2e655b965920c4432078e6b33818f9e7c36cea40757d9c308
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
+
require "active_support/notifications"
|
|
3
4
|
require "digest"
|
|
4
5
|
require "English"
|
|
5
6
|
require "excon"
|
|
@@ -150,9 +151,11 @@ module Dependabot
|
|
|
150
151
|
options ||= {}
|
|
151
152
|
headers = options.delete(:headers)
|
|
152
153
|
{
|
|
154
|
+
instrumentor: ActiveSupport::Notifications,
|
|
153
155
|
connect_timeout: 5,
|
|
154
156
|
write_timeout: 5,
|
|
155
157
|
read_timeout: 20,
|
|
158
|
+
retry_limit: 4, # Excon defaults to four retries, but let's set it explicitly for clarity
|
|
156
159
|
omit_default_port: true,
|
|
157
160
|
middlewares: excon_middleware,
|
|
158
161
|
headers: excon_headers(headers)
|
data/lib/dependabot/version.rb
CHANGED
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.
|
|
4
|
+
version: 0.187.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Dependabot
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-05-
|
|
11
|
+
date: 2022-05-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|