Skip to content

Releases: oracle/truffleruby

TruffleRuby - GraalVM Community Edition 20.2.0

18 Aug 20:16
Compare
Choose a tag to compare

TruffleRuby is a high-performance implementation of the Ruby programming language.
TruffleRuby aims to be fully compatible with the standard implementation of Ruby, MRI, version 2.6.6.

More information is available on the GraalVM website: http://www.graalvm.org/docs/reference-manual/ruby/

Changelog

20.2.0

New features:

  • Updated to Ruby 2.6.6 (@eregon).
  • Use InteropLibrary#toDisplayString() to better display objects from other languages.
  • Implement writing to the top scope for global variables (#2024).
  • foreign_object.to_s now uses InteropLibrary#toDisplayString() (and still asString() if isString()).
  • foreign_object.inspect has been improved to be more useful (include the language and meta object).
  • foreign_object.class now calls getMetaObject() (except for Java classes, same as before).
  • Add basic support for Linux ARM64.
  • foreign_object.name = value will now call Interoplibrary#writeMember("name", value) instead of invokeMember("name=", value) (@aardvark179).
  • Always show the Ruby core library files in backtraces (#1414).
  • The Java stacktrace is now shown when sending SIGQUIT to the process, also on TruffleRuby Native, see Debugging for details (#2041).
  • Calls to foreign objects with a block argument will now pass the block as the last argument.
  • foreign.name will now use invokeMember if invocable and if not use readMember, see doc/contrib/interop_implicit_api.md for details.
  • foreign.to_f and foreign.to_i will now attempt to convert to Ruby Float and Integer (#2038).
  • foreign.equal?(other) now uses InteropLibrary#isIdentical(other) and foreign.object_id/__id__ now uses InteropLibrary#identityHashCode().

Bug fixes:

  • Fix #class_exec, #module_exec, #instance_eval, and instance_exec to use activated refinements (#1988, @ssnickolay).
  • Fixed missing method error for FFI calls with blocking: true when interrupted.
  • Use upgraded default gems when installed (#1956).
  • Fixed NameError when requiring an autoload path that does not define the autoload constant (#1905).
  • Thread local IO buffers are now allocated using a stack to ensure safe operating if a signal handler uses one during an IO operation.
  • Fixed TracePoint thread-safety by storing the state on the Ruby Thread (like MRI) instead of inside the TracePoint instance.
  • Make require 'rubygems/package' succeed and define Gem::Deprecate correctly (#2014).
  • Fix MBCLEN_CHARFOUND_P error (@bjfish).
  • Fix rb_enc_str_new when NULL encoding is given with a constant string.
  • Fixed rb_enc_precise_mbclen to handle more inputs.
  • The output for --engine.TraceCompilation is now significantly easier to read, by having shorter method names and source names (oracle/graal#2052).
  • Fix indentation for squiggly heredoc with single quotes (#1564).
  • Only print members which are readable for foreign #inspect (#2027).
  • Fixed the return value of the first call to Kernel#srand in a Thread (#2028).
  • Fix missing flushing when printing an exception at top-level with a custom backtrace, which caused no output being shown (#1750, #1895).
  • Use the mode of the given IO for IO#reopen(IO) which is important for the 3 standard IOs (#2034).
  • Fix potential deadlock when running finalizers (#2041).
  • Let require 'rubygems/specification' work before require 'rubygems'.

Compatibility:

  • Implement UnboundMethod#bind_call (@norswap).
  • Implemented ObjectSpace::WeakMap (#1385, #1958).
  • Implemented strtod and ruby_strtod (#2007, @chrisseaton).
  • Fix detection of #find_type in FFI to ignore MakeMakefile#find_type from mkmf (#1896, #2010).
  • Implemented rb_uv_to_utf8 (#1998, @skateman).
  • Implemented rb_str_cat_cstr.
  • Implemented rb_fstring.
  • Support #refine for Module (#2021, @ssnickolay).
  • Implemented rb_ident_hash_new.
  • Improved the compatibility of Symbol.all_symbols (#2022, @chrisseaton).
  • Implemented rb_enc_str_buf_cat.
  • Implemented rb_int_positive_pow.
  • Implemented rb_usascii_str_new_lit.
  • Define #getch and #getpass on StringIO when io/console is required.
  • Implemented rb_uv_to_utf8 (#1998).
  • Single character IDs now behave more like those in MRI to improve C extension compatibility, so rb_funcall(a, '+', b) will now do the same thing as in MRI.
  • Removed extra public methods on String.
  • Implemented rb_array_sort and rb_array_sort_bang.
  • Do not create a finalizers Thread if there are other public languages, which is helpful for polyglot cases (#2035).
  • Implemented rb_enc_isalnum and rb_enc_isspace.
  • RUBY_REVISION is now the full commit hash used to build TruffleRuby, similar to MRI 2.7+.
  • Implemented rb_enc_mbc_to_codepoint.
  • Changed the lookup methods to achieve Refinements specification (#2033, @ssnickolay)
  • Implemented Digest::Instance#new (#2040).
  • Implemented ONIGENC_MBC_CASE_FOLD.
  • Fixed Thread#raise to call the exception class' constructor with no arguments when given no message (#2045).
  • Fixed refine + super compatibility (#2039, #2048, @ssnickolay)
  • Make the top-level exception handler more compatible with MRI (#2047).
  • Implemented rb_enc_codelen.
  • Implemented Ripper by using the C extension (#1585).

Changes:

  • RubyGems gem commands updated to use the --no-document option by default.

Performance:

  • Enable lazy translation from the parser AST to the Truffle AST for user code by default. This should improve application startup time (#1992).
  • instance variable ... not initialized and similar warnings are now optimized to have no peak performance impact if they are not printed (depends on $VERBOSE).
  • Implement integer modular exponentiation using BigInteger#mod_pow (#1999, @skateman)
  • Fixed a performance issue when computing many substrings of a given non-leaf String with non-US-ASCII characters.
  • Speedup native handle to Ruby object lookup for C extensions.

TruffleRuby - GraalVM Community Edition 20.1.0

19 May 18:09
Compare
Choose a tag to compare

TruffleRuby is a high-performance implementation of the Ruby programming language 2.6.5.

More information is available on the GraalVM website: http://www.graalvm.org/docs/reference-manual/languages/ruby/

Changelog

New features:

  • Nightly builds of TruffleRuby are now available, see the README for details (#1483, @eregon).
  • ||= will not compile the right-hand-side if it's only executed once, to match the idiomatic lazy-initialisation use-case (blog post, #1887, @kipply).
  • Added --metrics-profile-require option to profile searching, parsing, translating and loading files.
  • Added support for captured variables for the Truffle instruments (e.g. Chrome debugger).

Bug fixes:

  • Fixed Exception#dup to copy the Exception#backtrace string array.
  • Fixed rb_warn and rb_warning when used as statements (#1886, @chrisseaton).
  • Fixed NameError.new and NoMethodError.new :receiver argument.
  • Correctly handle large numbers of arguments to rb_funcall (#1882, @aardvark179).
  • Added arity check to Module#{include, prepend}.
  • Fix OpenSSL::Digest.{digest,hexdigest,base64digest} to handle algorithm, data arguments (#1889, @bdewater).
  • Fixed SystemCallError.new parameter conversion.
  • Fixed File#{chmod, umask} argument conversion check.
  • Added warning in Hash.[] for non-array elements.
  • Fixed File.lchmod to raise NotImplementedError when not available.
  • RSTRING_PTR() now always returns a native pointer, resolving two bugs memcpying to (#1822) and from (#1772) Ruby Strings.
  • Fixed issue with duping during splat (#1883, @bjfish).
  • Fixed Dir#children implementation.
  • Fixed SignalException.new error when bad parameter given.
  • Added deprecation warning to Kernel#=~.
  • Fixed puts for a foreign objects, e.g. puts Polyglot.eval('js', '[]') (#1881, @pitr-ch).
  • Fixed Exception#full_message implementation.
  • Updated Kernel.Complex() to handle the exception: false parameter.
  • Fixed Kernel#dup to return self for Complex and Rational objects.
  • Updated Kernel.Float() to handle the exception: false parameter.
  • Fixed String#unpack M format (#1901).
  • Fixed error when SystemCallError message contained non-ASCII characters.
  • Fixed rb_rescue to allow null rescue methods. (#1909, @kipply).
  • Fixed incorrect comparisons between bignums and doubles.
  • Prevented some internal uses of Kernel#caller_locations to be overridden by user code (#1934, @norswap).
  • Fixed an issue caused by recursing inlining within Regexp#quote (#1927).
  • Updated Kernel.Float() to return given string in error message (#1945).
  • Parameters and arity of methods derived from method_missing should now match MRI (#1921).
  • Fixed compile error in RB_FLOAT_TYPE_P macro (#1928).
  • Fixed Symbol#match to call the block with the MatchData (#1933).
  • Fixed Digest::SHA2.hexdigest error with long messages (#1922).
  • Fixed Date.parse to dup the coerced string to not modify original (#1946).
  • Update Comparable error messages for special constant values (#1941).
  • Fixed File.ftype parameter conversion (#1961).
  • Fixed Digest::Instance#file to not modify string literals (#1964).
  • Make sure that string interpolation returns a String, and not a subclass (#1950).
  • alias_method and instance_methods should now work correctly inside a refinement (#1942).
  • Fixed Regexp.union parameter conversion (#1963).
  • IO#read(n) no longer buffers more than needed, which could cause hanging if detecting readability via a native call such as select(2) (#1951).
  • Fixed Random::DEFAULT.seed to be different on boot (#1965, @kipply)
  • rb_encoding->name can now be read even if the rb_encoding is stored in native memory.
  • Detect and cut off recursion when inspecting a foreign object, substituting an ellipsis instead.
  • Fixed feature lookup order to check every $LOAD_PATH path entry for .rb, then every entry for native extension when require is called with no extension.
  • Define the _DARWIN_C_SOURCE macro in extension makefiles (#1592).
  • Change handling of var args in rb_rescue2 to handle usage in C extensions (#1823).
  • Fixed incorrect Encoding::CompatibilityError raised for some interpolated Regexps (#1967).
  • Actually unset environment variables with a nil value for Process.spawn instead of setting them to an empty String.
  • Core library methods part of the Native Image heap are no longer added in the compilation queue on the first call, but after they reach the thresholds like other methods.
  • Fix RbConfig::CONFIG['LIBRUBY_SO'] file extension.
  • Fix char, short, unsigned char, unsigned int, and unsigned short types in Fiddle (#1971).
  • Fix IO#select to reallocate its buffer if it is interrupted by a signal.
  • Fix issue where interpolated string matched # within string as being a variable (#1495).
  • Fix File.join to raise error on strings with null bytes.
  • Fix initialization of Ruby Thread for foreign thread created in Java.
  • Fix registration of default specs in RubyGems (#1987).

Compatibility:

  • The C API type VALUE is now defined as unsigned long as on MRI. This enables switch (VALUE) and other expressions which rely on VALUE being an integer type (#1409, #1541, #1675, #1917, #1954).
  • Implemented Float#{floor, ceil} with ndigits argument.
  • Implemented Thread#fetch.
  • Implemented Float#truncate with ndigits argument.
  • Made String#{byteslice, slice, slice!} and Symbol#slice compatible with endless ranges.
  • Implemented "instance variable not initialized" warning.
  • Make Kernel#{caller, caller_locations} and Thread#backtrace_locations compatible with endless ranges.
  • Implemented Dir#each_child.
  • Implemented Kernel.{chomp, chop} and Kernel#{chomp, chop}.
  • Implemented -p and -a, and -l CLI options.
  • Convert the argument to File.realpath with #to_path (#1894).
  • StringIO#binmode now sets the external encoding to BINARY like MRI (#1898).
  • StringIO#inspect should not include the contents of the StringIO (#1898).
  • Implemented rb_fd_* functions (#1623).
  • Fixed uninitialized variable warnings in core and lib (#1897).
  • Make Thread#backtrace support omit, length and range arguments.
  • Implemented Range#%.
  • Fixed the type of the flags field of rb_data_type_t (#1911).
  • Implemented rb_obj_is_proc (#1908, @kipply, @XrXr).
  • Implemented C API macro RARRAY_ASET().
  • Implemented num2short (#1910, @kipply).
  • RSTRING_END() now always returns a native pointer.
  • Removed register specifier for rb_mem_clear() (#1924).
  • Implemented Thread::Backtrace::Locations#base_label (#1920).
  • Implemented rb_mProcess (#1936).
  • Implemented rb_gc_latest_gc_info (#1937).
  • Implemented RBASIC_CLASS (#1935).
  • Yield 2 arguments for Hash#map if the arity of the block is > 1 (#1944).
  • Add all Errno constants to match MRI, needed by recent RubyGems.
  • Silence ruby_dep warnings since that gem is unmaintained.
  • Clarify error message for not implemented Process.daemon (#1962).
  • Allow multiple assignments in conditionals (#1513).
  • Update NoMethodError#message to match MRI (#1957).
  • Make StringIO work with --enable-frozen-string-literal (#1969).
  • Support NULL for the status of rb_protect().
  • Ensure BigDecimal#inspect does not call BigDecimal#to_s to avoid behaviour change on to_s override (#1960).
  • Define all C-API rb_{c,m,e}* constants as C global variables (#1541).
  • Raise ArgumentError for Socket.unpack_sockaddr_un if the socket family is incorrect.
  • Implemented RTYPEDDATA_*() macros and rb_str_tmp_new() (#1975).
  • Implemented rb_set_end_proc (#1959).
  • Implemented rb_to_symbol.
  • Implemented rb_class_instance_methods, rb_class_public_instance_methods, rb_class_protected_instance_methods, and rb_class_private_instance_methods.
  • Implemented rb_tracepoint_new, rb_tracepoint_disable, rb_tracepoint_enable, and rb_tracepoint_enabled_p (#1450).
  • Implemented RbConfig::CONFIG['AR'] and RbConfig::CONFIG['STRIP'] (#1973).
  • Not yet implemented C API functions are now correctly detected as missing via mkmf's have_func (#1980).
  • Accept RUBY_INTERNAL_EVENT_{NEWOBJ,FREEOBJ} events but warn they are not triggered (#1978, #1983).
  • IO.copy_stream(in, STDOUT) now writes to STDOUT without buffering like MRI.
  • Implemented RbConfig['vendordir'].
  • Implemented Enumerator::ArithmeticSequence.
  • Support (struct RBasic *)->flags and ->klass from ruby.h (#1891, #1884, #1978).

Changes:

  • TRUFFLERUBY_RESILIENT_GEM_HOME has been removed. Unset GEM_HOME and GEM_PATH instead if you need to.
  • The deprecated Truffle::System.full_memory_barrier, Truffle::Primitive.logical_processors, and Truffle::AtomicReference have been removed.
  • The implicit interface for allowing Ruby objects to behave as polyglot arrays with #size, #[] methods has been removed and replaced with an explicit interface where each method starts with polyglot_*.
  • Hash keys are no longer reported as polyglot members.
  • All remaining implicit polyglot behaviour for #[] method was replaced with polyglot_* methods.
  • Rename dynamic API to match InteropLibrary. All the methods keep the name as it is in InteropLibrary with the following changes: use snake_case, add polyglot_ prefix, drop get and is prefix, append ? on all predicates.
  • Split Truffle::Interop.write into .write_array_element and .write_member methods.
  • Rename Truffle::Interop.size to .array_size.
  • Rename Truffle::Interop.is_boolean? to .boolean?.
  • Split Truffle::Interop.read into .read_member and .read_array_element.
  • Drop is_ prefix in Truffle::Interop.is_array_element_* predicates.
    ...
Read more

TruffleRuby - GraalVM Community Edition 20.0.0

18 Feb 19:07
Compare
Choose a tag to compare

TruffleRuby is a high-performance implementation of the Ruby programming language 2.6.5. More information is available on the GraalVM website. Changes in 20.0.0 (from the project changelog):

New features:

  • Enable and document --coverage option (#1840, @chrisseaton).
  • Update the internal LLVM toolchain to LLVM 9 and reduce its download size.
  • Updated to Ruby 2.6.5 (#1749, @eregon).
  • Automatically set PKG_CONFIG_PATH as needed for compiling OpenSSL on macOS (#1830).

Bug fixes:

  • Fix Tempfile#{size,length} when the IO is not flushed (#1765, @rafaelfranca).
  • Dump and load instance variables in subclasses of Exception (#1766, @rafaelfranca).
  • Fix Date._iso8601 and Date._rfc3339 when the string is an invalid date (#1773, @rafaelfranca).
  • Fail earlier for bad handle unwrapping (#1777, @chrisseaton).
  • Match out of range ArgumentError message with MRI (#1774, @rafaelfranca)
  • Raise Encoding::CompatibilityError with incompatible encodings on Regexp (#1775, @rafaelfranca).
  • Fixed interactions between attributes and instance variables in Struct (#1776, @chrisseaton).
  • Coercion fixes for TCPServer.new (#1780, @XrXr)
  • Fix Float#<=> not calling coerce when other argument responds to it (#1783, @XrXr).
  • Do not warn / crash when requiring a file that sets and trigger autoload on itself (#1779, @XrXr).
  • Strip trailing whitespaces when creating a BigDecimal with a String (#1796, @XrXr).
  • Default close_others in Process.exec to false like Ruby 2.6 (#1798, @XrXr).
  • Don't clone methods when setting method to the same visibility (#1794, @XrXr).
  • BigDecimal() deal with large rationals precisely (#1797, @XrXr).
  • Make it possible to call instance_exec with rb_block_call (#1802, @XrXr).
  • Check for duplicate members in Struct.new (#1803, @XrXr).
  • Process::Status#to_i return raw waitpid(2) status (#1800, @XrXr).
  • Process#exec: set close-on-exec to false for fd redirection (#1805, @XrXr, @rafaelfranca).
  • Building C extensions should now work with frozen string literals (#1786, @aardvark179).
  • Keep the Truffle working directory in sync with the native working directory.
  • Rename to_native to polyglot_to_native to match polyglot_pointer? and polyglot_address methods.
  • Fixed missing partial evaluation boundary in Array#{sort,sort!} (#1727).
  • Fixed the class of self and the wrapping Module for Kernel#load(path, wrap=true) (#1739).
  • Fixed missing polyglot type declaration for RSTRING_PTR to help with native/managed interop.
  • Fixed Module#to_s and Module#inspect to not return an extra #<Class: for singleton classes.
  • Arrays backed by native storage now allocate the correct amount of memory (#1828).
  • Fixed issue in ConditionVariable#wait that could lose a ConditionVariable#signal.
  • Do not expose TruffleRuby-specific method Array#swap (#1816, @pitr-ch)
  • Fixed #inspect on broken UTF-8 sequences (#1842, @chrisseaton).
  • Truffle::Interop.keys should report methods of String and Symbol (#1817)
  • Kernel#sprintf encoding validity has been fixed (#1852, @XrXr).
  • Fixed ArrayIndexOutOfBoundsException in File.fnmatch (#1845, @bjfish).
  • Make String#concat work with no or multiple arguments (#1519, @norswap).
  • Make Array#concat work with no or multiple arguments (#1519, @norswap).
  • Coerce BigDecimal(arg) using to_str (#1826).
  • Fixed NameError#dup, NoMethodError#dup, and SystemCallError#dup to copy internal fields.
  • Make Enumerable#chunk work without a block (#1518).
  • Fixed issue with SystemCallError.new setting a backtrace too early.
  • Fixed BigDecimal#to_s formatting issue (#1711).
  • Run END keyword block only once at exit.
  • Implement Numeric#clone to return self.
  • Fixed Symbol#to_proc to create a Proc with nil source_location (#1663).
  • Make GC.start work with keyword arguments.
  • Fixed Kernel#clone for nil, true, false, Integer, and Symbol.
  • Make top-level methods available in Context#getBindings() (#1838).
  • Made Kernel#caller_locations accept a range argument, and return nil when appropriate.
  • Made rb_respond_to work with primitives (#1869, @chrisseaton).
  • Fixed issue with missing backtrace for rescue $ERROR_INFO (#1660).
  • Fixed Struct#hash for keyword_init: true Struct.
  • Fixed String#{upcase!,downcase!,swapcase!}(:ascii) for non-ASCII-compatible encodings like UTF-16.
  • Fixed String#capitalize! for strings that weren't full ASCII.
  • Fixed enumeration issue in ENV.{select, filter}.
  • Fixed Complex and Rational should be frozen after initializing.
  • Fixed printf should raise error when not enough arguments for positional argument.
  • Removed "shadowing outer local variable" warning.
  • Fixed parameter conversion to String in ENV methods.
  • Fixed deprecation warning when ENV.index is called.
  • Fixed issue with ENV.each_key.
  • Fixed ENV.replace implementation.
  • Fixed ENV.udpate implementation.
  • Fixed argument handling in Kernel.printf.
  • Fixed character length after conversion to binary from a non-US-ASCII String.
  • Fixed issue with installing latest bundler (#1880).
  • Fixed type conversion for Numeric#step step parameter.
  • Fixed Kernel#Integer conversion.
  • Fixed IO.try_convert parameter conversion.
  • Fixed linking of always-inline C API functions with -std=gnu90 (#1837, #1879).
  • Avoid race conditions during gem install by using a single download thread.
  • RSTRING_PTR() now always returns a native pointer, resolving two bugs memcpying to (#1822) and from (#1772) Ruby Strings.
  • Do not use gems precompiled for MRI on TruffleRuby (#1837).

Compatibility:

  • Implemented String#start_with?(Regexp) (#1771, @dimameshcharakou).
  • Various improvements to SignalException and signal handling (#1790, @XrXr).
  • Implemented rb_utf8_str_new, rb_utf8_str_new_cstr, rb_utf8_str_new_static (#1788, @chrisseaton).
  • Implemented the unit argument of Time.at (#1791, @XrXr).
  • Implemented keyword_init: true for Struct.new (#1789, @XrXr).
  • Implemented MatchData#dup (#1792, @XrXr).
  • Implemented a native storage strategy for Array to allow better C extension compatibility.
  • Implemented rb_check_symbol_cstr (#1814).
  • Implemented rb_hash_start (#1841, @XrXr).
  • JCodings has been updated from 1.0.42 to 1.0.45.
  • Joni has been updated from 2.1.25 to 2.1.30.
  • Implemented Method#<< and Method#>> (#1821).
  • The .bundle file extension is now used for C extensions on macOS (#1819, #1837).
  • Implemented Comparable#clamp (#1517).
  • Implemented rb_gc_register_mark_object and rb_enc_str_asciionly_p (#1856, @chrisseaton).
  • Implemented rb_io_set_nonblock (#1741).
  • Include the major kernel version in RUBY_PLATFORM on macOS like MRI (#1860, @eightbitraptor).
  • Implemented Enumerator::Chain, Enumerator#+, and Enumerable#chain (#1859, #1858).
  • Implemented Thread#backtrace_locations and Exception#backtrace_locations (#1556).
  • Implemented rb_module_new, rb_define_class_id, rb_define_module_id, (#1876, @XrXr, @chrisseaton).
  • Implemented -n CLI option (#1532).
  • Cache the Symbol of method names in call nodes only when needed (#1872).
  • Implemented rb_get_alloc_func and related functions (#1874, @XrXr).
  • Implemented rb_module_new, rb_define_class_id, rb_define_module_id, (#1876, @chrisseaton).
  • Implemented ENV.slice.
  • Support for the Darkfish theme for RDoc generation has been added back.
  • Implemented Kernel#system exception: true option.
  • Implemented Random.bytes.
  • Implemented Random.random_number.
  • Added the ability to parse endless ranges.
  • Made Range#to_a compatible with endless ranges.
  • Made Array#[] and Array#[]= compatible with endless ranges.

Performance:

  • Use a smaller limit for identity-based inline caches to improve warmup by avoiding too many deoptimizations.
  • long[] array storage now correctly declare that they accept int values, reducing deoptimisations and promotions to Object[] storage.
  • Enable inline caching of Symbol conversion for rb_iv_get and rb_iv_set.
  • rb_type information is now cached on classes as a hidden variable to improve performance.
  • Change to using thread local buffers for socket calls to reduce allocations.
  • Refactor IO.select to reduce copying and optimisation boundaries.
  • Refactor various String and Rope nodes to avoid Truffle performance warnings.
  • Reading caller frames should now work in more cases without deoptimisation.

TruffleRuby - GraalVM Community Edition 19.3.4

03 Nov 21:41
Compare
Choose a tag to compare

TruffleRuby is a high-performance implementation of the Ruby programming language.
TruffleRuby aims to be fully compatible with the standard implementation of Ruby, MRI, version 2.6.5.

The Ruby language component can be added to GraalVM using the gu utility.

More information is available on the GraalVM website: http://www.graalvm.org/docs/reference-manual/languages/ruby/

TruffleRuby - GraalVM Community Edition 19.3.3

04 Aug 21:31
Compare
Choose a tag to compare

TruffleRuby is a high-performance implementation of the Ruby programming language.
TruffleRuby aims to be fully compatible with the standard implementation of Ruby, MRI, version 2.6.5.

The Ruby language component can be added to GraalVM using the gu utility.

More information is available on the GraalVM website: http://www.graalvm.org/docs/reference-manual/languages/ruby/

TruffleRuby - GraalVM Community Edition 19.3.2

12 May 19:36
Compare
Choose a tag to compare

TruffleRuby is a high-performance implementation of the Ruby programming language 2.6.5.

More information is available on the GraalVM website: http://www.graalvm.org/docs/reference-manual/languages/ruby/

TruffleRuby - GraalVM Community Edition 19.3.1

14 Jan 17:24
Compare
Choose a tag to compare

TruffleRuby is a high-performance implementation of the Ruby programming language 2.6.5. More information is available on the GraalVM website. Changes in 19.3.1:

New features:

Compatibility:

  • Implemented rb_gc_register_mark_object and rb_enc_str_asciionly_p (#1856, @chrisseaton).
  • Support for the Darkfish theme for RDoc generation has been added back.

TruffleRuby - GraalVM Community Edition 19.3.0.2

24 Dec 18:38
Compare
Choose a tag to compare

Ruby is an experimental language in the GraalVM 19.3.0.2 release. More information is available on the GraalVM website.

TruffleRuby - GraalVM Community Edition 19.3.0

20 Nov 16:22
Compare
Choose a tag to compare

Ruby is an experimental language in the GraalVM 19.3.0 release. More information is available on the GraalVM website. Changes in 19.3.0 (from the project changelog):

New features:

  • Compilation of C extensions is now done with an internal LLVM toolchain producing both native code and bitcode. This means more C extensions should compile out of the box and this should resolve most linker-related issues.
  • It is no longer necessary to install LLVM for installing C extensions on TruffleRuby.
  • It is no longer necessary to install libc++ and libc++abi for installing C++ extensions on TruffleRuby.
  • On macOS, it is no longer necessary to install the system headers package (#1417).
  • License updated to EPL 2.0/GPL 2.0/LGPL 2.1 like recent JRuby.

Bug fixes:

  • rb_undef_method now works for private methods (#1731, @cky).
  • Fixed several issues when requiring C extensions concurrently (#1565, @eregon).
  • self.method ||= value with a private method now works correctly (#1673, @pitr-ch).
  • Fixed RegexpError: invalid multibyte escape for binary regexps with a non-binary String (#1433, @aardvark179).
  • Arrays now report their methods to other languages for interopability (#1768).
  • Installing sassc now works due to using the LLVM toolchain (#1753).
  • Renamed Truffle::Interop.respond_to? to avoid conflict with Ruby's respond_to? (#1491).
  • Warn only if $VERBOSE is true when a magic comment is ignored (#1757, @nirvdrum).
  • Make C extensions use the same libssl as the one used for the openssl C extension (#1770).

Compatibility:

  • GC.stat can now take an optional argument (#1716, @kirs).
  • Kernel#load with wrap has been implemented (#1739, @chrisseaton).
  • Implemented Kernel#spawn with :chdir (#1492).
  • Implemented rb_str_drop_bytes, notably used by OpenSSL (#1740, @cky).
  • Include executables of default gems, needed for rails new in Rails 6.
  • Use compilation flags similar to MRI for C extension compilation.
  • Warn for gem update --system as it is not fully supported yet and is often not needed.
  • Pass -undefined dynamic_lookup to the linker on macOS like MRI.

Performance:

  • Core methods are no longer always cloned, which reduces memory footprint and should improve warmup.
  • Inline cache calls to rb_intern() with a constant name in C extensions.
  • Improve allocation speed of native handles for C extensions.
  • Improve the performance of NIL_P and INT2FIX in C extensions.
  • Various fixes to improve Rack performance.
  • Optimize String#gsub(String) by not creating a Regexp and using String#index instead.
  • Fixed "FrameWithoutBoxing should not be materialized" compilation issue in TryNode.

The general GraalVM 19.2.0 release notes are available on the graalvm.org website.

TruffleRuby - GraalVM Community Edition 19.2.1

15 Oct 18:57
Compare
Choose a tag to compare

Ruby is an experimental language in the GraalVM 19.2.1 release. More information is available on the GraalVM website. Changes in 19.2.1:

  • Updated to use GraalVM 19.2.1 release.

The general GraalVM 19.2.1 release notes are available on the the graalvm.org website.