-
Notifications
You must be signed in to change notification settings - Fork 0
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
Exclude xmlsec version 1.3.14 #18
Conversation
renovate-config.json
Outdated
}, | ||
{ | ||
"matchPackageNames": ["xmlsec"], | ||
"allowedVersions": "<=1.3.13" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since it looks like the problem is specifically with 1.3.14
I would argue that rather than setting the specifer to <=1.3.13
it should just be !/1\.3\.14/
so that we can continue to get updates for newer releases, but avoid this specific problematic version.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What are the relevant tickets?
Related to xmlsec/python-xmlsec#314. This has notably caused problems in
ocw-studio
, requiring multiple manual reverts (e.g., mitodl/ocw-studio#2180, mitodl/ocw-studio#2235).Description (What does it do?)
This PR excludes the
xmlsec
version 1.3.14 across allmitodl
repositories for Renovate.How can this be tested?
This can be tested by running
renovate --dry-run
in a relevant repository (such asocw-studio
) and verifying that thexmlsec
version is not upgraded to 1.3.14.