dependabot-opentofu 0.393.0 → 0.394.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/lib/dependabot/opentofu/file_parser.rb +10 -2
- 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: 4eedf0467315bdfb260571a6cd21726d29184b15b4db8525704c717eb29326eb
|
|
4
|
+
data.tar.gz: f215ee8993d52bc0e63fdc1d293e0c20220e202f88bf4b22f0a610d6cd79547f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 63affbbfcbb2ce7f986778c92b9057e420b07449910076d2c1c5e07596a06fb8e4bc36269b81bcde0b18f96122bae6bb10db8706594910f7b0bc4f685825cdcc
|
|
7
|
+
data.tar.gz: 06b7ae8912efbb0d2a5be3cbbff20722234f1e8940d8e4185c885b369ba15a2f0f51fbff75b6deebbef4f5841a915d754d98bb3ca6920732abef038d9f8a40b8
|
|
@@ -167,9 +167,17 @@ module Dependabot
|
|
|
167
167
|
next unless details["source"]
|
|
168
168
|
|
|
169
169
|
source = source_from(details)
|
|
170
|
-
#
|
|
170
|
+
# nil sources are unpinned; paths are local.
|
|
171
171
|
next if source.nil? || source[:type] == "path"
|
|
172
172
|
|
|
173
|
+
# Cannot update modules using early evaluation yet
|
|
174
|
+
if source[:type] == "interpolation"
|
|
175
|
+
Dependabot.logger.warn(
|
|
176
|
+
"Cannot parse terragrunt module source with early evaluation in #{file.name}."
|
|
177
|
+
)
|
|
178
|
+
next
|
|
179
|
+
end
|
|
180
|
+
|
|
173
181
|
dependency_set << build_terragrunt_dependency(file, source)
|
|
174
182
|
end
|
|
175
183
|
end
|
|
@@ -437,8 +445,8 @@ module Dependabot
|
|
|
437
445
|
# rubocop:disable Metrics/CyclomaticComplexity
|
|
438
446
|
sig { params(source_string: String).returns(Symbol) }
|
|
439
447
|
def source_type(source_string)
|
|
440
|
-
return :oci if source_string.include?("oci://")
|
|
441
448
|
return :interpolation if source_string.include?("${")
|
|
449
|
+
return :oci if source_string.include?("oci://")
|
|
442
450
|
return :path if source_string.start_with?(".")
|
|
443
451
|
return :github if source_string.start_with?("github.com/")
|
|
444
452
|
return :bitbucket if source_string.start_with?("bitbucket.org/")
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dependabot-opentofu
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.394.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.394.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.394.0
|
|
26
26
|
- !ruby/object:Gem::Dependency
|
|
27
27
|
name: debug
|
|
28
28
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -169,14 +169,14 @@ dependencies:
|
|
|
169
169
|
requirements:
|
|
170
170
|
- - "~>"
|
|
171
171
|
- !ruby/object:Gem::Version
|
|
172
|
-
version: '
|
|
172
|
+
version: '1.1'
|
|
173
173
|
type: :development
|
|
174
174
|
prerelease: false
|
|
175
175
|
version_requirements: !ruby/object:Gem::Requirement
|
|
176
176
|
requirements:
|
|
177
177
|
- - "~>"
|
|
178
178
|
- !ruby/object:Gem::Version
|
|
179
|
-
version: '
|
|
179
|
+
version: '1.1'
|
|
180
180
|
- !ruby/object:Gem::Dependency
|
|
181
181
|
name: turbo_tests
|
|
182
182
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -262,7 +262,7 @@ licenses:
|
|
|
262
262
|
- MIT
|
|
263
263
|
metadata:
|
|
264
264
|
bug_tracker_uri: https://github.com/dependabot/dependabot-core/issues
|
|
265
|
-
changelog_uri: https://github.com/dependabot/dependabot-core/releases/tag/v0.
|
|
265
|
+
changelog_uri: https://github.com/dependabot/dependabot-core/releases/tag/v0.394.0
|
|
266
266
|
rdoc_options: []
|
|
267
267
|
require_paths:
|
|
268
268
|
- lib
|