dependabot-gradle 0.385.0 → 0.386.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: 3e13edb6e52c235438f37abde8da6e16acbf8af7c9ad353b1107d5e3640c452b
|
|
4
|
+
data.tar.gz: 3a3e95bec57181355b897de358e3de6bf713b96968cbe8c28cc2465a81aa6599
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ebe25caa251686e54aea6dddddfe590c400e7261eba31772dd43e8dece9a4d037dbfa530f67737521d2f3e7b4c1389e8219bda2aa52a6a6e46c79687d2d62e0b
|
|
7
|
+
data.tar.gz: e12a6f556feb7ba1883c1458fc5a1f482be3b60d0a268c1048b86d11470efe262caa70dd324eb7dc9a564b7bc71c0cc941c797ab527b1e1e5a91f4f8bf1c2bc6
|
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
require "sorbet-runtime"
|
|
5
5
|
|
|
6
6
|
require "dependabot/gradle/file_parser"
|
|
7
|
+
require "dependabot/maven/shared/property_value_finding"
|
|
7
8
|
|
|
8
9
|
module Dependabot
|
|
9
10
|
module Gradle
|
|
@@ -11,6 +12,8 @@ module Dependabot
|
|
|
11
12
|
class PropertyValueFinder
|
|
12
13
|
extend T::Sig
|
|
13
14
|
|
|
15
|
+
include Dependabot::Maven::Shared::PropertyValueFinding
|
|
16
|
+
|
|
14
17
|
# rubocop:disable Layout/LineLength
|
|
15
18
|
SUPPORTED_BUILD_FILE_NAMES = %w(build.gradle build.gradle.kts).freeze
|
|
16
19
|
|
|
@@ -76,7 +79,8 @@ module Dependabot
|
|
|
76
79
|
end
|
|
77
80
|
|
|
78
81
|
sig do
|
|
79
|
-
|
|
82
|
+
override
|
|
83
|
+
.params(property_name: String, callsite_buildfile: Dependabot::DependencyFile)
|
|
80
84
|
.returns(T.nilable(T::Hash[Symbol, String]))
|
|
81
85
|
end
|
|
82
86
|
def property_details(property_name:, callsite_buildfile:)
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
# frozen_string_literal: true
|
|
3
3
|
|
|
4
4
|
require "fileutils"
|
|
5
|
+
require "pathname"
|
|
5
6
|
require "shellwords"
|
|
6
7
|
require "sorbet-runtime"
|
|
7
8
|
|
|
@@ -41,14 +42,13 @@ module Dependabot
|
|
|
41
42
|
write_init_script(init_script_path)
|
|
42
43
|
|
|
43
44
|
command_parts = [
|
|
44
|
-
|
|
45
|
+
gradle_executable_for(cwd: cwd, workspace_root: temp_dir.to_s),
|
|
45
46
|
"--init-script", init_script_path,
|
|
46
47
|
INIT_SCRIPT_TASK_NAME,
|
|
47
48
|
"--write-locks",
|
|
48
49
|
"--no-daemon"
|
|
49
50
|
]
|
|
50
51
|
command = Shellwords.join(command_parts)
|
|
51
|
-
|
|
52
52
|
SharedHelpers.run_shell_command(command, cwd: cwd)
|
|
53
53
|
|
|
54
54
|
update_lockfiles_content(temp_dir, lockfiles, updated_files)
|
|
@@ -176,7 +176,7 @@ module Dependabot
|
|
|
176
176
|
relative_dir = file.directory == "/" ? "" : file.directory
|
|
177
177
|
in_path_name = File.join(temp_dir, relative_dir, file.name)
|
|
178
178
|
FileUtils.mkdir_p(File.dirname(in_path_name))
|
|
179
|
-
File.
|
|
179
|
+
File.binwrite(in_path_name, file.decoded_content)
|
|
180
180
|
end
|
|
181
181
|
end
|
|
182
182
|
|
|
@@ -221,6 +221,34 @@ systemProp.https.proxyPort=#{https_proxy_port}"
|
|
|
221
221
|
File.write(file_name, script_content)
|
|
222
222
|
end
|
|
223
223
|
|
|
224
|
+
sig { params(cwd: String, workspace_root: String).returns(String) }
|
|
225
|
+
def gradle_executable_for(cwd:, workspace_root:)
|
|
226
|
+
cwd_path = Pathname.new(cwd).expand_path
|
|
227
|
+
workspace_root_path = Pathname.new(workspace_root).expand_path
|
|
228
|
+
|
|
229
|
+
return "gradle" unless cwd_path == workspace_root_path || cwd_path.to_s.start_with?("#{workspace_root_path}/")
|
|
230
|
+
|
|
231
|
+
search_path = cwd_path
|
|
232
|
+
|
|
233
|
+
loop do
|
|
234
|
+
wrapper_script = search_path.join("gradlew")
|
|
235
|
+
if File.file?(wrapper_script)
|
|
236
|
+
wrapper_script_path = wrapper_script.to_s
|
|
237
|
+
FileUtils.chmod("+x", wrapper_script_path)
|
|
238
|
+
|
|
239
|
+
relative_path = wrapper_script.relative_path_from(cwd_path).to_s
|
|
240
|
+
return relative_path.start_with?(".") ? relative_path : "./#{relative_path}"
|
|
241
|
+
end
|
|
242
|
+
|
|
243
|
+
parent_path = search_path.parent
|
|
244
|
+
break if parent_path == search_path || search_path == workspace_root_path
|
|
245
|
+
|
|
246
|
+
search_path = parent_path
|
|
247
|
+
end
|
|
248
|
+
|
|
249
|
+
"gradle"
|
|
250
|
+
end
|
|
251
|
+
|
|
224
252
|
sig { params(build_file: Dependabot::DependencyFile).returns(T.nilable(Dependabot::DependencyFile)) }
|
|
225
253
|
def find_settings_file(build_file)
|
|
226
254
|
settings_files = dependency_files.select do |f|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dependabot-gradle
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.386.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.386.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.386.0
|
|
26
26
|
- !ruby/object:Gem::Dependency
|
|
27
27
|
name: dependabot-maven
|
|
28
28
|
requirement: !ruby/object:Gem::Requirement
|
|
29
29
|
requirements:
|
|
30
30
|
- - '='
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
|
-
version: 0.
|
|
32
|
+
version: 0.386.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.386.0
|
|
40
40
|
- !ruby/object:Gem::Dependency
|
|
41
41
|
name: debug
|
|
42
42
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -291,7 +291,7 @@ licenses:
|
|
|
291
291
|
- MIT
|
|
292
292
|
metadata:
|
|
293
293
|
bug_tracker_uri: https://github.com/dependabot/dependabot-core/issues
|
|
294
|
-
changelog_uri: https://github.com/dependabot/dependabot-core/releases/tag/v0.
|
|
294
|
+
changelog_uri: https://github.com/dependabot/dependabot-core/releases/tag/v0.386.0
|
|
295
295
|
rdoc_options: []
|
|
296
296
|
require_paths:
|
|
297
297
|
- lib
|