-
Notifications
You must be signed in to change notification settings - Fork 64
✨remove ForceSemverUpgradeConstraints feature gate and implementation #1638
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
✨remove ForceSemverUpgradeConstraints feature gate and implementation #1638
Conversation
✅ Deploy Preview for olmv1 ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #1638 +/- ##
==========================================
+ Coverage 66.76% 66.78% +0.02%
==========================================
Files 57 57
Lines 4600 4585 -15
==========================================
- Hits 3071 3062 -9
+ Misses 1303 1299 -4
+ Partials 226 224 -2
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
@@ -28,7 +22,7 @@ func SuccessorsOf(installedBundle ocv1.BundleMetadata, channels ...declcfg.Chann | |||
return nil, fmt.Errorf("parsing installed version constraint %q: %w", installedBundleVersion.String(), err) | |||
} | |||
|
|||
successorsPredicate, err := successors(installedBundle, channels...) | |||
successorsPredicate, err := legacySuccessor(installedBundle, channels...) |
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.
Hi @joelanford
Any reason why we should not remove the unused funcs raised by the lint?
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.
Nope! Pushed an amended commit to fix.
Signed-off-by: Joe Lanford <[email protected]>
a815014
to
cfb2c7b
Compare
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.
/lgtm
Description
Closes #1615
Reviewer Checklist