-
Notifications
You must be signed in to change notification settings - Fork 2.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Combine matchFiles and matchPaths #22395
Labels
breaking
Breaking change, requires major version bump
priority-3-medium
Default priority, "should be done" but isn't prioritised ahead of others
status:in-progress
Someone is working on implementation
type:refactor
Refactoring or improving of existing code
v36
Comments
rarkins
added
priority-3-medium
Default priority, "should be done" but isn't prioritised ahead of others
type:refactor
Refactoring or improving of existing code
status:requirements
Full requirements are not yet known, so implementation should not be started
labels
May 24, 2023
This comment was marked as outdated.
This comment was marked as outdated.
Glob should not. It was our custom partial string matching which caused that, to be removed in v36 |
The main problem in merging these is that if someone used both (which would be a bad idea..) then now they will be "or" and not "and". So best to do it in v36 too |
Conclusion:
|
rarkins
added
status:in-progress
Someone is working on implementation
and removed
status:requirements
Full requirements are not yet known, so implementation should not be started
labels
May 24, 2023
rarkins
added a commit
that referenced
this issue
May 24, 2023
…ames Closes #22395 BREAKING CHANGE: matchPaths and matchFiles are now combined and merged into matchFileNames
rarkins
added a commit
that referenced
this issue
May 24, 2023
…ames Closes #22395 BREAKING CHANGE: matchPaths and matchFiles are now combined and merged into matchFileNames
6 tasks
rarkins
added a commit
that referenced
this issue
Jul 4, 2023
Closes #22395 BREAKING CHANGE: matchPaths and matchFiles are now combined into matchFileNames, supporting exact match and glob-only
🎉 This issue has been resolved in version 36.0.0 🎉 The release is available on:
Your semantic-release bot 📦🚀 |
SlashNephy
added a commit
to SlashNephy/infrastructure
that referenced
this issue
Jul 6, 2023
temporary fix until renovatebot/renovate#22395 release Signed-off-by: SlashNephy <[email protected]>
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Labels
breaking
Breaking change, requires major version bump
priority-3-medium
Default priority, "should be done" but isn't prioritised ahead of others
status:in-progress
Someone is working on implementation
type:refactor
Refactoring or improving of existing code
v36
Describe the proposed change(s).
Once partial string matching is removed from
matchPaths
(see #22394) we should combinematchFiles
andmatchPaths
into one - probably in v36 too. It seems that a plain file name likematchFiles
uses is a valid glob anyway, so the only difference is thatmatchFiles
matches against both package file and lock file whilematchPaths
currently matches only against package files.We could either combine them into
matchPaths
, or we could make a new field likematchFileNames
.The text was updated successfully, but these errors were encountered: