dependabot-hex 0.242.1 → 0.243.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/hex/credential_helpers.rb +2 -2
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 729af470d2126773058f8cc9816cfc6f6f9b6aaf2dcb24faa35c1199696301bc
|
|
4
|
+
data.tar.gz: 1bea2e1784b987163840fe93683ad1e811e96583982f858fa465286b736c32be
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4e8771317e6fa7fd4db60501fcefdfce32d978c65e8f2fce763bfd9edff6e6f1f5cb3efa5a8a35e0fdc73bc1561aed3337f69a976f695f38cdf4ed1a2d9a2ba0
|
|
7
|
+
data.tar.gz: db63a139e19b7ea26d4f10a782a1d0a1989362f4eaf3b468ea592b106fa29f36b42674b2abfe1601a8c9161c7b84404c0fa41aecc92abc02d06ee239ea4551b9
|
|
@@ -9,7 +9,7 @@ module Dependabot
|
|
|
9
9
|
end
|
|
10
10
|
|
|
11
11
|
def self.organization_credentials(credentials)
|
|
12
|
-
defaults = { "organization" => "", "token" => "" }
|
|
12
|
+
defaults = Dependabot::Credential.new({ "organization" => "", "token" => "" })
|
|
13
13
|
keys = %w(type organization token)
|
|
14
14
|
|
|
15
15
|
credentials
|
|
@@ -20,7 +20,7 @@ module Dependabot
|
|
|
20
20
|
def self.repo_credentials(credentials)
|
|
21
21
|
# Credentials are serialized as an array that may not have optional fields. Using a
|
|
22
22
|
# default ensures that the array is always the same length, even if values are empty.
|
|
23
|
-
defaults = { "url" => "", "auth_key" => "", "public_key_fingerprint" => "" }
|
|
23
|
+
defaults = Dependabot::Credential.new({ "url" => "", "auth_key" => "", "public_key_fingerprint" => "" })
|
|
24
24
|
keys = %w(type repo url auth_key public_key_fingerprint)
|
|
25
25
|
|
|
26
26
|
credentials
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dependabot-hex
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.243.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Dependabot
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-
|
|
11
|
+
date: 2024-02-13 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.
|
|
19
|
+
version: 0.243.0
|
|
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.
|
|
26
|
+
version: 0.243.0
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: debug
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -258,7 +258,7 @@ licenses:
|
|
|
258
258
|
- Nonstandard
|
|
259
259
|
metadata:
|
|
260
260
|
bug_tracker_uri: https://github.com/dependabot/dependabot-core/issues
|
|
261
|
-
changelog_uri: https://github.com/dependabot/dependabot-core/releases/tag/v0.
|
|
261
|
+
changelog_uri: https://github.com/dependabot/dependabot-core/releases/tag/v0.243.0
|
|
262
262
|
post_install_message:
|
|
263
263
|
rdoc_options: []
|
|
264
264
|
require_paths:
|