Conversation
Contributor
🔍 Dependency Reviewgithub.com/bmatcuk/doublestar v1.3.4 → v4.9.1 — ❌ Changes NeededSummary:
Code changes required (examples from this PR): - import "github.com/bmatcuk/doublestar"
+ import "github.com/bmatcuk/doublestar/v4"- matches, err := doublestar.Glob(pattern)
+ matches, err := doublestar.FilepathGlob(pattern)- if match, _ := doublestar.PathMatch(exclude, path) { ... }
+ if match, _ := doublestar.PathMatch(filepath.FromSlash(exclude), path) { ... }Alternatively, to make intent explicit and avoid manual normalization: - if match, _ := doublestar.PathMatch(filepath.FromSlash(exclude), path) { ... }
+ if match, _ := doublestar.FilepathMatch(exclude, path) { ... }Potential additional updates to search for in your codebase:
Why these changes are needed:
Changelog highlights and references:
Relevant excerpts (from upstream docs/changelog/readme):
Additional considerations:
Files updated in this PR (good examples):
Notes
|
dehaansa
reviewed
Jan 9, 2026
Contributor
dehaansa
left a comment
There was a problem hiding this comment.
Should loki.source.file resolver also use FromSlash?
bc4a747 to
9b38d3f
Compare
dehaansa
approved these changes
Jan 14, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
PR Description
Update to latest version that supports more complex patterns.
Check Dependency Review and looked through releases. FilepathGlob is a drop in replacement for what we previously used (Glob) so we are fine to update this.
PathMatch had a change in behavior - previously it would accept either
/as separator or platform specific separator. As documented in their change we can usefilepath.FromSlashtoo not break this.Which issue(s) this PR fixes
fixes: #4423
Notes to the Reviewer
PR Checklist