JRuby 9.0.3.0 Released

Wednesday, October 21 2015

The JRuby community is pleased to announce the release of JRuby 9.0.3.0

JRuby 9000 is the newest major version of JRuby, representing years of effort and large-scale reboots of several JRuby subsystems. It is expected to be compatible with Ruby 2.2.x and stay in sync with C Ruby. JRuby 9.0.3.0 is our second of many point releases…

[NOTE: 9.0.2.0 was prematurely released to Maven with a serious issue so we had to skip putting out a 9.0.2.0 release (Maven does not allow replacing pushed artifacts). So 9.0.3.0 is our second official point release. We apologize for any confusion this may cause.]

Major features of JRuby 9000:

  • Ruby 2.2 compatibility
  • A new optimizing runtime based on a traditional compiler design
  • New POSIX-friendly IO and Process
  • Fully ported encoding/transcoding logic from MRI

If you do find issues then report them on using our issue tracker at https://github.com/jruby/jruby/issues. We also encourage users to join our IRC channel (#jruby on Freenode) and mailing lists. You may also follow @jruby on Twitter for updates.

Notable updates since 9.0.1.0

  • Pattern ‘foo rescue nil’ now can, at times, run 48x faster
  • Blocks can independently JIT now improving perf in some scenarios
  • define_method with non-capturing body is now 2+x faster (~same speed as def)
  • stat() on windows now supports long paths and UNC paths
  • Handful of issues fixed makes Rails master run (sans AR-JDBC work outstanding)
  • 31 issues fixed for 9.0.3.0

Truffle

JRuby 9000 includes an preliminary version of support for the Truffle language implementation framework and Graal VM from Oracle Labs. In future releases, Truffle will provide an extremely high performance and compatible backend for JRuby. The Truffle backend supports almost all Ruby language features and the majority of the core library, and is able to run simple gems and web frameworks such as Sinatra. It has no support for RubyGems, Rails or any database drivers, does not work on Windows, and is not ready to be tested with applications at this stage. More information on Truffle and Graal can be found in the JRuby Wiki.

Github Issues resolved for 9.0.3.0

  • #3397 - ArrayIndexOutOfBoundsException when utf8 string matched against regexp with with word boundary \b
  • #3399 - Can't seek when file accessed using classpath: OR uri:classloader: schemes
  • #3394 - JRuby thread stuck on IntHashMap.rehash
  • #3380 - Bad value for $$
  • #3378 - #to_ary behavior does not conform to MRI Ruby (1.7.22)
  • #3372 - FileUtils#remove_tailing_slash is a poor method name
  • #3371 - splash params lose a nesting level *only* in #_to_proc
  • #3368 - Jitted blocks do not scope evals properly
  • #3365 - test/mri/psych//test_yaml.rb fails with enable system assertions
  • #3364 - Running Rails test with Jruby 9000
  • #3362 - bar rescue nil should not fail if StandardError is removed
  • #3356 - Inconsistence when modifying return object in ensure
  • #3348 - CSV parsing performance is poor
  • #3340 - JRuby NoMethodError: undefined method `open?' for #<File:/dev/tty>
  • #3338 - JRuby 9.0.1.0 #to_ary should return Array
  • #3337 - support (seekable) ByteArrayInputStream#to_io.rewind
  • #3333 - handle non-public inner class retrieval
  • #3330 - Fix java_implements for multiple interfaces
  • #3327 - Issue #3324
  • #3324 - _id2ref should raise RangeError rather than return nil for no object found
  • #3319 - find-bugs 2
  • #3317 - find-bugs 1
  • #3300 - extension class does not get loaded
  • #3292 - UTF-8 encoding on MS-Windows
  • #3282 - UDPSocket Error inconsistent with MRI
  • #3279 - non-intuitive overloaded varargs matching
  • #3270 - Kernel#require cannot find compiled ruby classes in jruby 9.0.0.0
  • #3267 - Encoding issue in jruby 9.0.0.0
  • #3257 - Initial $LOAD_PATH depends on JRUBY_HOME in jruby-complete-9.0.0.0
  • #3215 - bin/jruby is not updated when bin/jruby.bash is
  • #3137 - Hash#select! inconsistency with MRI when yielding only one argument