dependabot-cargo 0.372.0 → 0.373.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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fbd8702976abcb7605ae301567e2c69170255f4bede215014b601a1b6321dd8f
|
|
4
|
+
data.tar.gz: 0bd0d7ef4223ffc7066a27325079a32b3bb4303b9e2eb4d45a8ac3fbb17e4a0a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e7ef3121684bcc9e1ee5ee56f0887f3922e178c02e1ffe696eb06d0c37515241e94c713ba513ced8586eae90c62aeda5cd32fc7e12edea1e3699bd2123981272
|
|
7
|
+
data.tar.gz: 1cd491c8ed61d07b5837821911a4acc5d817e29b42974660aec0e5b8b5f9f05a4cbeeccc43d2a5411b560f82c9e35f36e2414836416609c8f4110937aa0ed5ee
|
|
@@ -291,6 +291,10 @@ module Dependabot
|
|
|
291
291
|
def using_old_toolchain?(message)
|
|
292
292
|
return true if message.include?("usage of sparse registries requires `-Z sparse-registry`")
|
|
293
293
|
|
|
294
|
+
# Detect rustup installation failures for old toolchains (e.g. "syncing channel updates for 1.67-x86_64-...")
|
|
295
|
+
rustup_channel = /syncing channel updates for (?<version>\d+\.\d+)-/.match(message)
|
|
296
|
+
return version_class.new(rustup_channel[:version]) < version_class.new("1.68") if rustup_channel
|
|
297
|
+
|
|
294
298
|
version_log = /rust version (?<version>\d.\d+)/.match(message)
|
|
295
299
|
return false unless version_log
|
|
296
300
|
|
|
@@ -338,6 +338,10 @@ module Dependabot
|
|
|
338
338
|
def using_old_toolchain?(message)
|
|
339
339
|
return true if T.must(message).include?("usage of sparse registries requires `-Z sparse-registry`")
|
|
340
340
|
|
|
341
|
+
# Detect rustup installation failures for old toolchains (e.g. "syncing channel updates for 1.67-x86_64-...")
|
|
342
|
+
rustup_channel = /syncing channel updates for (?<version>\d+\.\d+)-/.match(T.must(message))
|
|
343
|
+
return version_class.new(rustup_channel[:version]) < version_class.new("1.68") if rustup_channel
|
|
344
|
+
|
|
341
345
|
version_log = /rust version (?<version>\d.\d+)/.match(message)
|
|
342
346
|
return false unless version_log
|
|
343
347
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dependabot-cargo
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.373.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Dependabot
|
|
@@ -15,14 +15,14 @@ dependencies:
|
|
|
15
15
|
requirements:
|
|
16
16
|
- - '='
|
|
17
17
|
- !ruby/object:Gem::Version
|
|
18
|
-
version: 0.
|
|
18
|
+
version: 0.373.0
|
|
19
19
|
type: :runtime
|
|
20
20
|
prerelease: false
|
|
21
21
|
version_requirements: !ruby/object:Gem::Requirement
|
|
22
22
|
requirements:
|
|
23
23
|
- - '='
|
|
24
24
|
- !ruby/object:Gem::Version
|
|
25
|
-
version: 0.
|
|
25
|
+
version: 0.373.0
|
|
26
26
|
- !ruby/object:Gem::Dependency
|
|
27
27
|
name: debug
|
|
28
28
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -266,7 +266,7 @@ licenses:
|
|
|
266
266
|
- MIT
|
|
267
267
|
metadata:
|
|
268
268
|
bug_tracker_uri: https://github.com/dependabot/dependabot-core/issues
|
|
269
|
-
changelog_uri: https://github.com/dependabot/dependabot-core/releases/tag/v0.
|
|
269
|
+
changelog_uri: https://github.com/dependabot/dependabot-core/releases/tag/v0.373.0
|
|
270
270
|
rdoc_options: []
|
|
271
271
|
require_paths:
|
|
272
272
|
- lib
|