dependabot-gradle 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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f9d6a550f7cb8b970d1858f0315dd3744da95471ca0caf4bfd4f81b8bfd2bfcf
|
|
4
|
+
data.tar.gz: bcab9c36e5b78d7674cb324c38c5d153448a4e526781f9fdf9662bd838749e94
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bafa8063e44ca39d6ed3acbbbdc5177224d6b7dc19587195aaf177d74bea19753ec861db736bff86067679503895c70759661b0982c2d04a9bff4ec568d8c060
|
|
7
|
+
data.tar.gz: 4108532554c02f80bb83e47595fecc24de9b94af38f704d6ace292192c9ea36e1192ccc49ca20c16b6d60ec48afd9cf56821a63881d8e44a73f5e5c94a6185cd
|
|
@@ -20,7 +20,7 @@ module Dependabot
|
|
|
20
20
|
SUPPORTED_SETTINGS_FILE_NAMES =
|
|
21
21
|
%w(settings.gradle settings.gradle.kts).freeze
|
|
22
22
|
|
|
23
|
-
# For now Gradle only supports
|
|
23
|
+
# For now Gradle only supports library .toml files in the main gradle folder
|
|
24
24
|
SUPPORTED_VERSION_CATALOG_FILE_PATH =
|
|
25
25
|
%w(/gradle/libs.versions.toml).freeze
|
|
26
26
|
|
|
@@ -72,17 +72,23 @@ module Dependabot
|
|
|
72
72
|
end
|
|
73
73
|
|
|
74
74
|
def own_buildfile_repository_urls
|
|
75
|
-
|
|
75
|
+
return [] unless top_level_buildfile
|
|
76
76
|
|
|
77
|
-
buildfile_content
|
|
77
|
+
buildfile_content = comment_free_content(top_level_buildfile)
|
|
78
|
+
|
|
79
|
+
own_buildfile_urls = []
|
|
80
|
+
|
|
81
|
+
subproject_buildfile_content = buildfile_content.dup.scan(/(?:^|\s)subprojects\s*\{/) do
|
|
78
82
|
mtch = Regexp.last_match
|
|
79
|
-
buildfile_content.gsub
|
|
83
|
+
buildfile_content.gsub(
|
|
80
84
|
mtch.post_match[0..closing_bracket_index(mtch.post_match)],
|
|
81
85
|
""
|
|
82
86
|
)
|
|
83
87
|
end
|
|
84
88
|
|
|
85
|
-
repository_urls_from(buildfile_content)
|
|
89
|
+
own_buildfile_urls += repository_urls_from(buildfile_content)
|
|
90
|
+
own_buildfile_urls += repository_urls_from(subproject_buildfile_content)
|
|
91
|
+
own_buildfile_urls
|
|
86
92
|
end
|
|
87
93
|
|
|
88
94
|
def repository_urls_from(buildfile_content)
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dependabot-gradle
|
|
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,28 +16,28 @@ 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: dependabot-maven
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
30
30
|
requirements:
|
|
31
31
|
- - '='
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: 0.
|
|
33
|
+
version: 0.243.0
|
|
34
34
|
type: :runtime
|
|
35
35
|
prerelease: false
|
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
38
|
- - '='
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
|
-
version: 0.
|
|
40
|
+
version: 0.243.0
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
42
|
name: debug
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -263,7 +263,7 @@ licenses:
|
|
|
263
263
|
- Nonstandard
|
|
264
264
|
metadata:
|
|
265
265
|
bug_tracker_uri: https://github.com/dependabot/dependabot-core/issues
|
|
266
|
-
changelog_uri: https://github.com/dependabot/dependabot-core/releases/tag/v0.
|
|
266
|
+
changelog_uri: https://github.com/dependabot/dependabot-core/releases/tag/v0.243.0
|
|
267
267
|
post_install_message:
|
|
268
268
|
rdoc_options: []
|
|
269
269
|
require_paths:
|