dependabot-opentofu 0.389.0 → 0.390.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: 43f9df492a79ccc90154ada3306540fae5ff21fcaab1a9371b7871978a80536b
4
- data.tar.gz: e9dbb471d8b1f931cc073167deef98a03edc4be1f12aebb71cbcec511fff895c
3
+ metadata.gz: 3f5502047fe195b034f7e353f0be20e34a4f9d9d3793fbc35f8faaa6ca01e068
4
+ data.tar.gz: ff2fd5eaa606dd6bc60ce4a4dbc77ce41fd88eec076ebff40d51b87bd75d1238
5
5
  SHA512:
6
- metadata.gz: 2a324a274be969106230be70c01dbcab55769724eef2e0e8caf51eb3d9b3f513eda60c3dc9169d56abd2b7ac58310e1650a295aadf3f9684c615e8be5c4073f6
7
- data.tar.gz: a2290ea710a8bf2fbbb0ed18ff55c7b4c9fc56adaea9a6e7f89485b8b16c7f598e1be4684ca8625b9a34faa58b3c2c58f6ba2199c1203f7b8ab9ec6a547066b0
6
+ metadata.gz: 4616a208b1715f8d257f9a65f972e6b594e059e80e92d2d7a73eee09ddcc56f8b3b23419412a5ea3d0e1b68b48bb6999bfcc3468b24318ab53f9d8bd8457e342
7
+ data.tar.gz: d760fb2e7cd96adc10ca484e1357d19d72c4a0c084f16b6c4e7fc9ee6102608b89c68357b6126913dae568970fd00e671aab77118d048ba58a797e0d9bc9b17a
@@ -38,7 +38,10 @@ module Dependabot
38
38
  fetched_files += [lockfile] if lockfile
39
39
 
40
40
  filtered_files = fetched_files.compact.reject do |file|
41
- Dependabot::FileFiltering.should_exclude_path?(file.name, "file from final collection", @exclude_paths)
41
+ # `file.name` is relative to the fetched directory, while exclude_paths are
42
+ # relative to the repository root -- so comparing the two only ever matched
43
+ # for files in the root directory. `file.path` joins the two.
44
+ Dependabot::FileFiltering.should_exclude_path?(file.path, "file from final collection", @exclude_paths)
42
45
  end
43
46
 
44
47
  filtered_files
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.389.0
4
+ version: 0.390.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.389.0
18
+ version: 0.390.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.389.0
25
+ version: 0.390.0
26
26
  - !ruby/object:Gem::Dependency
27
27
  name: debug
28
28
  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.389.0
265
+ changelog_uri: https://github.com/dependabot/dependabot-core/releases/tag/v0.390.0
266
266
  rdoc_options: []
267
267
  require_paths:
268
268
  - lib