Conversation
- jruby-openssl 0.16.0 -> 0.16.3 (bundled BouncyCastle 1.84 -> 1.86, fixes GHSA covering "Lazy ASN.1 sequence forcing resets nesting-depth guard" and "Name Constraints bypass via trailing dot" advisories) - rdoc 6.4.1.1 -> 6.6.3.1 (fixes sonatype-2022-6090 XSS in RDoc::Markup::ToHtml link handling; CVE-2024-27281 was already fixed in 6.4.1.1) - uri 0.12.4 -> 0.12.5 (fixes CVE-2025-61594) - net-imap 0.2.5 -> 0.6.7 (fixes GHSA-known STARTTLS-stripping and command-injection advisories) rexml and psych (snakeyaml-engine) are left unchanged: rexml 3.4.4 is already the latest release, and snakeyaml-engine has no known advisories distinct from legacy org.yaml:snakeyaml.
lib/pom.xml is generated from lib/pom.rb via the polyglot-ruby maven extension (polyglot.dump.pom property); pom.rb independently hardcodes the same default_gems/bundled_gems version list, so it needed the same jruby-openssl/rdoc/uri/net-imap bumps to avoid the prior commit's pom.xml edit being silently regenerated away.
Author
|
@headius Can you help here. I am assuming we will still release 9.4.x versions with security fixes. Correct me if i am wrong. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Several default gems bundled into jruby-complete pin versions with known upstream CVEs in their bundled/transitive artifacts. This bumps them to patched versions.
jruby-openssl0.16.0 -> 0.16.3 — bundled BouncyCastle 1.84 -> 1.86, fixing the "Lazy ASN.1 sequence forcing resets nesting-depth guard" (HIGH) and "Name Constraints bypass via trailing dot in rfc822Name and URI" (CRITICAL) advisories.rdoc6.4.1.1 -> 6.6.3.1 — fixes sonatype-2022-6090 (XSS inRDoc::Markup::ToHtmllink handling, Escape links ruby/rdoc#933). CVE-2024-27281 was already fixed at 6.4.1.1.uri0.12.4 -> 0.12.5 — fixes CVE-2025-61594.net-imap0.2.5 -> 0.6.7 — fixes a HIGH-severity STARTTLS-stripping advisory plus several MODERATE command-injection/DoS advisories accumulated since 0.2.5.rexml(3.4.4) andpsych's bundledsnakeyaml-engine(5.2.3) are left unchanged — both are already at versions with no known advisories (snakeyaml-engine is unaffected by the legacyorg.yaml:snakeyamlCVEs, which apply to a different artifact).All four bumped gems are pure dependency-version changes; no source/API usage changes were needed in this repo.
Test plan
bin/jruby -e 'require "rdoc"; require "uri"; require "net/imap"; require "openssl"'loads cleanly