NEWS for Ruby 3.4.0

This document is a list of user-visible feature changes since the 3.3.0 release, except for bug fixes.

Note that each entry is kept to a minimum, see links for details.

Language changes

Core classes updates

Note: We’re only listing outstanding class updates.

Stdlib updates

We only list stdlib changes that are notable feature changes.

Other changes are listed in the following sections. we also listed release history from the previous bundled version that is Ruby 3.3.0 if it has GitHub releases.

The following default gem is added.

The following default gems are updated.

The following bundled gem is added.

The following bundled gems are updated.

The following bundled gems are promoted from default gems.

Supported platforms

Compatibility issues

rb Float("1.") #=> 1.0 (previously, an ArgumentError was raised) Float("1.E-1") #=> 0.1 (previously, an ArgumentError was raised)

rb "1.".to_f #=> 1.0 "1.E-1".to_f #=> 0.1 (previously, 1.0 was returned)

rb o = Object.new o.extend(Module.new{def a = 1}) o.singleton_method(:a).call #=> 1

Stdlib compatibility issues

C API updates

Implementation improvements

Miscellaneous changes