dependabot-python 0.123.0 → 0.124.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/helpers/build +1 -1
- data/helpers/requirements.txt +1 -1
- data/lib/dependabot/python/python_versions.rb +2 -1
- data/lib/dependabot/python/update_checker.rb +5 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fd0b26270ae9155bc234f1f47e4bc25f65e6213f59ce60cc2df85dcfad280461
|
4
|
+
data.tar.gz: bd91d524f0309a30c22aaa862fcb257297138560e51f7513d3e25fd4b1f4c033
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 638cb0adabdc90771b696696f70a4785251417e9e8b03da9e4202d6e296c6293f51350db0a746a1c5f926db236bc383490bc065d93a7091c9b7c6be5e503f174
|
7
|
+
data.tar.gz: c5daa4592b35b3132d6aa260863ede55baef81679bbe77a0ee800fb853f7df5c8bb176acb0cf4e02279d8ff287dfd79fa960f69717ac8751b792db7739069a1e
|
data/helpers/build
CHANGED
data/helpers/requirements.txt
CHANGED
@@ -4,12 +4,13 @@ module Dependabot
|
|
4
4
|
module Python
|
5
5
|
module PythonVersions
|
6
6
|
PRE_INSTALLED_PYTHON_VERSIONS = %w(
|
7
|
-
3.
|
7
|
+
3.9.0 2.7.18
|
8
8
|
).freeze
|
9
9
|
|
10
10
|
# Due to an OpenSSL issue we can only install the following versions in
|
11
11
|
# the Dependabot container.
|
12
12
|
SUPPORTED_VERSIONS = %w(
|
13
|
+
3.9.0
|
13
14
|
3.8.6 3.8.5 3.8.4 3.8.3 3.8.2 3.8.1 3.8.0
|
14
15
|
3.7.9 3.7.8 3.7.7 3.7.6 3.7.5 3.7.4 3.7.3 3.7.2 3.7.1 3.7.0
|
15
16
|
3.6.9 3.6.8 3.6.7 3.6.6 3.6.5 3.6.4 3.6.3 3.6.2 3.6.1 3.6.0
|
@@ -74,6 +74,10 @@ module Dependabot
|
|
74
74
|
end
|
75
75
|
end
|
76
76
|
|
77
|
+
def lowest_security_fix_version
|
78
|
+
latest_version_finder.lowest_security_fix_version
|
79
|
+
end
|
80
|
+
|
77
81
|
def lowest_resolvable_security_fix_version
|
78
82
|
raise "Dependency not vulnerable!" unless vulnerable?
|
79
83
|
|
@@ -119,7 +123,7 @@ module Dependabot
|
|
119
123
|
end
|
120
124
|
|
121
125
|
def fetch_lowest_resolvable_security_fix_version
|
122
|
-
fix_version =
|
126
|
+
fix_version = lowest_security_fix_version
|
123
127
|
return latest_resolvable_version if fix_version.nil?
|
124
128
|
|
125
129
|
if resolver_type == :requirements
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dependabot-python
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.124.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dependabot
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-10-
|
11
|
+
date: 2020-10-27 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.124.3
|
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.124.3
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: byebug
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|