-
Notifications
You must be signed in to change notification settings - Fork 125
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
[MORPHY] Rexml rails version #777
Conversation
kbrock
commented
Jan 9, 2025
- CVE-2024-49761 rexml ( /via style)
- CVE-2023-38037 active-support
manageiq-schema.gemspec
Outdated
@@ -25,10 +25,10 @@ Gem::Specification.new do |spec| | |||
spec.add_dependency "more_core_extensions", ">= 3.5", "< 5" | |||
spec.add_dependency "pg" | |||
spec.add_dependency "pg-pglogical", "~> 2.1.1" | |||
spec.add_dependency "rails", "~>6.0.0" | |||
spec.add_dependency "rails", "~> 6.0.0", "> 6.0.6.1" |
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.
You missed the =
- this will fail without it.
spec.add_dependency "rails", "~> 6.0.0", "> 6.0.6.1" | |
spec.add_dependency "rails", "~> 6.0.6", ">= 6.0.6.1" |
|
||
spec.add_development_dependency "manageiq-style", ">= 1.5.2" | ||
spec.add_development_dependency "manageiq-style", ">= 1.5.3" |
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.
To keep it consistent, can you also make this change on master?
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.
- CVE-2024-49761 rexml ( /via style) - CVE-2023-38037 active-support
860d364
to
eec3d71
Compare
update:
|