dependabot-uv 0.390.0 → 0.391.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/helpers/requirements.txt +1 -1
- data/lib/dependabot/uv/dependency_grapher.rb +2 -2
- data/lib/dependabot/uv/file_fetcher/workspace_fetcher.rb +1 -1
- data/lib/dependabot/uv/file_fetcher.rb +2 -2
- data/lib/dependabot/uv/file_parser/python_requirement_parser.rb +2 -2
- data/lib/dependabot/uv/file_updater/compile_file_updater.rb +12 -17
- data/lib/dependabot/uv/file_updater/lock_file_error_handler.rb +22 -62
- data/lib/dependabot/uv/file_updater/lock_file_updater.rb +14 -14
- data/lib/dependabot/uv/requirement_suffix_helper.rb +4 -7
- data/lib/dependabot/uv/update_checker/pip_compile_version_resolver.rb +19 -27
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8aae027d8e4328d4979db8067b5fc2a0c277a257e3bcf2394620a175f1b34273
|
|
4
|
+
data.tar.gz: 6defb5dddfbdcf1e698061faa33c0ad8e62fc92d6784ec3202c0bfbb7b2be708
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 83215549f85c5492a144f50e6ed0c3588ba6aa64cf023aa749f629197319e1b5b8fdd001cf07874ba108d20ed107c579dcb753c1edfc8205f2a2b6cc274b9375
|
|
7
|
+
data.tar.gz: e84514279e143ae6125742d75d11b6b4d24262d2e7b423972be2e1132a8f82d77560e067bd1d1dff2aceecd7de892afc6428cefde84e32665f59ca7ab889e0cb
|
data/helpers/requirements.txt
CHANGED
|
@@ -12,8 +12,8 @@ require "toml-rb"
|
|
|
12
12
|
module Dependabot
|
|
13
13
|
module Uv
|
|
14
14
|
class DependencyGrapher < Dependabot::DependencyGraphers::Base
|
|
15
|
-
RUNTIME_GROUP =
|
|
16
|
-
DEV_GROUP =
|
|
15
|
+
RUNTIME_GROUP = "dependencies"
|
|
16
|
+
DEV_GROUP = "dev-dependencies"
|
|
17
17
|
|
|
18
18
|
sig { override.returns(Dependabot::DependencyFile) }
|
|
19
19
|
def relevant_dependency_file
|
|
@@ -16,7 +16,7 @@ module Dependabot
|
|
|
16
16
|
class FileFetcher < Dependabot::Python::SharedFileFetcher
|
|
17
17
|
extend T::Sig
|
|
18
18
|
|
|
19
|
-
ECOSYSTEM_SPECIFIC_FILES =
|
|
19
|
+
ECOSYSTEM_SPECIFIC_FILES = %w(uv.lock).freeze
|
|
20
20
|
|
|
21
21
|
REQUIREMENT_FILE_PATTERNS = T.let(
|
|
22
22
|
{
|
|
@@ -27,7 +27,7 @@ module Dependabot
|
|
|
27
27
|
)
|
|
28
28
|
|
|
29
29
|
# Projects that use README files for metadata may use any of these common names
|
|
30
|
-
README_FILENAMES =
|
|
30
|
+
README_FILENAMES = %w(README.md README.rst README.txt README).freeze
|
|
31
31
|
|
|
32
32
|
# Type alias for path dependency hashes
|
|
33
33
|
PathDependency = T.type_alias { T::Hash[Symbol, String] }
|
|
@@ -92,7 +92,7 @@ module Dependabot
|
|
|
92
92
|
end.reject(&:empty?)
|
|
93
93
|
|
|
94
94
|
file_version = content_lines.first
|
|
95
|
-
return if file_version
|
|
95
|
+
return if file_version && file_version.empty?
|
|
96
96
|
return unless T.must(pyenv_versions).include?("#{file_version}\n")
|
|
97
97
|
|
|
98
98
|
file_version
|
|
@@ -104,7 +104,7 @@ module Dependabot
|
|
|
104
104
|
|
|
105
105
|
file_version = T.must(T.must(runtime_file).content)
|
|
106
106
|
.match(/(?<=python-).*/)&.to_s&.strip
|
|
107
|
-
return if file_version
|
|
107
|
+
return if file_version && file_version.empty?
|
|
108
108
|
return unless T.must(pyenv_versions).include?("#{file_version}\n")
|
|
109
109
|
|
|
110
110
|
file_version
|
|
@@ -26,19 +26,14 @@ module Dependabot
|
|
|
26
26
|
require_relative "requirement_file_updater"
|
|
27
27
|
require_relative "lock_file_error_handler"
|
|
28
28
|
|
|
29
|
-
UNSAFE_PACKAGES =
|
|
30
|
-
INCOMPATIBLE_VERSIONS_REGEX =
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
)
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
NATIVE_COMPILATION_ERROR = T.let(
|
|
38
|
-
"pip._internal.exceptions.InstallationSubprocessError: Getting requirements to build wheel exited with 1",
|
|
39
|
-
String
|
|
40
|
-
)
|
|
41
|
-
PYTHON_VERSION_REGEX = T.let(/--python-version[=\s]+(?<version>\d+\.\d+(?:\.\d+)?)/, Regexp)
|
|
29
|
+
UNSAFE_PACKAGES = %w(setuptools distribute pip).freeze
|
|
30
|
+
INCOMPATIBLE_VERSIONS_REGEX = /There are incompatible versions in the resolved dependencies:.*\z/m
|
|
31
|
+
WARNINGS = /\s*# WARNING:.*\Z/m
|
|
32
|
+
UNSAFE_NOTE = /\s*# The following packages are considered to be unsafe.*\Z/m
|
|
33
|
+
RESOLVER_REGEX = /(?<=--resolver=)(\w+)/
|
|
34
|
+
NATIVE_COMPILATION_ERROR =
|
|
35
|
+
"pip._internal.exceptions.InstallationSubprocessError: Getting requirements to build wheel exited with 1"
|
|
36
|
+
PYTHON_VERSION_REGEX = /--python-version[=\s]+(?<version>\d+\.\d+(?:\.\d+)?)/
|
|
42
37
|
|
|
43
38
|
sig { returns(T::Array[Dependabot::Dependency]) }
|
|
44
39
|
attr_reader :dependencies
|
|
@@ -58,10 +53,10 @@ module Dependabot
|
|
|
58
53
|
).void
|
|
59
54
|
end
|
|
60
55
|
def initialize(dependencies:, dependency_files:, credentials:, index_urls: nil)
|
|
61
|
-
@dependencies =
|
|
62
|
-
@dependency_files =
|
|
63
|
-
@credentials =
|
|
64
|
-
@index_urls =
|
|
56
|
+
@dependencies = dependencies
|
|
57
|
+
@dependency_files = dependency_files
|
|
58
|
+
@credentials = credentials
|
|
59
|
+
@index_urls = index_urls
|
|
65
60
|
@build_isolation = T.let(true, T::Boolean)
|
|
66
61
|
end
|
|
67
62
|
|
|
@@ -11,35 +11,17 @@ module Dependabot
|
|
|
11
11
|
class LockFileErrorHandler
|
|
12
12
|
extend T::Sig
|
|
13
13
|
|
|
14
|
-
UV_UNRESOLVABLE_REGEX =
|
|
15
|
-
UV_BUILD_FAILED_REGEX =
|
|
16
|
-
RESOLUTION_IMPOSSIBLE_ERROR =
|
|
17
|
-
|
|
18
|
-
GIT_DEPENDENCY_UNREACHABLE_REGEX =
|
|
19
|
-
GIT_REFERENCE_NOT_FOUND_REGEX =
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
Regexp
|
|
26
|
-
)
|
|
27
|
-
GIT_DEPENDENCY_URL_FROM_UV_REGEX = T.let(
|
|
28
|
-
%r{git\+(?<url>https?://[^\s@#]+)},
|
|
29
|
-
Regexp
|
|
30
|
-
)
|
|
31
|
-
PYTHON_VERSION_ERROR_REGEX = T.let(
|
|
32
|
-
/Requires-Python|requires-python|python_requires|Python version/i,
|
|
33
|
-
Regexp
|
|
34
|
-
)
|
|
35
|
-
AUTH_ERROR_REGEX = T.let(
|
|
36
|
-
/authentication|unauthorized|forbidden|HTTP status code: 40[13]/i,
|
|
37
|
-
Regexp
|
|
38
|
-
)
|
|
39
|
-
TIMEOUT_ERROR_REGEX = T.let(
|
|
40
|
-
/timed?\s*out|connection.*reset|read timeout|connect timeout/i,
|
|
41
|
-
Regexp
|
|
42
|
-
)
|
|
14
|
+
UV_UNRESOLVABLE_REGEX = /× No solution found when resolving dependencies.*[\s\S]*$/
|
|
15
|
+
UV_BUILD_FAILED_REGEX = /× Failed to build.*[\s\S]*$/
|
|
16
|
+
RESOLUTION_IMPOSSIBLE_ERROR = "ResolutionImpossible"
|
|
17
|
+
|
|
18
|
+
GIT_DEPENDENCY_UNREACHABLE_REGEX = %r{git clone.*(?<url>https?://[^\s]+)}
|
|
19
|
+
GIT_REFERENCE_NOT_FOUND_REGEX = /Did not find branch or tag '(?<tag>[^\n"']+)'/m
|
|
20
|
+
GIT_CREDENTIALS_ERROR_REGEX = /could not read Username for '(?<url>[^']+)'/
|
|
21
|
+
GIT_DEPENDENCY_URL_FROM_UV_REGEX = %r{git\+(?<url>https?://[^\s@#]+)}
|
|
22
|
+
PYTHON_VERSION_ERROR_REGEX = /Requires-Python|requires-python|python_requires|Python version/i
|
|
23
|
+
AUTH_ERROR_REGEX = /authentication|unauthorized|forbidden|HTTP status code: 40[13]/i
|
|
24
|
+
TIMEOUT_ERROR_REGEX = /timed?\s*out|connection.*reset|read timeout|connect timeout/i
|
|
43
25
|
NETWORK_ERROR_REGEX = T.let(
|
|
44
26
|
Regexp.union(
|
|
45
27
|
/ConnectionError/i,
|
|
@@ -52,39 +34,17 @@ module Dependabot
|
|
|
52
34
|
),
|
|
53
35
|
Regexp
|
|
54
36
|
)
|
|
55
|
-
PACKAGE_NOT_FOUND_REGEX =
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
)
|
|
59
|
-
UV_REQUIRED_VERSION_REGEX = T.let(
|
|
60
|
-
/Required uv version `(?<required>[^`]+)` does not match the running version `(?<running>[^`]+)`/,
|
|
61
|
-
Regexp
|
|
62
|
-
)
|
|
63
|
-
TOML_PARSE_ERROR_REGEX = T.let(
|
|
64
|
-
/Failed to parse:?\s*`?(?<file>[^`\n]+\.toml)`?|TOML parse error/i,
|
|
65
|
-
Regexp
|
|
66
|
-
)
|
|
37
|
+
PACKAGE_NOT_FOUND_REGEX = /No matching distribution found|package.*not found|No versions found/i
|
|
38
|
+
UV_REQUIRED_VERSION_REGEX =
|
|
39
|
+
/Required uv version `(?<required>[^`]+)` does not match the running version `(?<running>[^`]+)`/
|
|
40
|
+
TOML_PARSE_ERROR_REGEX = /Failed to parse:?\s*`?(?<file>[^`\n]+\.toml)`?|TOML parse error/i
|
|
67
41
|
# uv prefixes errors with interpreter info that should be stripped
|
|
68
|
-
USING_CPYTHON_LINE_REGEX =
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
Regexp
|
|
75
|
-
)
|
|
76
|
-
WORKSPACE_MEMBER_ERROR_REGEX = T.let(
|
|
77
|
-
/Failed to find workspace member|No `pyproject\.toml` found in workspace member/i,
|
|
78
|
-
Regexp
|
|
79
|
-
)
|
|
80
|
-
PATH_DEPENDENCY_ERROR_REGEX = T.let(
|
|
81
|
-
/Failed to read `(?<path>[^`]+)`|failed to read from file `(?<path>[^`]+)`/i,
|
|
82
|
-
Regexp
|
|
83
|
-
)
|
|
84
|
-
HTTP_STATUS_ERROR_REGEX = T.let(
|
|
85
|
-
/HTTP status code: (?<code>\d{3})/i,
|
|
86
|
-
Regexp
|
|
87
|
-
)
|
|
42
|
+
USING_CPYTHON_LINE_REGEX = /\AUsing CPython \S+ interpreter at: [^\n]+\n?/
|
|
43
|
+
PYPROJECT_SCHEMA_ERROR_REGEX =
|
|
44
|
+
/missing field `project`|missing.*\[project\].*table|Field `project\.name` is required/i
|
|
45
|
+
WORKSPACE_MEMBER_ERROR_REGEX = /Failed to find workspace member|No `pyproject\.toml` found in workspace member/i
|
|
46
|
+
PATH_DEPENDENCY_ERROR_REGEX = /Failed to read `(?<path>[^`]+)`|failed to read from file `(?<path>[^`]+)`/i
|
|
47
|
+
HTTP_STATUS_ERROR_REGEX = /HTTP status code: (?<code>\d{3})/i
|
|
88
48
|
UV_MISCONFIGURED_REGEX = T.let(
|
|
89
49
|
Regexp.union(
|
|
90
50
|
/unknown field `[^`]+`, expected one of/i,
|
|
@@ -100,7 +60,7 @@ module Dependabot
|
|
|
100
60
|
# This limit ensures error messages remain readable while providing enough
|
|
101
61
|
# context for debugging. Most uv error messages convey the key information
|
|
102
62
|
# within the first few lines.
|
|
103
|
-
MAX_ERROR_LINES =
|
|
63
|
+
MAX_ERROR_LINES = 10
|
|
104
64
|
|
|
105
65
|
sig { params(error: SharedHelpers::HelperSubprocessFailed).returns(T.noreturn) }
|
|
106
66
|
def handle_uv_error(error)
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
require "toml-rb"
|
|
5
5
|
require "open3"
|
|
6
|
+
require "uri"
|
|
6
7
|
require "dependabot/dependency"
|
|
7
8
|
require "dependabot/shared_helpers"
|
|
8
9
|
require "dependabot/uv/language_version_manager"
|
|
@@ -399,9 +400,12 @@ module Dependabot
|
|
|
399
400
|
.reject { |cred| skip_lock_index_credential?(cred) }
|
|
400
401
|
end
|
|
401
402
|
|
|
403
|
+
# Skip credentials whose index is already declared in pyproject.toml; those are
|
|
404
|
+
# authenticated via UV_INDEX_<NAME>_* env vars (see #pyproject_index_env_vars) so uv
|
|
405
|
+
# uses the pyproject.toml index entry directly, avoiding a duplicate --index flag.
|
|
402
406
|
sig { params(credential: Dependabot::Credential).returns(T::Boolean) }
|
|
403
407
|
def skip_lock_index_credential?(credential)
|
|
404
|
-
|
|
408
|
+
defined_in_pyproject?(credential)
|
|
405
409
|
end
|
|
406
410
|
|
|
407
411
|
sig do
|
|
@@ -504,16 +508,6 @@ module Dependabot
|
|
|
504
508
|
[]
|
|
505
509
|
end
|
|
506
510
|
|
|
507
|
-
sig { params(credential: Dependabot::Credential).returns(T::Boolean) }
|
|
508
|
-
def explicit_index?(credential)
|
|
509
|
-
return false if credential.replaces_base?
|
|
510
|
-
|
|
511
|
-
cred_url = normalize_index_url(credential["index-url"].to_s)
|
|
512
|
-
uv_indices.any? do |_name, config|
|
|
513
|
-
config["explicit"] == true && normalize_index_url(config["url"].to_s) == cred_url
|
|
514
|
-
end
|
|
515
|
-
end
|
|
516
|
-
|
|
517
511
|
# Checks if a credential's index URL matches any index defined in pyproject.toml.
|
|
518
512
|
# When true, authentication is provided via env vars so uv uses the pyproject.toml URL,
|
|
519
513
|
# preserving URL format alignment between pyproject.toml and uv.lock.
|
|
@@ -522,8 +516,15 @@ module Dependabot
|
|
|
522
516
|
!find_index_name_for_credential(credential).nil?
|
|
523
517
|
end
|
|
524
518
|
|
|
519
|
+
# Strips trailing slashes and any embedded userinfo so a pyproject.toml URL like
|
|
520
|
+
# https://oauth2accesstoken@host/path matches a credential URL like https://host/path.
|
|
525
521
|
sig { params(url: String).returns(String) }
|
|
526
522
|
def normalize_index_url(url)
|
|
523
|
+
uri = URI.parse(url.chomp("/"))
|
|
524
|
+
uri.user = nil
|
|
525
|
+
uri.password = nil
|
|
526
|
+
uri.to_s
|
|
527
|
+
rescue URI::InvalidURIError
|
|
527
528
|
url.chomp("/")
|
|
528
529
|
end
|
|
529
530
|
|
|
@@ -545,8 +546,7 @@ module Dependabot
|
|
|
545
546
|
next unless name
|
|
546
547
|
|
|
547
548
|
result[name] = {
|
|
548
|
-
"url" => index["url"]
|
|
549
|
-
"explicit" => index["explicit"] == true
|
|
549
|
+
"url" => index["url"]
|
|
550
550
|
}
|
|
551
551
|
end
|
|
552
552
|
rescue TomlRB::ParseError
|
|
@@ -719,7 +719,7 @@ module Dependabot
|
|
|
719
719
|
def create_or_update_lock_file?
|
|
720
720
|
return true if lockfile && T.must(dependency).requirements.empty?
|
|
721
721
|
|
|
722
|
-
T.must(dependency).requirements.
|
|
722
|
+
T.must(dependency).requirements.any? { _1[:file].end_with?(*REQUIRED_FILES) }
|
|
723
723
|
end
|
|
724
724
|
|
|
725
725
|
sig { returns(T::Hash[String, String]) }
|
|
@@ -8,13 +8,10 @@ module Dependabot
|
|
|
8
8
|
module RequirementSuffixHelper
|
|
9
9
|
extend T::Sig
|
|
10
10
|
|
|
11
|
-
REQUIREMENT_SUFFIX_REGEX =
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
).freeze,
|
|
16
|
-
Regexp
|
|
17
|
-
)
|
|
11
|
+
REQUIREMENT_SUFFIX_REGEX = Regexp.new(
|
|
12
|
+
"\\A(?<requirement>.*?)(?<suffix>\\s*(?:;|#).*)?\\z",
|
|
13
|
+
Regexp::MULTILINE
|
|
14
|
+
).freeze
|
|
18
15
|
|
|
19
16
|
sig { params(segment: String).returns(T::Array[String]) }
|
|
20
17
|
def self.split(segment)
|
|
@@ -28,26 +28,18 @@ module Dependabot
|
|
|
28
28
|
class PipCompileVersionResolver
|
|
29
29
|
extend T::Sig
|
|
30
30
|
|
|
31
|
-
GIT_DEPENDENCY_UNREACHABLE_REGEX =
|
|
32
|
-
GIT_REFERENCE_NOT_FOUND_REGEX =
|
|
33
|
-
GIT_CREDENTIALS_ERROR_REGEX =
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
GIT_DEPENDENCY_URL_FROM_UV_REGEX = T.let(
|
|
38
|
-
%r{git\+(?<url>https?://[^\s@#]+)},
|
|
39
|
-
Regexp
|
|
40
|
-
)
|
|
41
|
-
NATIVE_COMPILATION_ERROR = T.let(
|
|
42
|
-
"pip._internal.exceptions.InstallationSubprocessError: Getting requirements to build wheel exited with 1",
|
|
43
|
-
String
|
|
44
|
-
)
|
|
31
|
+
GIT_DEPENDENCY_UNREACHABLE_REGEX = /git clone --filter=blob:none --quiet (?<url>[^\s]+).* /
|
|
32
|
+
GIT_REFERENCE_NOT_FOUND_REGEX = /Did not find branch or tag '(?<tag>[^\n"]+)'/m
|
|
33
|
+
GIT_CREDENTIALS_ERROR_REGEX = /could not read Username for '(?<url>[^']+)'/
|
|
34
|
+
GIT_DEPENDENCY_URL_FROM_UV_REGEX = %r{git\+(?<url>https?://[^\s@#]+)}
|
|
35
|
+
NATIVE_COMPILATION_ERROR =
|
|
36
|
+
"pip._internal.exceptions.InstallationSubprocessError: Getting requirements to build wheel exited with 1"
|
|
45
37
|
# See https://packaging.python.org/en/latest/tutorials/packaging-projects/#configuring-metadata
|
|
46
|
-
PYTHON_PACKAGE_NAME_REGEX =
|
|
47
|
-
RESOLUTION_IMPOSSIBLE_ERROR =
|
|
48
|
-
ERROR_REGEX =
|
|
49
|
-
UV_UNRESOLVABLE_REGEX =
|
|
50
|
-
PYTHON_VERSION_REGEX =
|
|
38
|
+
PYTHON_PACKAGE_NAME_REGEX = /[A-Za-z0-9_\-]+/
|
|
39
|
+
RESOLUTION_IMPOSSIBLE_ERROR = "ResolutionImpossible"
|
|
40
|
+
ERROR_REGEX = /(?<=ERROR\:\W).*$/
|
|
41
|
+
UV_UNRESOLVABLE_REGEX = / × No solution found when resolving dependencies:[\s\S]*$/
|
|
42
|
+
PYTHON_VERSION_REGEX = /--python-version[=\s]+(?<version>\d+\.\d+(?:\.\d+)?)/
|
|
51
43
|
|
|
52
44
|
sig { returns(Dependabot::Dependency) }
|
|
53
45
|
attr_reader :dependency
|
|
@@ -73,10 +65,10 @@ module Dependabot
|
|
|
73
65
|
).void
|
|
74
66
|
end
|
|
75
67
|
def initialize(dependency:, dependency_files:, credentials:, repo_contents_path:)
|
|
76
|
-
@dependency =
|
|
77
|
-
@dependency_files =
|
|
78
|
-
@credentials =
|
|
79
|
-
@repo_contents_path =
|
|
68
|
+
@dependency = dependency
|
|
69
|
+
@dependency_files = dependency_files
|
|
70
|
+
@credentials = credentials
|
|
71
|
+
@repo_contents_path = repo_contents_path
|
|
80
72
|
@build_isolation = T.let(true, T::Boolean)
|
|
81
73
|
@error_handler = T.let(PipCompileErrorHandler.new, PipCompileErrorHandler)
|
|
82
74
|
end
|
|
@@ -609,13 +601,13 @@ module Dependabot
|
|
|
609
601
|
class PipCompileErrorHandler
|
|
610
602
|
extend T::Sig
|
|
611
603
|
|
|
612
|
-
SUBPROCESS_ERROR =
|
|
604
|
+
SUBPROCESS_ERROR = /subprocess-exited-with-error/
|
|
613
605
|
|
|
614
|
-
INSTALLATION_ERROR =
|
|
606
|
+
INSTALLATION_ERROR = /InstallationError/
|
|
615
607
|
|
|
616
|
-
INSTALLATION_SUBPROCESS_ERROR =
|
|
608
|
+
INSTALLATION_SUBPROCESS_ERROR = /InstallationSubprocessError/
|
|
617
609
|
|
|
618
|
-
HASH_MISMATCH =
|
|
610
|
+
HASH_MISMATCH = /HashMismatch/
|
|
619
611
|
|
|
620
612
|
sig { params(error: String).void }
|
|
621
613
|
def handle_pipcompile_error(error)
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dependabot-uv
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.391.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Dependabot
|
|
@@ -15,28 +15,28 @@ dependencies:
|
|
|
15
15
|
requirements:
|
|
16
16
|
- - '='
|
|
17
17
|
- !ruby/object:Gem::Version
|
|
18
|
-
version: 0.
|
|
18
|
+
version: 0.391.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.391.0
|
|
26
26
|
- !ruby/object:Gem::Dependency
|
|
27
27
|
name: dependabot-python
|
|
28
28
|
requirement: !ruby/object:Gem::Requirement
|
|
29
29
|
requirements:
|
|
30
30
|
- - '='
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
|
-
version: 0.
|
|
32
|
+
version: 0.391.0
|
|
33
33
|
type: :runtime
|
|
34
34
|
prerelease: false
|
|
35
35
|
version_requirements: !ruby/object:Gem::Requirement
|
|
36
36
|
requirements:
|
|
37
37
|
- - '='
|
|
38
38
|
- !ruby/object:Gem::Version
|
|
39
|
-
version: 0.
|
|
39
|
+
version: 0.391.0
|
|
40
40
|
- !ruby/object:Gem::Dependency
|
|
41
41
|
name: debug
|
|
42
42
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -301,7 +301,7 @@ licenses:
|
|
|
301
301
|
- MIT
|
|
302
302
|
metadata:
|
|
303
303
|
bug_tracker_uri: https://github.com/dependabot/dependabot-core/issues
|
|
304
|
-
changelog_uri: https://github.com/dependabot/dependabot-core/releases/tag/v0.
|
|
304
|
+
changelog_uri: https://github.com/dependabot/dependabot-core/releases/tag/v0.391.0
|
|
305
305
|
rdoc_options: []
|
|
306
306
|
require_paths:
|
|
307
307
|
- lib
|