-
Notifications
You must be signed in to change notification settings - Fork 190
Bump minimum jruby-openssl to 0.15.4 for CVE-2025-46551 #1022
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
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -11,7 +11,7 @@ Gem::Specification.new do |spec| | |||||
| if Gem::Platform === spec.platform and spec.platform =~ 'java' or RUBY_ENGINE == 'jruby' | ||||||
| spec.platform = "java" | ||||||
| spec.files = [] | ||||||
| spec.add_runtime_dependency('jruby-openssl', '~> 0.14') | ||||||
| spec.add_runtime_dependency('jruby-openssl', '~> 0.15', '>= 0.15.4') | ||||||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
I wonder if we can avoid it and similar issues in the future by simply dropping the version constraint, since it doesn't seem to be useful anyway.
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I agreed to remove version constraint too. @headius Do you have any opinion about that? |
||||||
| else | ||||||
| spec.files = Dir.glob(["lib/**/*.rb", "ext/**/*.{c,h,rb}", "*.md"], base: File.expand_path("..", __FILE__)) + | ||||||
| ["BSDL", "COPYING"] | ||||||
|
|
||||||
Uh oh!
There was an error while loading. Please reload this page.