dependabot-bun 0.359.0 → 0.360.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/bun/file_fetcher.rb +2 -2
- 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: f3bbffcbb4cbf2f52e2aa1bf17c2f8a3ec7723ddcdfa131a72d55a39965af073
|
|
4
|
+
data.tar.gz: b00ff4ba4e63030e58060eda05fa0406f13227185d06977e4fffac04c96ca568
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 415dd416e835ae8a4064af85eb51f9ac991b199b922ed4132419731f9b5dd31c57deb87b1f0285c0678bc30256efb211decbca740411ac877d6738e947e3f4da
|
|
7
|
+
data.tar.gz: b2e86ac25d8e715c0487a29ca6f2381b4bc0ff60ee884e3e436775199e5cae8e9ad95238bacfa9099202698e40d2b1a0c58a31d9035a2a6beab8aec10e793199
|
|
@@ -330,7 +330,7 @@ module Dependabot
|
|
|
330
330
|
return [glob] unless glob.include?("*")
|
|
331
331
|
|
|
332
332
|
unglobbed_path =
|
|
333
|
-
glob.gsub(%r{^\./}, "").gsub(/!\(
|
|
333
|
+
glob.gsub(%r{^\./}, "").gsub(/!\([^)]*\)/, "*")
|
|
334
334
|
.split("*")
|
|
335
335
|
.first&.gsub(%r{(?<=/)[^/]*$}, "") || "."
|
|
336
336
|
|
|
@@ -346,7 +346,7 @@ module Dependabot
|
|
|
346
346
|
|
|
347
347
|
sig { params(glob: String, paths: T::Array[String]).returns(T::Array[String]) }
|
|
348
348
|
def matching_paths(glob, paths)
|
|
349
|
-
glob = glob.gsub(%r{^\./}, "").gsub(/!\(
|
|
349
|
+
glob = glob.gsub(%r{^\./}, "").gsub(/!\([^)]*\)/, "*")
|
|
350
350
|
glob = "#{glob}/*" if glob.end_with?("**")
|
|
351
351
|
|
|
352
352
|
paths.select { |filename| File.fnmatch?(glob, filename, File::FNM_PATHNAME) }
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dependabot-bun
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.360.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.360.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.360.0
|
|
26
26
|
- !ruby/object:Gem::Dependency
|
|
27
27
|
name: debug
|
|
28
28
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -347,7 +347,7 @@ licenses:
|
|
|
347
347
|
- MIT
|
|
348
348
|
metadata:
|
|
349
349
|
bug_tracker_uri: https://github.com/dependabot/dependabot-core/issues
|
|
350
|
-
changelog_uri: https://github.com/dependabot/dependabot-core/releases/tag/v0.
|
|
350
|
+
changelog_uri: https://github.com/dependabot/dependabot-core/releases/tag/v0.360.0
|
|
351
351
|
rdoc_options: []
|
|
352
352
|
require_paths:
|
|
353
353
|
- lib
|