-
Notifications
You must be signed in to change notification settings - Fork 879
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
Dependency check tool doesn't handle post-beta breaking changes #21116
Comments
|
I think that the rule should be, if a module depends on a version of e.g. |
The above rule has a broken corner-case. e.g. if |
We have the following scenario.
armmonitor
depends on[email protected]
which added features for fakes/tracing.We need to release
[email protected]
for a new feature. fakes/tracing are not included in this release (will return inv1.8.0-beta.1
)The PR for
[email protected]
with the new feature, sans fakes/tracing, fails dependency check asarmmonitor@latest
fails to compile.Not sure what the rule would be here to make dependency check pass. Given that this should be a rare corner-case, it might just be simpler to add a flag to bypass dependency checks.
The text was updated successfully, but these errors were encountered: