<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom">
 <title>JRuby.org News</title>
 <link href="https://www.jruby.org/atom.xml" rel="self"/>
 <link href="https://www.jruby.org"/>
 <updated>2026-04-21T13:52:35+00:00</updated>
 <id>https://www.jruby.org/</id>
 <author>
   <name>The JRuby Team</name>
   <email>team@jruby.org</email>
 </author>
 
 
 <entry>
   <title>JRuby 10.1.0.0 Released</title>
   <link href="https://www.jruby.org/2026/04/21/jruby-10-1-0-0.html"/>
   <updated>2026-04-21T00:00:00+00:00</updated>
   <id>https://www.jruby.org/2026/04/21/jruby-10-1-0-0</id>
   <content type="html">&lt;p&gt;The JRuby community is pleased to announce the release of JRuby 10.1.0.0.&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;Homepage: &lt;a href=&quot;https://www.jruby.org/&quot;&gt;https://www.jruby.org/&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;Download: &lt;a href=&quot;https://www.jruby.org/download&quot;&gt;https://www.jruby.org/download&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;JRuby 10.1.0.x targets Ruby 4.0 compatibility.&lt;/p&gt;

&lt;p&gt;Thank you to our contributors this release, you help keep JRuby moving forward!&lt;/p&gt;

&lt;h1 id=&quot;jruby-101-experimenting-and-evolving&quot;&gt;JRuby 10.1: Experimenting and Evolving&lt;/h1&gt;

&lt;p&gt;JRuby 10.1.0.0 is our first major release since catching up with Ruby compatibility. We have used this opportunity to explore many experimental optimizations and improvements we have been chasing for many years. Ruby 4.0 compatibility is largely complete, but there will be additional features added in update releases. We also plan to continue with large scale experiments in subsequent updates, and recommend production users continue to use JRuby 10.0 while we work toward stabilization of the 10.1 series.&lt;/p&gt;

&lt;p&gt;Here’s an overview of the major enhancments already in JRuby 10.1.0.0 and others planned for update releases in the coming months.&lt;/p&gt;

&lt;h2 id=&quot;reduced-object-size&quot;&gt;Reduced Object Size&lt;/h2&gt;

&lt;p&gt;In JRuby 10.1 all objects have been reduced in size by 8 bytes, bringing the base object size down from 32 bytes to 24 bytes. This translates into smaller objects across the system, reduced GC load, higher allocation throughput, and better cache locality.&lt;/p&gt;

&lt;p&gt;On JVM versions that support Compact Object Headers (JEP 450: “Project Lilliput”) the base object size can be further reduced to 16 bytes, 40% smaller than objects in the standard Ruby implememtation.&lt;/p&gt;

&lt;h2 id=&quot;evolving-strings-arrays-and-hashes&quot;&gt;Evolving Strings, Arrays, and Hashes&lt;/h2&gt;

&lt;p&gt;During the upcoming JRuby 10.1 update releases, we plan to introduce new versions of String, Array, and Hash that are optimized for memory compactness, concurrency, or integration with other JVM languages. To support these features, we have made the internal implementations RubyArray and RubyHash into abstract classes and deprecated the direct constructors for RubyString. Please test your JRuby extension code and make sure it does not call abstract or deprecated constructors.&lt;/p&gt;

&lt;h2 id=&quot;smaller-numeric-representations&quot;&gt;Smaller Numeric Representations&lt;/h2&gt;

&lt;p&gt;JRuby’s internal class for representing 64-bit signed Integer values, RubyFixnum, has been split into two versions: LongFixnum and ShortFixnum. Combined with the reduced size of objects overall, this reduces the size of these long and short-ranged Integer objects from 40 bytes to 32 bytes or 24 bytes (24 bytes or 16 bytes if using Compact Object Headers). The size of Float objects have similarly been reduced from 40 bytes to 32 bytes. These size reductions help improve the performance of numeric algorithms and reduce impact to the heap and GC of boxing numeric values.&lt;/p&gt;

&lt;h2 id=&quot;cross-platform-prism-parser&quot;&gt;Cross-platform Prism Parser&lt;/h2&gt;

&lt;p&gt;JRuby 10.1 ships with support for the Prism Ruby parser, packaged as a set of pre-optimized native builds (for Windows, Linux, and MacOS on x86_64 or arm64) or as a WASM build on other platforms. We’re still working out a few remaining features, but we encourage experimenters to enable it by passing &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;-Xparser.prism&lt;/code&gt; to JRuby. We plan to make this the default parser once the remaining issues are solved.&lt;/p&gt;

&lt;h2 id=&quot;direct-argument-passing&quot;&gt;Direct Argument Passing&lt;/h2&gt;

&lt;p&gt;We have also laid the groundwork to start passing all forms of method arguments on the call stack, avoiding boxed collections for most optional and keyword arguments. In upcoming JRuby 10.1 releases, we will begin to connect these call paths up for both pure-Ruby and native (Java) method targets, eliminating box allocation and drastically improving the peformance of such forms. Watch this space for rapid improvements.&lt;/p&gt;

&lt;h2 id=&quot;new-policy-for-eol-and-lts-releases&quot;&gt;New Policy for EOL and LTS Releases&lt;/h2&gt;

&lt;p&gt;With the release of JRuby 10.1, we are moving JRuby 9.4 into a “soft” EOL status. This means we will no longer be doing regular OSS release updates of JRuby 9.4, but users may get in contact with us to sponsor continued support. JRuby 10.0 will be our stable LTS release until April 2028 and we recommend all users upgrade or get in contact with us for assistance. JRuby 10.1 will be our “tip” release line, with many exciting optimizations and enhancements due to land over the next several months.&lt;/p&gt;

&lt;p&gt;Going forward, we will provide a new LTS baseline release every two years, starting in spring of 2027, and alternating years will be considered as edge or development versions without LTS guarantees. This will allow us a free hand to keep bringing you more experimental features while still providing a stable baseline for more conservative users.&lt;/p&gt;

&lt;h2 id=&quot;try-jruby-today&quot;&gt;Try JRuby Today!&lt;/h2&gt;

&lt;p&gt;Users can install JRuby 10.1 through the usual means, and we encourage you to give it a try and let us know how it handles your applications and libraries. We have much more planned for the 10.1 updates and hope to move fast and push the edges of what’s possible with Ruby on the JVM.&lt;/p&gt;

&lt;h3 id=&quot;59-issues-and-prs-resolved-for-10100&quot;&gt;59 Issues and PRs resolved for 10.1.0.0&lt;/h3&gt;

&lt;ul&gt;
  &lt;li&gt;#8716 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8716&quot;&gt;dup a lot&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8747 &lt;a href=&quot;https://github.com/jruby/jruby/issues/8747&quot;&gt;Launcher script chokes on GraalVM release file&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9055 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9055&quot;&gt;Array experiments&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9066 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9066&quot;&gt;Move Set to a core class [Ruby 4.0]&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9069 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9069&quot;&gt;Implement Ruby 4.0 support&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9074 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9074&quot;&gt;Avoid array allocation for *nil, by not calling nil.to_a&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9075 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9075&quot;&gt;Selective inspect of instance variables&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9077 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9077&quot;&gt;No numbered parameters in Binding#local_variables&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9078 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9078&quot;&gt;Add Math.{expm1,log1p}&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9079 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9079&quot;&gt;Align IO.select timeout logic with CRuby&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9083 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9083&quot;&gt;Implement missing raise features&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9085 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9085&quot;&gt;Specialize Fixnum&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9090 &lt;a href=&quot;https://github.com/jruby/jruby/issues/9090&quot;&gt;Reduce the size of the varTableStamp&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9091 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9091&quot;&gt;Shrink varTableStamp&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9095 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9095&quot;&gt;Eliminate global flags&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9096 &lt;a href=&quot;https://github.com/jruby/jruby/issues/9096&quot;&gt;Cache object ID and hash in low-count immediate values&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9102 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9102&quot;&gt;Add a fast path for hashing numerics and immediates&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9113 &lt;a href=&quot;https://github.com/jruby/jruby/issues/9113&quot;&gt;Performance regression in RubyHash for large hashes (~8-10x slower than JRuby 1.7)&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9119 &lt;a href=&quot;https://github.com/jruby/jruby/issues/9119&quot;&gt;Implement fast-path builtin method flags&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9123 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9123&quot;&gt;Fast builtin validation experiment&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9124 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9124&quot;&gt;Reduce load factor for Hash from 5 to 2&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9136 &lt;a href=&quot;https://github.com/jruby/jruby/issues/9136&quot;&gt;Marshal.load 2.9x regression vs JRuby 1.7&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9143 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9143&quot;&gt;Cache both hash forms for FString&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9148 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9148&quot;&gt;Allow logical ops to begin on beginning of next line&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9154 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9154&quot;&gt;Mask internal Ruby backtrace elements like native masking&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9156 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9156&quot;&gt;Small marshal fixes&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9174 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9174&quot;&gt;Add complete thread-local builtin tracking system (Issues #9116, #9119)&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9180 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9180&quot;&gt;Implement implicit param logic for Binding&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9181 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9181&quot;&gt;Fix Data subclasses with ivars&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9202 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9202&quot;&gt;A Data object should be frozen even if it has no members&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9209 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9209&quot;&gt;Add ruby_bug for spec of Data with no members being frozen&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9210 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9210&quot;&gt;Remove Process::Status#&amp;amp; and Process::Status#»&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9233 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9233&quot;&gt;Load boot scripts from classloader URI&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9235 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9235&quot;&gt;Use capitalized Class and Module for frozen errors&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;
    &lt;table&gt;
      &lt;tbody&gt;
        &lt;tr&gt;
          &lt;td&gt;#9236 [Properly handle keywords in {Kernel&lt;/td&gt;
          &lt;td&gt;Thread&lt;/td&gt;
          &lt;td&gt;Fiber}#raise]&lt;a href=&quot;https://github.com/jruby/jruby/pull/9236&quot;&gt;#9236&lt;/a&gt;&lt;/td&gt;
        &lt;/tr&gt;
      &lt;/tbody&gt;
    &lt;/table&gt;
  &lt;/li&gt;
  &lt;li&gt;#9238 &lt;a href=&quot;https://github.com/jruby/jruby/issues/9238&quot;&gt;Cloned class’s singleton class has too many classes in hierarchy&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9239 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9239&quot;&gt;Fix for cloned class singleton class has too many ancestors&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9250 &lt;a href=&quot;https://github.com/jruby/jruby/issues/9250&quot;&gt;Update Unicode to Version 17.0.0 and Emoji Version 17.0&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9262 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9262&quot;&gt;Abstract RubyHash&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9263 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9263&quot;&gt;Implicit param fixes for proc and binding&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9266 &lt;a href=&quot;https://github.com/jruby/jruby/issues/9266&quot;&gt;Endless method with modifier method does not parse&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9273 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9273&quot;&gt;Cleanup recursion guards&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9277 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9277&quot;&gt;Use live counts for event hook stats&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9279 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9279&quot;&gt;Move fiddle back to default temporarily for resolv&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9286 &lt;a href=&quot;https://github.com/jruby/jruby/issues/9286&quot;&gt;Proposing RISC-V architecture support&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9287 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9287&quot;&gt;Add riscv64 platform support&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9298 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9298&quot;&gt;Ensure we have a classloader to boot from&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9299 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9299&quot;&gt;Delete methods deprecated prior to JRuby 9.4.0.0&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9300 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9300&quot;&gt;Replace now-deprecated wait_timeout&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9313 &lt;a href=&quot;https://github.com/jruby/jruby/issues/9313&quot;&gt;Time being returned as ASCII-8BIT encoding in JRuby 10&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9318 &lt;a href=&quot;https://github.com/jruby/jruby/issues/9318&quot;&gt;&lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;Process.detach&lt;/code&gt; raises ArrayIndexOutOfBoundsException if called from a thread that is not the main thread&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9325 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9325&quot;&gt;[fix] NullPointerException from closed IO&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9362 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9362&quot;&gt;Allow endless methods to be an argument to methods like visibity&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9365 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9365&quot;&gt;Marshal load perf&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9371 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9371&quot;&gt;Deprecate all public RubyString constructors&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9374 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9374&quot;&gt;Integrate WASM-based Prism parser into standard build&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9383 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9383&quot;&gt;Disable IntFixnum&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9384 &lt;a href=&quot;https://github.com/jruby/jruby/issues/9384&quot;&gt;Set.new(a_set) throws LocalJumpError&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9385 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9385&quot;&gt;Fixes #9384. Set.new(a_set) throws LocalJumpError&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

</content>
 </entry>
 
 <entry>
   <title>JRuby 10.0.5.0 Released</title>
   <link href="https://www.jruby.org/2026/04/06/jruby-10-0-5-0.html"/>
   <updated>2026-04-06T00:00:00+00:00</updated>
   <id>https://www.jruby.org/2026/04/06/jruby-10-0-5-0</id>
   <content type="html">&lt;p&gt;The JRuby community is pleased to announce the release of JRuby 10.0.5.0.&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;Homepage: &lt;a href=&quot;https://www.jruby.org/&quot;&gt;https://www.jruby.org/&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;Download: &lt;a href=&quot;https://www.jruby.org/download&quot;&gt;https://www.jruby.org/download&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;JRuby 10.0.5.x targets Ruby 3.4 compatibility.&lt;/p&gt;

&lt;p&gt;Thank you to our contributors this release, you help keep JRuby moving forward! &lt;a href=&quot;https://github.com/evaniainbrooks&quot;&gt;@evaniainbrooks&lt;/a&gt;, &lt;a href=&quot;https://github.com/kares&quot;&gt;@kares&lt;/a&gt;, &lt;a href=&quot;https://github.com/chadlwilson&quot;&gt;@chadlwilson&lt;/a&gt;, &lt;a href=&quot;https://github.com/jimtng&quot;&gt;#jimtng&lt;/a&gt;&lt;/p&gt;

&lt;h2 id=&quot;compatibility&quot;&gt;Compatibility&lt;/h2&gt;

&lt;ul&gt;
  &lt;li&gt;Fixed: Two bugs in the JIT compiler that broke certain super calls and defined_method yields. (&lt;a href=&quot;https://github.com/jruby/jruby/issues/8944&quot;&gt;#8944&lt;/a&gt;, &lt;a href=&quot;https://github.com/jruby/jruby/issues/8946&quot;&gt;#8946&lt;/a&gt;, &lt;a href=&quot;https://github.com/jruby/jruby/pull/9310&quot;&gt;#9310&lt;/a&gt;, &lt;a href=&quot;https://github.com/jruby/jruby/pull/9349&quot;&gt;#9349&lt;/a&gt;)&lt;/li&gt;
  &lt;li&gt;Fixed: Fiber#raise left the fiber in an resumable state by not correctly transfering control. (&lt;a href=&quot;https://github.com/jruby/jruby/issues/9297&quot;&gt;#9297&lt;/a&gt;, &lt;a href=&quot;https://github.com/jruby/jruby/pull/9356&quot;&gt;#9356&lt;/a&gt;)&lt;/li&gt;
  &lt;li&gt;Fixed: Connecting a socket using nonblocking operations failed to complete the establishment of the connection. This affected Redis users, among other cases. (&lt;a href=&quot;https://github.com/jruby/jruby/issues/9304&quot;&gt;#9304&lt;/a&gt;, &lt;a href=&quot;https://github.com/jruby/jruby/pull/9305&quot;&gt;#9305&lt;/a&gt;)&lt;/li&gt;
  &lt;li&gt;Fixed: Process#detach raised a NullPointerException if called from a non-main thread. (&lt;a href=&quot;https://github.com/jruby/jruby/issues/9314&quot;&gt;#9314&lt;/a&gt;, &lt;a href=&quot;https://github.com/jruby/jruby/pull/9311&quot;&gt;#9311&lt;/a&gt;)&lt;/li&gt;
&lt;/ul&gt;

&lt;h2 id=&quot;jvm-integration&quot;&gt;JVM Integration&lt;/h2&gt;

&lt;ul&gt;
  &lt;li&gt;Java 26 is officially supported. (&lt;a href=&quot;https://github.com/jruby/jruby/pull/9332&quot;&gt;#9332&lt;/a&gt;)&lt;/li&gt;
&lt;/ul&gt;

&lt;h2 id=&quot;platform-integration&quot;&gt;Platform Integration&lt;/h2&gt;

&lt;ul&gt;
  &lt;li&gt;New platform support: The native library backend for JRuby, JNR, has been updated to include support for the RISCv64 architecture.&lt;/li&gt;
  &lt;li&gt;Fixed on Windows: File#flock used unsupported native operations on Windows, causing it to raise errors. This affected the “logger” library, among other cases. (&lt;a href=&quot;https://github.com/jruby/jruby/pull/9347&quot;&gt;#9347&lt;/a&gt;, &lt;a href=&quot;https://github.com/jruby/jruby/issues/9348&quot;&gt;#9348&lt;/a&gt;)&lt;/li&gt;
  &lt;li&gt;Fixed on Windows: IO#popen failed to pass keyword arguments if also given a leading environment hash. (&lt;a href=&quot;https://github.com/jruby/jruby/pull/9351&quot;&gt;#9351&lt;/a&gt;, &lt;a href=&quot;https://github.com/jruby/jruby/issues/9352&quot;&gt;#9352&lt;/a&gt;)&lt;/li&gt;
&lt;/ul&gt;

&lt;h2 id=&quot;stability&quot;&gt;Stability&lt;/h2&gt;

&lt;ul&gt;
  &lt;li&gt;Fixed: Several memory leaks that affected users running multiple JRuby instances in a single process. (&lt;a href=&quot;https://github.com/jruby/jruby/issues/9070&quot;&gt;#9070&lt;/a&gt;, &lt;a href=&quot;https://github.com/jruby/jruby/issues/9092&quot;&gt;#9092&lt;/a&gt;, &lt;a href=&quot;https://github.com/jruby/jruby/issues/9187&quot;&gt;#9187&lt;/a&gt;, &lt;a href=&quot;https://github.com/jruby/jruby/pull/9359&quot;&gt;#9359&lt;/a&gt;)&lt;/li&gt;
&lt;/ul&gt;

&lt;h3 id=&quot;43-issues-and-prs-resolved-for-10050&quot;&gt;43 Issues and PRs resolved for 10.0.5.0&lt;/h3&gt;

&lt;ul&gt;
  &lt;li&gt;#4213 &lt;a href=&quot;https://github.com/jruby/jruby/issues/4213&quot;&gt;squiggly heredoc strip space between interpolation and line connector by mistake&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8944 &lt;a href=&quot;https://github.com/jruby/jruby/issues/8944&quot;&gt;Double unresolved super from aliased method when compiled with indy&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8946 &lt;a href=&quot;https://github.com/jruby/jruby/issues/8946&quot;&gt;define_method conversion fails to yield after indy JIT&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9070 &lt;a href=&quot;https://github.com/jruby/jruby/issues/9070&quot;&gt;Memory leak in jruby within openhab&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9092 &lt;a href=&quot;https://github.com/jruby/jruby/issues/9092&quot;&gt;ThreadLocal Memory Leak in JRuby 10.0.2.0 with ScriptingContainer&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9187 &lt;a href=&quot;https://github.com/jruby/jruby/issues/9187&quot;&gt;Memory leak running RubyGems in separate runtimes in a loop&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9261 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9261&quot;&gt;Fix Time subsecond precision loss from floating point arithmetic&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9292 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9292&quot;&gt;Reduce BigInteger construction&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9293 &lt;a href=&quot;https://github.com/jruby/jruby/issues/9293&quot;&gt;Incorrect caller_locations line for multi-line call with unless&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9297 &lt;a href=&quot;https://github.com/jruby/jruby/issues/9297&quot;&gt;Different behaviour than MRI on Fiber#raise&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9302 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9302&quot;&gt;review call-info reset&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9304 &lt;a href=&quot;https://github.com/jruby/jruby/issues/9304&quot;&gt;Socket.tcp does not complete connection&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9305 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9305&quot;&gt;Ensure connectable sockets finish&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9307 &lt;a href=&quot;https://github.com/jruby/jruby/issues/9307&quot;&gt;Time being returned as ASCII-8BIT encoding in JRuby 10&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9310 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9310&quot;&gt;[fix] define_method captured block propagation in JIT mode&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9311 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9311&quot;&gt;Push a frame for thread toplevel&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9312 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9312&quot;&gt;Construct xmlschema string as US-ASCII&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9314 &lt;a href=&quot;https://github.com/jruby/jruby/issues/9314&quot;&gt;&lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;Process.detach&lt;/code&gt; raises ArrayIndexOutOfBoundsException if called from a thread that is not the main thread&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9316 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9316&quot;&gt;[10.0] build: bump maven from 3.9.11 to 3.9.14 via script-only style&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9317 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9317&quot;&gt;[10.0] build: improve build/maven consistency / bump github actions&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9322 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9322&quot;&gt;Fix prepended module initialize not called for Ruby classes rooted in a Java superclass&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9323 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9323&quot;&gt;[deps] bump jruby-openssl to latest&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9324 &lt;a href=&quot;https://github.com/jruby/jruby/issues/9324&quot;&gt;NPE retrieving IO channel&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9326 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9326&quot;&gt;[fix] NullPointerException from closed IO&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9330 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9330&quot;&gt;Sync with prism update so we can compile jruby-prism using 10.0 &lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9332 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9332&quot;&gt;Support Java 26&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9334 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9334&quot;&gt;[fix] Exception#dup: copy cause to the duplicated exception&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9335 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9335&quot;&gt;[fix] MatchData#deconstruct_keys: include non-participating captures&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9336 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9336&quot;&gt;[fix] Bignum#eql?: use type-strict comparison (not ==)&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9337 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9337&quot;&gt;[fix] Bignum comparison with Float in &amp;lt;=&amp;gt; and ==&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9338 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9338&quot;&gt;[fix] Bignum: use correct site for coerced comparisons&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9339 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9339&quot;&gt;[fix] IO#reopen: copy encoding from source IO&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9340 &lt;a href=&quot;https://github.com/jruby/jruby/issues/9340&quot;&gt;Hash#rehash corrupts insertion-order when deduplicating keys&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9341 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9341&quot;&gt;[fix] Hash#rehash: fix deduplicating keys (#9340)&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9343 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9343&quot;&gt;[compat] Thread#native_thread_id: using Java thread-id&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9344 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9344&quot;&gt;[fix] Digest::Base: synchronize MessageDigest mutation&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9345 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9345&quot;&gt;[fix] Encoding.compatible?: check when swapping args&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9347 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9347&quot;&gt;Use JDK for File#flock on Windows&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9348 &lt;a href=&quot;https://github.com/jruby/jruby/issues/9348&quot;&gt;ruby/logger gem broken after version 1.6.3 using JRuby on Windows&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9349 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9349&quot;&gt;Disable AliasMethod direct binding for now&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9352 &lt;a href=&quot;https://github.com/jruby/jruby/issues/9352&quot;&gt;Issue with calling IO.popen(env, cmd, opts) on Windows&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9351 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9351&quot;&gt;Fix non-native IO.popen env + kwargs handling&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9354 &lt;a href=&quot;https://github.com/jruby/jruby/issues/9354&quot;&gt;Update JNR dependencies&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9355 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9355&quot;&gt;Propagate newline from if to bodies&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9356 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9356&quot;&gt;Properly complete Fiber#raise transfer&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9359 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9359&quot;&gt;Leak fixes redux&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9364 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9364&quot;&gt;[fix] TCPServer#initialize: close channel on bind/init failure&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

</content>
 </entry>
 
 <entry>
   <title>JRuby 10.0.4.0 Released</title>
   <link href="https://www.jruby.org/2026/03/04/jruby-10-0-4-0.html"/>
   <updated>2026-03-04T00:00:00+00:00</updated>
   <id>https://www.jruby.org/2026/03/04/jruby-10-0-4-0</id>
   <content type="html">&lt;p&gt;The JRuby community is pleased to announce the release of JRuby 10.0.4.0.&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;Homepage: &lt;a href=&quot;https://www.jruby.org/&quot;&gt;https://www.jruby.org/&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;Download: &lt;a href=&quot;https://www.jruby.org/download&quot;&gt;https://www.jruby.org/download&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;JRuby 10.0.4.x targets Ruby 3.4 compatibility.&lt;/p&gt;

&lt;p&gt;Thank you to our contributors this release, you help keep JRuby moving forward! &lt;a href=&quot;https://github.com/evaniainbrooks&quot;&gt;@evaniainbrooks&lt;/a&gt;, &lt;a href=&quot;https://github.com/katafrakt&quot;&gt;@katafrakt&lt;/a&gt;, &lt;a href=&quot;https://github.com/mrnoname1000&quot;&gt;@mrnoname1000&lt;/a&gt;&lt;/p&gt;

&lt;h2 id=&quot;standard-library&quot;&gt;Standard Library&lt;/h2&gt;

&lt;ul&gt;
  &lt;li&gt;The syslog library moves to bundled gems. (&lt;a href=&quot;https://github.com/jruby/jruby/pull/9198&quot;&gt;#9198&lt;/a&gt;)&lt;/li&gt;
  &lt;li&gt;The unicode_normalize library is now thread-safely loaded as an internal library (&lt;a href=&quot;https://github.com/jruby/jruby/issues/9231&quot;&gt;#9231&lt;/a&gt;, &lt;a href=&quot;https://github.com/jruby/jruby/pull/9232&quot;&gt;#9232&lt;/a&gt;)&lt;/li&gt;
&lt;/ul&gt;

&lt;h3 id=&quot;43-issues-and-prs-resolved-for-10040&quot;&gt;43 Issues and PRs resolved for 10.0.4.0&lt;/h3&gt;

&lt;ul&gt;
  &lt;li&gt;#8697 &lt;a href=&quot;https://github.com/jruby/jruby/issues/8697&quot;&gt;Tracing &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;:call&lt;/code&gt; doesn’t work if the traced code is running on a different thread&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8876 &lt;a href=&quot;https://github.com/jruby/jruby/issues/8876&quot;&gt;&lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;import_methods&lt;/code&gt; doesn’t allow calling another refined method&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9120 &lt;a href=&quot;https://github.com/jruby/jruby/issues/9120&quot;&gt;&lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;File.path&lt;/code&gt; doesn’t raise &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;Encoding::CompatibilityError&lt;/code&gt; for ASCII-incompatible string&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9195 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9195&quot;&gt;Refactor keyword arguments logic&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9198 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9198&quot;&gt;Move syslog to bundled gems&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9206 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9206&quot;&gt;Fix exception message when calling import_methods without a Module&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9208 &lt;a href=&quot;https://github.com/jruby/jruby/issues/9208&quot;&gt;Inconsistency with block parameter default value&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9211 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9211&quot;&gt;Fix block argument destructuring with optional parameters&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9212 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9212&quot;&gt;Fix method owner when using import_methods&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9213 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9213&quot;&gt;Make &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;refine&lt;/code&gt; method of &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;Module&lt;/code&gt; private&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9214 &lt;a href=&quot;https://github.com/jruby/jruby/issues/9214&quot;&gt;Data.define single-attribute class rejects positional arguments&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9215 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9215&quot;&gt;Ignore empty kwrest in Data subtypes’ constructors&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9217 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9217&quot;&gt;Add an error for running jruby.sh from a broken JRUBY_HOME&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9218 &lt;a href=&quot;https://github.com/jruby/jruby/issues/9218&quot;&gt;JavaFX AnimationTimer + Mutex.synchronize triggers “deadlock; lock already owned by another fiber belonging to the same thread” on JRuby 10.0.3.0&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9222 &lt;a href=&quot;https://github.com/jruby/jruby/issues/9222&quot;&gt;String interpolation of &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;BasicObject&lt;/code&gt; object raises &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;NameError&lt;/code&gt; instead of &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;NoMethodError&lt;/code&gt;&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9224 &lt;a href=&quot;https://github.com/jruby/jruby/issues/9224&quot;&gt;ClassCastException handling kwargs in Struct&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9225 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9225&quot;&gt;Expand Data initialize empty kwargs fix to Struct&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9226 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9226&quot;&gt;Narrow deadlock check for sibling fibers locking mutex&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9227 &lt;a href=&quot;https://github.com/jruby/jruby/issues/9227&quot;&gt;Version output may not accurately represent JIT mode&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9228 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9228&quot;&gt;Fix version output to reflect current runtime&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9230 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9230&quot;&gt;Use normal call type error for missing dynamic string to_s&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9231 &lt;a href=&quot;https://github.com/jruby/jruby/issues/9231&quot;&gt;Thread safety of require and implications on stdlib string.normalize()&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9232 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9232&quot;&gt;Internalize and threadsafetify String#unicode_normalize&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9237 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9237&quot;&gt;Fix for import_methods does not allow calling another refined method&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9240 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9240&quot;&gt;Fix for File.path doesn’t raise Encoding::CompatibilityError for ASCII incompatible string&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9241 &lt;a href=&quot;https://github.com/jruby/jruby/issues/9241&quot;&gt;&lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;Data#to_h&lt;/code&gt; and &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;Data#deconstruct&lt;/code&gt; return values in wrong order when module overrides &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;initialize&lt;/code&gt; in a subclassed Data class&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9242 &lt;a href=&quot;https://github.com/jruby/jruby/issues/9242&quot;&gt;Spurious Struct#initialize keyword argument warning (and crash) with &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;...&lt;/code&gt; forwarding through &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;super&lt;/code&gt;&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9243 &lt;a href=&quot;https://github.com/jruby/jruby/issues/9243&quot;&gt;&lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;Data#==&lt;/code&gt;/&lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;Data#eql?&lt;/code&gt; and &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;Struct#eql?&lt;/code&gt; return false when instances are &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;extend&lt;/code&gt;ed in &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;initialize&lt;/code&gt;&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9244 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9244&quot;&gt;Fix for ClassCastException inside Struct#initialize when delegating … from a prepended module&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9247 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9247&quot;&gt;Fix Array#slice raises a RangeError when the start index is out of range of Fixnum&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9248 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9248&quot;&gt;Additional fixes for import_methods with JIT&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9252 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9252&quot;&gt;Use prepared accessors to retrieve Data fields&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9254 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9254&quot;&gt;Compare “real” classes for Data#== and eql?&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9258 &lt;a href=&quot;https://github.com/jruby/jruby/issues/9258&quot;&gt;&lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;Kernel#respond_to?&lt;/code&gt; fails if &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;#respond_to_missing?&lt;/code&gt; is not defined&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9259 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9259&quot;&gt;Only set locking thread once successful&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9260 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9260&quot;&gt;Restore Cleaner API use for embedding cleanup&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9272 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9272&quot;&gt;Avoid passing bogus -classpath when empty&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9280 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9280&quot;&gt;Check if respond_to_missing? exists before respond_to?&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9281 &lt;a href=&quot;https://github.com/jruby/jruby/issues/9281&quot;&gt;unexpected ArgumentError: wrong number of arguments&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9283 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9283&quot;&gt;Only localize TracePoint to thread if specified&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9285 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9285&quot;&gt;Clear callInfo so it does not taint other calls&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9289 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9289&quot;&gt;Include gem extension stubs in stdlib artifacts&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9290 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9290&quot;&gt;Improve dist verification&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

</content>
 </entry>
 
 <entry>
   <title>JRuby 10.0.3.0 Released</title>
   <link href="https://www.jruby.org/2026/02/02/jruby-10-0-3-0.html"/>
   <updated>2026-02-02T00:00:00+00:00</updated>
   <id>https://www.jruby.org/2026/02/02/jruby-10-0-3-0</id>
   <content type="html">&lt;p&gt;The JRuby community is pleased to announce the release of JRuby 10.0.3.0.&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;Homepage: &lt;a href=&quot;https://www.jruby.org/&quot;&gt;https://www.jruby.org/&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;Download: &lt;a href=&quot;https://www.jruby.org/download&quot;&gt;https://www.jruby.org/download&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;JRuby 10.0.3.x targets Ruby 3.4 compatibility.&lt;/p&gt;

&lt;p&gt;Thank you to our contributors this release, you help keep JRuby moving forward! @mrnoname1000, @ngr-ilmarh, @Earlopain, @philr, @jotamartos, @kares, @aleksandrs-ledovskis, @trinistr, @katafrakt, @chadlwilson, @khasinski, @evaniainbrooks&lt;/p&gt;

&lt;h2 id=&quot;compatibility&quot;&gt;Compatibility&lt;/h2&gt;

&lt;ul&gt;
  &lt;li&gt;JRuby now reports &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;RbConfig::CONFIG[&apos;arch&apos;]&lt;/code&gt; without a version number, as &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;universal-java&lt;/code&gt;. This allows using different JDK versions without triggering RubyGems missing extension warnings for installed gems. The host Java version is still available as &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;RbConfig::CONFIG[&apos;arch_version&apos;]&lt;/code&gt;. &lt;a href=&quot;https://github.com/jruby/jruby/pull/9107&quot;&gt;#9107&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2 id=&quot;standard-library&quot;&gt;Standard Library&lt;/h2&gt;

&lt;ul&gt;
  &lt;li&gt;The non-gem standard library is upgraded to Ruby 3.4.5 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8967&quot;&gt;#8967&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;rexml is updated to 3.4.4 to address CVE-2025-58767. &lt;a href=&quot;https://github.com/jruby/jruby/pull/9011&quot;&gt;#9011&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;syslog is moved to a default gem at version 0.4.0. The syslog gem now includes JRuby support. &lt;a href=&quot;https://github.com/jruby/jruby/pull/9109&quot;&gt;#9109&lt;/a&gt;, &lt;a href=&quot;https://github.com/ruby/syslog/1&quot;&gt;ruby/syslog#1&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;strscan is updated to 3.1.7. &lt;a href=&quot;https://github.com/jruby/jruby/pull/9159&quot;&gt;#9159&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2 id=&quot;documentation&quot;&gt;Documentation&lt;/h2&gt;

&lt;ul&gt;
  &lt;li&gt;Ruby ri documentation for core and standard library are now included in the release distribution. &lt;a href=&quot;https://github.com/jruby/jruby/issues/9049&quot;&gt;#9049&lt;/a&gt;, &lt;a href=&quot;https://github.com/jruby/jruby/pull/9052&quot;&gt;#9052&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2 id=&quot;all-issuesprs&quot;&gt;All Issues/PRs&lt;/h2&gt;

&lt;ul&gt;
  &lt;li&gt;#8707 &lt;a href=&quot;https://github.com/jruby/jruby/issues/8707&quot;&gt;WARNING: A terminally deprecated method in sun.misc.Unsafe has been called&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8727 &lt;a href=&quot;https://github.com/jruby/jruby/issues/8727&quot;&gt;Cannot install latest &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;rubocop&lt;/code&gt;&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8730 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8730&quot;&gt;Launcher: Defensive fixes&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8758 &lt;a href=&quot;https://github.com/jruby/jruby/issues/8758&quot;&gt;Require is not working for .class file if the class is inside a module since 9.3.0&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8810 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8810&quot;&gt;Possible fix for 8809&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8923 &lt;a href=&quot;https://github.com/jruby/jruby/issues/8923&quot;&gt;&lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;NameError&lt;/code&gt; for autoloaded constant with &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;private_constant&lt;/code&gt;&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8934 &lt;a href=&quot;https://github.com/jruby/jruby/issues/8934&quot;&gt;JRuby under Java 22+ always thinks it’s running under a TTY&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8940 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8940&quot;&gt;Verify to_s is string or fall back on anyToString&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8947 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8947&quot;&gt;New check for System.console tty on JDK 22+&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8955 &lt;a href=&quot;https://github.com/jruby/jruby/issues/8955&quot;&gt;Range#count always returns size for Integer bounds&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8956 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8956&quot;&gt;Handle argument or block passed to Range#count&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8958 &lt;a href=&quot;https://github.com/jruby/jruby/issues/8958&quot;&gt;Concurrent requires can lead to StringIndexOutOfBoundsException&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8960 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8960&quot;&gt;Fix index -1 error while searching for feature path&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8962 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8962&quot;&gt;Upgrade polyglot and remove openssl lib hack&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8967 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8967&quot;&gt;Update stdlib to 3.4.5 and clean up old files&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8975 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8975&quot;&gt;Use RuboCop to clean up poms (10.x)&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8976 &lt;a href=&quot;https://github.com/jruby/jruby/issues/8976&quot;&gt;Regression in keyword argument matching in JRuby v10.0.1.0&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8978 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8978&quot;&gt;Additional fixes for scheme-based globbing&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8984 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8984&quot;&gt;glob refactoring&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8985 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8985&quot;&gt;Fix language spec where error string changed&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8987 &lt;a href=&quot;https://github.com/jruby/jruby/issues/8987&quot;&gt;InvokeDynamicSupport.findVirtual fails with IllegalAccessException: symbolic reference class is not accessible&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8989 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8989&quot;&gt;Explicitly request access before Lookup.find*&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8994 &lt;a href=&quot;https://github.com/jruby/jruby/issues/8994&quot;&gt;autoload + private_constant do not play well together&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8995 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8995&quot;&gt;private_constant should just update existing autoload&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8996 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8996&quot;&gt;Avoid binding unreadable modules’ classes&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8998 &lt;a href=&quot;https://github.com/jruby/jruby/issues/8998&quot;&gt;Time#localtime incorrectly treats zero offset as UTC (regression in v10.0.2.0)&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9006 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9006&quot;&gt;Consider .class a source extension during search&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9007 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9007&quot;&gt;Handle &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;warn(foo, uplevel: nil&lt;/code&gt;)&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9009 &lt;a href=&quot;https://github.com/jruby/jruby/issues/9009&quot;&gt;Encoding a string with undefined chars fails with NoMethodError&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9010 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9010&quot;&gt;Fix “+00:00” and 0 being treated as UTC by Time#localtime and Time.at&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9011 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9011&quot;&gt;Update rexml gem to solve CVE-2025-58767&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9016 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9016&quot;&gt;[fix] regression calling static hash() method on Java proxy&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9017 &lt;a href=&quot;https://github.com/jruby/jruby/issues/9017&quot;&gt;can not use Java class with static hash() method&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9018 &lt;a href=&quot;https://github.com/jruby/jruby/issues/9018&quot;&gt;Parser does not convert newlines reading \r\n on Windows&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9019 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9019&quot;&gt;We need to remove \r from heredoc strings&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9021 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9021&quot;&gt;Retire safe double processing utilities&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9024 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9024&quot;&gt;Move all main classes to org.jruby.main package&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9027 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9027&quot;&gt;Add “since” to bare Deprecated annotations&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9035 &lt;a href=&quot;https://github.com/jruby/jruby/issues/9035&quot;&gt;IO#read does not clear code-range for buffer argument&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9036 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9036&quot;&gt;fix: clear code-range when re-using a string buffer&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9038 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9038&quot;&gt;Add opens and native access to all jar manifests&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9039 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9039&quot;&gt;Update all jnr dependencies&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9041 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9041&quot;&gt;Migrate .java-version contents to .jruby.release&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9049 &lt;a href=&quot;https://github.com/jruby/jruby/issues/9049&quot;&gt;ri docs are not available for core&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9050 &lt;a href=&quot;https://github.com/jruby/jruby/issues/9050&quot;&gt;Marshal fails to load an encoding with an encoding ivar&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9051 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9051&quot;&gt;Ignore encoding when unmarshaling an Encoding&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9052 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9052&quot;&gt;Download and include in dist CRuby’s rdoc data&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9058 &lt;a href=&quot;https://github.com/jruby/jruby/issues/9058&quot;&gt;Implement efficient unshifting&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9059 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9059&quot;&gt;Reserve extra space before elements when unshifting&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9063 &lt;a href=&quot;https://github.com/jruby/jruby/issues/9063&quot;&gt;Hash’s compare_by_identity state does not marshal&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9065 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9065&quot;&gt;Preserve compare_by_identity for marshaled Hash&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9068 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9068&quot;&gt;Windows CI spec runs&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9073 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9073&quot;&gt;fix: Permit overriding of JSA file location using ENV variable&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9084 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9084&quot;&gt;object_id improvements&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9094 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9094&quot;&gt;Implement GC.config [Ruby 3.4]&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9097 &lt;a href=&quot;https://github.com/jruby/jruby/issues/9097&quot;&gt;Update jruby-openssl to v0.15.5 to resolve BouncyCastle 1.79 vulnerability (sonatype-2025-001911).&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9098 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9098&quot;&gt;Fix CoverageData.mergeLines when coverage increases&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9101 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9101&quot;&gt;Cached fixnums for immediate values&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9103 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9103&quot;&gt;Update jruby-openssl to 0.15.5&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9106 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9106&quot;&gt;Use smaller default size for many collections&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9107 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9107&quot;&gt;Separate Java version out of rbconfig ‘arch’&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9108 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9108&quot;&gt;Tidy up default gems&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9109 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9109&quot;&gt;Switch to syslog gem&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9110 &lt;a href=&quot;https://github.com/jruby/jruby/issues/9110&quot;&gt;Calling &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;inspect&lt;/code&gt; on proc resets line in &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;source_location&lt;/code&gt;&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9112 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9112&quot;&gt;Prevent modifying state in RubyProc&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9117 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9117&quot;&gt;Add file path to error message when unlinking non-existing file&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9122 &lt;a href=&quot;https://github.com/jruby/jruby/issues/9122&quot;&gt;Unexpected jruby.sh error messages on Windows&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9127 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9127&quot;&gt;fix(launcher): correct parsing of java release files under Bash/msys2 etc on Windows&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9138 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9138&quot;&gt;Copy Data type’s var table manager with new realClass&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9141 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9141&quot;&gt;refactorings and cleanup motivated by error-prone&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9142 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9142&quot;&gt;Change GC’s methods from module_function to metaclass methods&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9145 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9145&quot;&gt;Never trust external content for FString&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9152 &lt;a href=&quot;https://github.com/jruby/jruby/issues/9152&quot;&gt;Marshal.dump corruption for large Array structures&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9157 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9157&quot;&gt;bump included gems&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9158 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9158&quot;&gt;Use same key match for containsKey&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9159 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9159&quot;&gt;Update strscan to 3.1.7&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9182 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9182&quot;&gt;Fix NoMethodError when encoding with invalid: :replace option&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9188 &lt;a href=&quot;https://github.com/jruby/jruby/issues/9188&quot;&gt;Different arguments for each.map vs each and map alone (10.0)&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9189 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9189&quot;&gt;Fixes #8952. Nest &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;it&lt;/code&gt; should be different &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;it&lt;/code&gt;s&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9190 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9190&quot;&gt;Backport implicit local variable fixes from 10.1&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9191 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9191&quot;&gt;Fixes #8952.  Nested ‘it’ behavior broken&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9192 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9192&quot;&gt;Stab at Fixing #8976&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9194 &lt;a href=&quot;https://github.com/jruby/jruby/issues/9194&quot;&gt;&lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;BigDecimal#+&lt;/code&gt;, &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;#-&lt;/code&gt;, &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;#add&lt;/code&gt;, &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;#sub&lt;/code&gt; always try to cast result of coercion to &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;RubyBigDecimal&lt;/code&gt;&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9196 &lt;a href=&quot;https://github.com/jruby/jruby/issues/9196&quot;&gt;&lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;require &quot;bigdecimal&quot;&lt;/code&gt; does not install &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;BigDecimal()&lt;/code&gt; if it was called previously&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9199 &lt;a href=&quot;https://github.com/jruby/jruby/issues/9199&quot;&gt;Output formatting differences between jRuby 10.0.0.1 and Ruby 3.4 when converting Float to JSON&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9200 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9200&quot;&gt;Extract float formatting into a static method to use with to_json&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9203 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9203&quot;&gt;Invalidate method caches from generated populators&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9204 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9204&quot;&gt;Fix BigDecimal#+, #-, #add, #sub failing when coercing doesn’t return a BigDecimal&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#9205 &lt;a href=&quot;https://github.com/jruby/jruby/pull/9205&quot;&gt;Fix encoding fallback error handling and error message formatting&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

</content>
 </entry>
 
 <entry>
   <title>JRuby 9.4.14.0 Released</title>
   <link href="https://www.jruby.org/2025/08/28/jruby-9-4-14-0.html"/>
   <updated>2025-08-28T00:00:00+00:00</updated>
   <id>https://www.jruby.org/2025/08/28/jruby-9-4-14-0</id>
   <content type="html">&lt;p&gt;The JRuby community is pleased to announce the release of JRuby 9.4.14.0.&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;Homepage: &lt;a href=&quot;https://www.jruby.org/&quot;&gt;https://www.jruby.org/&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;Download: &lt;a href=&quot;https://www.jruby.org/download&quot;&gt;https://www.jruby.org/download&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;JRuby 9.4.14.x targets Ruby 3.1 compatibility.&lt;/p&gt;

&lt;p&gt;Thank you to our contributors this release, you help keep JRuby moving forward! &lt;a href=&quot;https://github.com/matthias-fratz-bsz&quot;&gt;@matthias-fratz-bsz&lt;/a&gt;, &lt;a href=&quot;https://github.com/ikaronen-relex&quot;&gt;@ikaronen-relex&lt;/a&gt;, &lt;a href=&quot;https://github.com/ylecuyer&quot;&gt;@ylecuyer&lt;/a&gt;&lt;/p&gt;

&lt;h2 id=&quot;compatibility&quot;&gt;Compatibility&lt;/h2&gt;

&lt;ul&gt;
  &lt;li&gt;Ruby version is now 3.1.7. (&lt;a href=&quot;https://github.com/jruby/jruby/pull/8966&quot;&gt;#8966&lt;/a&gt;)&lt;/li&gt;
&lt;/ul&gt;

&lt;h2 id=&quot;libraries&quot;&gt;Libraries&lt;/h2&gt;

&lt;ul&gt;
  &lt;li&gt;strscan is updated to 3.1.5. (&lt;a href=&quot;https://github.com/jruby/jruby/pull/8897&quot;&gt;#8897&lt;/a&gt;)&lt;/li&gt;
  &lt;li&gt;cgi is updated to 0.3.7 to resolve CVE-2025-27220 and CVE-2025-27219 (&lt;a href=&quot;https://github.com/jruby/jruby/pull/8954&quot;&gt;#8954&lt;/a&gt;, &lt;a href=&quot;https://github.com/jruby/jruby/pull/8966&quot;&gt;#8966&lt;/a&gt;)&lt;/li&gt;
  &lt;li&gt;uri is updated to 0.12.4. (&lt;a href=&quot;https://github.com/jruby/jruby/pull/8966&quot;&gt;#8966&lt;/a&gt;)&lt;/li&gt;
  &lt;li&gt;net-smtp is updated to 0.3.1.1. (&lt;a href=&quot;https://github.com/jruby/jruby/pull/8966&quot;&gt;#8966&lt;/a&gt;)&lt;/li&gt;
  &lt;li&gt;rss is updated to 0.3.1. (&lt;a href=&quot;https://github.com/jruby/jruby/pull/8966&quot;&gt;#8966&lt;/a&gt;)&lt;/li&gt;
  &lt;li&gt;Non-gem stdlib has been updated to Ruby 3.1.7 sources. (&lt;a href=&quot;https://github.com/jruby/jruby/pull/8966&quot;&gt;#8966&lt;/a&gt;)&lt;/li&gt;
&lt;/ul&gt;

&lt;h2 id=&quot;build&quot;&gt;Build&lt;/h2&gt;

&lt;ul&gt;
  &lt;li&gt;jruby-maven-plugins is updated to 3.0.6 to resolve issues with garbled gem poms. (&lt;a href=&quot;https://github.com/jruby/jruby/pull/8898&quot;&gt;#8898&lt;/a&gt;)&lt;/li&gt;
  &lt;li&gt;The stdlib build scripts have been modified to work with latest polyglot-ruby. (&lt;a href=&quot;https://github.com/jruby/jruby/issues/8634&quot;&gt;#8634&lt;/a&gt;, &lt;a href=&quot;https://github.com/jruby/jruby/pull/8963&quot;&gt;#8963&lt;/a&gt;)&lt;/li&gt;
&lt;/ul&gt;

&lt;h2 id=&quot;usability&quot;&gt;Usability&lt;/h2&gt;

&lt;ul&gt;
  &lt;li&gt;bin/ruby and bin/ruby.bat are now shipped in the distribution, to make installation simpler. (&lt;a href=&quot;https://github.com/jruby/jruby/pull/8875&quot;&gt;#8875&lt;/a&gt;)&lt;/li&gt;
&lt;/ul&gt;

&lt;h3 id=&quot;29-issues-and-prs-resolved-for-94140&quot;&gt;29 Issues and PRs resolved for 9.4.14.0&lt;/h3&gt;

&lt;ul&gt;
  &lt;li&gt;#8422 &lt;a href=&quot;https://github.com/jruby/jruby/issues/8422&quot;&gt;ConcurrentLocalContextProvider leaks memory per thread&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8634 &lt;a href=&quot;https://github.com/jruby/jruby/issues/8634&quot;&gt;9.4.12.0 unable to build itself&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8670 &lt;a href=&quot;https://github.com/jruby/jruby/issues/8670&quot;&gt;Setting system property  ‘jruby.gem.home’ works but outputs a warning&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8779 &lt;a href=&quot;https://github.com/jruby/jruby/issues/8779&quot;&gt;&lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;Marshal.dump(binding)&lt;/code&gt; behavior differs from CRuby&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8823 &lt;a href=&quot;https://github.com/jruby/jruby/issues/8823&quot;&gt;Failure in &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;StringScanner#scan_integer&lt;/code&gt; when running the HexaPDF test suite&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8859 &lt;a href=&quot;https://github.com/jruby/jruby/issues/8859&quot;&gt;&lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;bundle gem&lt;/code&gt; does not fully run&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8866 &lt;a href=&quot;https://github.com/jruby/jruby/issues/8866&quot;&gt;JRuby 9.4.13.0 introduces &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;LoadError: no such file to load -- Win32API&lt;/code&gt; via stdlib/net/http on Windows&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8875 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8875&quot;&gt;Pregenerate bin/ruby and bin/ruby.bat&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8883 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8883&quot;&gt;Normalize arch to universal-java-version&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8884 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8884&quot;&gt;Require the correct case for this library&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8885 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8885&quot;&gt;Coerce the chdir for popen&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8897 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8897&quot;&gt;Update strscan to fix number scanning at nonzero offset&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8898 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8898&quot;&gt;Update maven plugins to latest&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8902 &lt;a href=&quot;https://github.com/jruby/jruby/issues/8902&quot;&gt;Sporadic failure in TestArray#test_insert under indy&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8904 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8904&quot;&gt;Always check array insert pos&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8909 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8909&quot;&gt;Make Binding unmarshalable&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8918 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8918&quot;&gt;Don’t set callInfo when target does not use kwargs&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8919 &lt;a href=&quot;https://github.com/jruby/jruby/issues/8919&quot;&gt;Update vendored cgi gem&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8933 &lt;a href=&quot;https://github.com/jruby/jruby/issues/8933&quot;&gt;Output buffer size calculation for unpack(‘m’) and unpack(‘u’) can overflow for long inputs&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8936 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8936&quot;&gt;Fix integer overflow in buffer length calculation for unpack(‘m’) and unpack(‘u’)&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8954 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8954&quot;&gt;Secuity: Bump cgi to 0.4.2. CVE-2025-27220 CVE-2025-27219&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8961 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8961&quot;&gt;Fix index -1 error while searching for feature path&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8963 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8963&quot;&gt;Upgrade polyglot and remove openssl lib hack&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8966 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8966&quot;&gt;Update stdlib to 3.1.7&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8968 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8968&quot;&gt;Pass multi-elt array key for to_h using yieldArray&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8969 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8969&quot;&gt;Fix memory leak in Concurrent/ThreadSafeLocalContextProvider&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8970 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8970&quot;&gt;Move jruby.gem.home and jruby.gem.path to Options&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8973 &lt;a href=&quot;https://github.com/jruby/jruby/issues/8973&quot;&gt;Pathname::glob behavior changed with 9.4.13.0 and later&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8980 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8980&quot;&gt;Additional fixes for scheme-based globbing (9.4)&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

</content>
 </entry>
 
 <entry>
   <title>JRuby 10.0.2.0 Released</title>
   <link href="https://www.jruby.org/2025/08/07/jruby-10-0-2-0.html"/>
   <updated>2025-08-07T00:00:00+00:00</updated>
   <id>https://www.jruby.org/2025/08/07/jruby-10-0-2-0</id>
   <content type="html">&lt;p&gt;The JRuby community is pleased to announce the release of JRuby 10.0.2.0.&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;Homepage: &lt;a href=&quot;https://www.jruby.org/&quot;&gt;https://www.jruby.org/&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;Download: &lt;a href=&quot;https://www.jruby.org/download&quot;&gt;https://www.jruby.org/download&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;JRuby 10.0.2.x targets Ruby 3.4 compatibility.&lt;/p&gt;

&lt;p&gt;Thank you to our contributors this release, you help keep JRuby moving forward!&lt;/p&gt;

&lt;h3 id=&quot;7-issues-and-prs-resolved-for-10020&quot;&gt;7 Issues and PRs resolved for 10.0.2.0&lt;/h3&gt;

&lt;ul&gt;
  &lt;li&gt;#8920 &lt;a href=&quot;https://github.com/jruby/jruby/issues/8920&quot;&gt;KWargs issue with mustermann gem preventing JRuby 10.0.1.0 upgrade&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8922 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8922&quot;&gt;Don’t clear callInfo for Ruby methods&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8929 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8929&quot;&gt;Update ArgumentError for missing file to match CRuby&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8930 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8930&quot;&gt;Run specs repeatedly with forced JIT&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8943 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8943&quot;&gt;Make closure to method conversion more conservative&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8948 &lt;a href=&quot;https://github.com/jruby/jruby/issues/8948&quot;&gt;SassC - array size too big&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8950 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8950&quot;&gt;Fixes #8948. SassC - array size too big&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

</content>
 </entry>
 
 <entry>
   <title>JRuby 10.0.1.0 Released</title>
   <link href="https://www.jruby.org/2025/07/17/jruby-10-0-1-0.html"/>
   <updated>2025-07-17T00:00:00+00:00</updated>
   <id>https://www.jruby.org/2025/07/17/jruby-10-0-1-0</id>
   <content type="html">&lt;p&gt;The JRuby community is pleased to announce the release of JRuby 10.0.1.0.&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;Homepage: &lt;a href=&quot;https://www.jruby.org/&quot;&gt;https://www.jruby.org/&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;Download: &lt;a href=&quot;https://www.jruby.org/download&quot;&gt;https://www.jruby.org/download&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;JRuby 10.0.1.x targets Ruby 3.4 compatibility.&lt;/p&gt;

&lt;p&gt;Thank you to our contributors this release, you help keep JRuby moving forward! &lt;a href=&quot;https://github.com/PChambino&quot;&gt;@PChambino&lt;/a&gt;, &lt;a href=&quot;https://github.com/kares&quot;&gt;@kares&lt;/a&gt;, &lt;a href=&quot;https://github.com/Earlopain&quot;&gt;@Earlopain&lt;/a&gt;&lt;/p&gt;

&lt;h2 id=&quot;compatibility&quot;&gt;Compatibility&lt;/h2&gt;

&lt;ul&gt;
  &lt;li&gt;Zeitwerk is now fully supported. (&lt;a href=&quot;https://github.com/jruby/jruby/issues/6781&quot;&gt;#6781&lt;/a&gt;, &lt;a href=&quot;https://github.com/jruby/jruby/pull/8852&quot;&gt;#8852&lt;/a&gt;, &lt;a href=&quot;https://github.com/jruby/jruby/issues/8853&quot;&gt;#8853&lt;/a&gt;, &lt;a href=&quot;https://github.com/jruby/jruby/issues/8863&quot;&gt;#8863&lt;/a&gt;, &lt;a href=&quot;https://github.com/jruby/jruby/issues/8777&quot;&gt;#8777&lt;/a&gt;)&lt;/li&gt;
&lt;/ul&gt;

&lt;h2 id=&quot;libraries&quot;&gt;Libraries&lt;/h2&gt;

&lt;ul&gt;
  &lt;li&gt;The net-imap library is updated from 0.5.4 to 0.5.8 (&lt;a href=&quot;https://github.com/jruby/jruby/issues/8826&quot;&gt;#8826&lt;/a&gt;, &lt;a href=&quot;https://github.com/jruby/jruby/pull/8828&quot;&gt;#8828&lt;/a&gt;)&lt;/li&gt;
&lt;/ul&gt;

&lt;h3 id=&quot;62-issues-and-prs-resolved-for-10010&quot;&gt;62 Issues and PRs resolved for 10.0.1.0&lt;/h3&gt;

&lt;ul&gt;
  &lt;li&gt;#6781 &lt;a href=&quot;https://github.com/jruby/jruby/issues/6781&quot;&gt;Remaining Zeitwerk fixes&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8624 &lt;a href=&quot;https://github.com/jruby/jruby/issues/8624&quot;&gt;Inconsistent String behavior between MRI and JRuby&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8690 &lt;a href=&quot;https://github.com/jruby/jruby/issues/8690&quot;&gt;Using JSR223 ScriptEngine interface has no way to clean up resources&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8740 &lt;a href=&quot;https://github.com/jruby/jruby/issues/8740&quot;&gt;JRuby10: BigDecimal(“0”).to_java =&amp;gt; Java::JavaLang::Long&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8767 &lt;a href=&quot;https://github.com/jruby/jruby/issues/8767&quot;&gt;&lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;it&lt;/code&gt; special block variable hides local variable sometimes&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8769 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8769&quot;&gt;Fix &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;sprinf&lt;/code&gt; with explicit zero precision and zero value&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8772 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8772&quot;&gt;parameterless blocks must check for &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;it&lt;/code&gt; outside the block in case it exists already&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8776 &lt;a href=&quot;https://github.com/jruby/jruby/issues/8776&quot;&gt;False positive syntax error on endless method definition on 10.0&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8777 &lt;a href=&quot;https://github.com/jruby/jruby/issues/8777&quot;&gt;Something wrong with requires on 10.0 (broken dry-validation gem for example)&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8778 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8778&quot;&gt;== and === need to support endless method definitions&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8780 &lt;a href=&quot;https://github.com/jruby/jruby/issues/8780&quot;&gt;Fiddle test failing with JRuby 10&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8781 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8781&quot;&gt;ffi LONG/ULONG call different value methods&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8782 &lt;a href=&quot;https://github.com/jruby/jruby/issues/8782&quot;&gt;&lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;Date::Error&lt;/code&gt; with &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;Date.parse&lt;/code&gt; and JRuby 10&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8783 &lt;a href=&quot;https://github.com/jruby/jruby/issues/8783&quot;&gt;Failure in ruby/pp CI in JRuby 10&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8785 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8785&quot;&gt;Rearrange kwargs logic&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8787 &lt;a href=&quot;https://github.com/jruby/jruby/issues/8787&quot;&gt;Frozen string literal warning with FFI and JRuby 10&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8788 &lt;a href=&quot;https://github.com/jruby/jruby/issues/8788&quot;&gt;&lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;Time.new&lt;/code&gt; nanosecond parsing&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8793 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8793&quot;&gt;Fix more corner cases of kwargs from MRI test suite&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8796 &lt;a href=&quot;https://github.com/jruby/jruby/issues/8796&quot;&gt;Jruby 10.0: &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;it&lt;/code&gt; is not working in REPL (irb/pry)&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8798 &lt;a href=&quot;https://github.com/jruby/jruby/issues/8798&quot;&gt;Keyword arguments arity error in drb tests&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8799 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8799&quot;&gt;&lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;it&lt;/code&gt; broken in irb. Used wrong scope type field in parser.&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8800 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8800&quot;&gt;Improve docs and some minor warns from IDE dealt with&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8802 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8802&quot;&gt;Fixes to improve DRb tests&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8803 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8803&quot;&gt;9-digit rational needs to be multiplied by 9 digits&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8826 &lt;a href=&quot;https://github.com/jruby/jruby/issues/8826&quot;&gt;Update net-imap from 0.5.4 to 0.5.8&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8828 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8828&quot;&gt;Update to net-imap 0.5.8 for security fixes&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8829 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8829&quot;&gt;Data fixes and improvements&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8831 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8831&quot;&gt;Tweaks to further improve startup speed and memory use&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8833 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8833&quot;&gt;Missing splatNode creation&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8840 &lt;a href=&quot;https://github.com/jruby/jruby/issues/8840&quot;&gt;Possible bugs found by SAST (Svace)&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8846 &lt;a href=&quot;https://github.com/jruby/jruby/issues/8846&quot;&gt;Deadlock occurs between main and Ruby-0-JIT-1 threads&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8847 &lt;a href=&quot;https://github.com/jruby/jruby/issues/8847&quot;&gt;Java::JavaLang::ClassCastException: class java.lang.Integer cannot be cast to class java.lang.String&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8848 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8848&quot;&gt;Improvements for dynamic string invokedynamic site&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8850 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8850&quot;&gt;single value makes kwargs hash.  Mark it as such&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8852 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8852&quot;&gt;Fixes to improve Zeitwerk support&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8853 &lt;a href=&quot;https://github.com/jruby/jruby/issues/8853&quot;&gt;NameError: uninitialized constant MyGem::Foo::Bar when using Zeitwerk&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8854 &lt;a href=&quot;https://github.com/jruby/jruby/issues/8854&quot;&gt;Java::JavaLang::NullPointerException: Unable to find org.jruby.RubyTime.initialize(RubyTime.java to read failed line&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8856 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8856&quot;&gt;Native (and fast) Time#xmlschema (iso8601)&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8858 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8858&quot;&gt;Fix &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;Time.new&lt;/code&gt; when using (empty) keywords (2 issues)&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8860 &lt;a href=&quot;https://github.com/jruby/jruby/issues/8860&quot;&gt;Time.new gives unexpected value&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8861 &lt;a href=&quot;https://github.com/jruby/jruby/issues/8861&quot;&gt;Using a string that has been mutated seems to result in a variable containing an unexpected value&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8863 &lt;a href=&quot;https://github.com/jruby/jruby/issues/8863&quot;&gt;Order-dependent Zeitwerk failures&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8864 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8864&quot;&gt;[deps] update joda-time to 2.14.0&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8865 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8865&quot;&gt;[deps] update bundler and rubygems to latest&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8867 &lt;a href=&quot;https://github.com/jruby/jruby/issues/8867&quot;&gt;Object.const_defined? not respecting namespace check.&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8868 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8868&quot;&gt;Update snapshot deploy to use new maven infrastructure&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8871 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8871&quot;&gt;Always remove the lock from pool on failure&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8872 &lt;a href=&quot;https://github.com/jruby/jruby/issues/8872&quot;&gt;String#encode replace option incorrectly handles value&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8873 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8873&quot;&gt;Handle simple transcoding replacement correctly&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8874 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8874&quot;&gt;Update to jruby-maven-plugins 3.0.6&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8877 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8877&quot;&gt;Time fixes&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8878 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8878&quot;&gt;Some specs fixes in ruby/spec/language&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8880 &lt;a href=&quot;https://github.com/jruby/jruby/issues/8880&quot;&gt;Time.new with Rational seconds performs invalid rounding to the next second&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8881 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8881&quot;&gt;fix #8880.  Added a second with Rational&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8882 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8882&quot;&gt;Always set chilled strings as sharing bytelist&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8890 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8890&quot;&gt;Fix Time.new parsing (time/new_tags.txt)&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8895 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8895&quot;&gt;Improvements based on SAST null reference reports&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8896 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8896&quot;&gt;Fix an additional dstring indy optimization long bitfield bug&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8905 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8905&quot;&gt;Implement ruby2_keywords_hash dumping&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8907 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8907&quot;&gt;Symbol table tweaks&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8908 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8908&quot;&gt;Update Hash#inspect logic for multibyte keys&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8912 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8912&quot;&gt;Don’t include Object for pathed constant searches&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

</content>
 </entry>
 
 <entry>
   <title>JRuby 9.4.13.0 Released</title>
   <link href="https://www.jruby.org/2025/06/10/jruby-9-4-13-0.html"/>
   <updated>2025-06-10T00:00:00+00:00</updated>
   <id>https://www.jruby.org/2025/06/10/jruby-9-4-13-0</id>
   <content type="html">&lt;p&gt;The JRuby community is pleased to announce the release of JRuby 9.4.13.0.&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;Homepage: &lt;a href=&quot;https://www.jruby.org/&quot;&gt;https://www.jruby.org/&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;Download: &lt;a href=&quot;https://www.jruby.org/download&quot;&gt;https://www.jruby.org/download&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;JRuby 9.4.13.x targets Ruby 3.1 compatibility.&lt;/p&gt;

&lt;p&gt;Thank you to our contributors this release, you help keep JRuby moving forward!&lt;/p&gt;

&lt;h2 id=&quot;stability&quot;&gt;Stability&lt;/h2&gt;

&lt;ul&gt;
  &lt;li&gt;Fixed a slow memory leak in subclass management. (#8842, #8844)&lt;/li&gt;
  &lt;li&gt;Fixed a potential deadlock during multi-threaded boot and concurrent JIT compilation. (#8845, #8849)&lt;/li&gt;
&lt;/ul&gt;

&lt;h2 id=&quot;usability&quot;&gt;Usability&lt;/h2&gt;

&lt;ul&gt;
  &lt;li&gt;Backported JRuby .sh launcher features from JRuby 10, including AppCDS flags for improved startup time. (#8565, #8625, #8626, #8652, #8653, #8656, #8754)&lt;/li&gt;
&lt;/ul&gt;

&lt;h3 id=&quot;56-issues-and-prs-resolved-for-94130&quot;&gt;56 Issues and PRs resolved for 9.4.13.0&lt;/h3&gt;

&lt;ul&gt;
  &lt;li&gt;#8351 &lt;a href=&quot;https://github.com/jruby/jruby/issues/8351&quot;&gt;Zlib::GzipReader missing each_char iterator&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8426 &lt;a href=&quot;https://github.com/jruby/jruby/issues/8426&quot;&gt;Dir[] vs “../../”&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8506 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8506&quot;&gt;Test new version of resolv&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8526 &lt;a href=&quot;https://github.com/jruby/jruby/issues/8526&quot;&gt;obj.first caused Java::JavaUtil::NoSuchElementException on an empty Java21 ArrayList&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8542 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8542&quot;&gt;Fix Dir.glob ../ and cases&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8565 &lt;a href=&quot;https://github.com/jruby/jruby/issues/8565&quot;&gt;JRuby native launcher seems to get confused when both –dev and -Xcompile.mode=JIT are applied&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8574 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8574&quot;&gt;Improvements to support json library&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8577 &lt;a href=&quot;https://github.com/jruby/jruby/issues/8577&quot;&gt;&lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;ArgumentError: unknown keyword&lt;/code&gt; for required keyword argument&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8599 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8599&quot;&gt;Fixes #8577. kwargs checking: Use bits instead of index&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8608 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8608&quot;&gt;add zlib each_char&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8611 &lt;a href=&quot;https://github.com/jruby/jruby/issues/8611&quot;&gt;Setting an instance var on a Java object no longer warns&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8613 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8613&quot;&gt;Warn when creating a new ivar table on JavaProxy wrapper&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8623 &lt;a href=&quot;https://github.com/jruby/jruby/issues/8623&quot;&gt;Installing sassc broke on jruby-head on Windows&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8625 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8625&quot;&gt;Add –cache flag to regenerate AppCDS&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8626 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8626&quot;&gt;Fix default arguments for generating AppCDS flag&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8635 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8635&quot;&gt;Fix &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;tr!&lt;/code&gt; and &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;reverse!&lt;/code&gt; on ByteList view with non-zero begin index&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8643 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8643&quot;&gt;Fixes to get stringio tests and specs green&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8645 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8645&quot;&gt;Update stringio to 3.1.5&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8648 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8648&quot;&gt;Handle errors whe looking for Java executable&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8652 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8652&quot;&gt;Use set -u to avoid accessing uninitialized variables&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8653 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8653&quot;&gt;Align 9.4 launcher with 10&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8654 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8654&quot;&gt;fix glob dir on windows&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8655 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8655&quot;&gt;Make some private helpers for glob&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8656 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8656&quot;&gt;Additional fixes for jruby.sh&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8661 &lt;a href=&quot;https://github.com/jruby/jruby/issues/8661&quot;&gt;Update Unicode to 15.0&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8663 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8663&quot;&gt;copy-rename-maven-plugin version&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8667 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8667&quot;&gt;Update jcodings to 1.0.62 and joni to 2.2.4&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8671 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8671&quot;&gt;fix a regression in KDDI transcoding&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8681 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8681&quot;&gt;Update MRI core tests and tag failures&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8686 &lt;a href=&quot;https://github.com/jruby/jruby/issues/8686&quot;&gt;rbByteEncode fails to no-op when encodings are the same&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8687 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8687&quot;&gt;Handle encoding checks as in strTranscode&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8688 &lt;a href=&quot;https://github.com/jruby/jruby/issues/8688&quot;&gt;Tracing &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;:call&lt;/code&gt; with TracePoint (and –debug flag) makes kwargs unusable&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8691 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8691&quot;&gt;Implement AutoCloseable on JRubyEngine&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8692 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8692&quot;&gt;Save original callers callInfo in tracepoint&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8696 &lt;a href=&quot;https://github.com/jruby/jruby/issues/8696&quot;&gt;New restriction warnings on Java 24&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8715 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8715&quot;&gt;Fix missing 2 arg for IO#readline&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8728 &lt;a href=&quot;https://github.com/jruby/jruby/issues/8728&quot;&gt;Incorrect warning: given block not used&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8731 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8731&quot;&gt;[ji] avoid false duplicate method warning&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8733 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8733&quot;&gt;Remove this warning to match standard set.rb&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8754 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8754&quot;&gt;Backport jruby.sh from JRuby 10&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8755 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8755&quot;&gt;Update uri to version 0.12.3 in JRuby 9.4&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8789 &lt;a href=&quot;https://github.com/jruby/jruby/issues/8789&quot;&gt;Dir.glob and Dir[] on existing file URL raises error&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8795 &lt;a href=&quot;https://github.com/jruby/jruby/issues/8795&quot;&gt;Possible typo in lib/ruby/stdlib/jruby/compiler.rb:61&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8805 &lt;a href=&quot;https://github.com/jruby/jruby/issues/8805&quot;&gt;Possible NPE in RubyModule:searchWithCacheMiss() found by SAST&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8806 &lt;a href=&quot;https://github.com/jruby/jruby/issues/8806&quot;&gt;Possible NPE in StringSupport:rbStrEnumerateLines() found by SAST&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8820 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8820&quot;&gt;Fix recent potential NPE reports&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8821 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8821&quot;&gt;Always cache undef along these paths&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8825 &lt;a href=&quot;https://github.com/jruby/jruby/issues/8825&quot;&gt;Update net-imap from 0.2.3 to 0.2.5&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8827 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8827&quot;&gt;Update to net-imap 0.2.5 for security fixes&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8830 &lt;a href=&quot;https://github.com/jruby/jruby/issues/8830&quot;&gt;Splat with multi-line expression improperly expands&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8834 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8834&quot;&gt;Missing splatNode creation&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8842 &lt;a href=&quot;https://github.com/jruby/jruby/issues/8842&quot;&gt;Metaspace leak in 9.4&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8844 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8844&quot;&gt;Use a normal ClassValue for all such cases&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8845 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8845&quot;&gt;Fix locking of stable class values for JI proxies&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8849 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8849&quot;&gt;Clean up some locking around hierarchy modification&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;#8857 &lt;a href=&quot;https://github.com/jruby/jruby/pull/8857&quot;&gt;Migrate to the new Maven Central publishing system&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

</content>
 </entry>
 
 <entry>
   <title>JRuby 9.4.12.1 Released</title>
   <link href="https://www.jruby.org/2025/05/07/jruby-9-4-12-1.html"/>
   <updated>2025-05-07T00:00:00+00:00</updated>
   <id>https://www.jruby.org/2025/05/07/jruby-9-4-12-1</id>
   <content type="html">&lt;p&gt;The JRuby community is pleased to announce the release of JRuby 9.4.12.1.&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;Homepage: &lt;a href=&quot;https://www.jruby.org/&quot;&gt;https://www.jruby.org/&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;Download: &lt;a href=&quot;https://www.jruby.org/download&quot;&gt;https://www.jruby.org/download&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;JRuby 9.4.12.x targets Ruby 3.1 compatibility.&lt;/p&gt;

&lt;h2 id=&quot;security&quot;&gt;Security&lt;/h2&gt;

&lt;ul&gt;
  &lt;li&gt;jruby-openssl has been updated to 0.15.4, which re-enables hostname verification by default. This addresses &lt;a href=&quot;https://github.com/jruby/jruby-openssl/security/advisories/GHSA-72qj-48g4-5xgx&quot;&gt;CVE-2025-46551 and GHSA-72qj-48g4-5xgx&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;

</content>
 </entry>
 
 <entry>
   <title>JRuby 10.0.0.1 Released</title>
   <link href="https://www.jruby.org/2025/05/07/jruby-10-0-0-1.html"/>
   <updated>2025-05-07T00:00:00+00:00</updated>
   <id>https://www.jruby.org/2025/05/07/jruby-10-0-0-1</id>
   <content type="html">&lt;p&gt;The JRuby community is pleased to announce the release of JRuby 10.0.0.1.&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;Homepage: &lt;a href=&quot;https://www.jruby.org/&quot;&gt;https://www.jruby.org/&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;Download: &lt;a href=&quot;https://www.jruby.org/download&quot;&gt;https://www.jruby.org/download&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;We’ve jumped to Ruby 3.4 compatibility and Java 21 minimum to bring you the best Ruby on JVM experience possible. We are confident this is the most compatible and stable major release we’ve ever had.&lt;/p&gt;

&lt;h2 id=&quot;security&quot;&gt;Security&lt;/h2&gt;

&lt;ul&gt;
  &lt;li&gt;jruby-openssl has been updated to 0.15.4, which re-enables hostname verification by default. This addresses &lt;a href=&quot;https://github.com/jruby/jruby-openssl/security/advisories/GHSA-72qj-48g4-5xgx&quot;&gt;CVE-2025-46551 and GHSA-72qj-48g4-5xgx&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;
</content>
 </entry>
 
</feed>
