-
Notifications
You must be signed in to change notification settings - Fork 21
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
Add command for "list-outdated" #586
base: v0.10.x
Are you sure you want to change the base?
Conversation
@isc-shuliu this PR is related to #550 where part of running "update" should upgrade a module and run its upgrade steps (if any). |
Thanks for the heads-up! I'm aware of that hence posting it as a draft. |
@@ -2865,6 +2878,62 @@ ClassMethod EnableIPM(ByRef pCommandInfo) | |||
} | |||
} | |||
|
|||
ClassMethod CanUpdate(modName As %String, semver As %IPM.General.SemanticVersion) As %Boolean |
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.
@isc-shuliu Doesn't look like this method is used?
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.
Yes, you're right. I haven't gone to that point yet. My plan is to show if an outdated package can be updated to a particular version without violating dependency constraint. This PR is still a Work-In-Progress
Implement an
outdated
command mentioned in #427