Hacktoberfest 2026:メンテナが10月に向けて印を付けた、オープンで初心者向けの issue。 Hacktoberfest の issue を見る

Write specs for new Ruby 3.3 features and changes

オープン
#1,216 コメント 4 件 リアクション 0 件 担当者 0 名 GitHub で見る

まだ誰も着手していません。

評価

難易度
5/5
見積もり時間
1週間以上
初心者へのやさしさ
30/100
issue の種類
機能追加
明瞭さ
おおむね明確
活発さ
停滞
技術スタック
ruby
領域
testing

調査の方向性

まず ruby/spec にある既存の Ruby 3.3 の spec と、NEWS-3.3.0.md にある未チェックの項目を確認し、動作の詳細については Ruby Changes 3.3 リファレンスを使用します。残りの機能と変更について、記載されている Socket および C API の作業を含め、ruby_version_is "3.3" ガード内に spec を追加し、スイートが文書化された動作を網羅していることを確認します。

索引モデルが issue の本文から書いたものです。

説明

help wanted

ruby/spec already contains some specs for 3.3, but we should aim to cover all new features and important changes.
This will improve the test coverage of these features (and maybe discover a few bugs along the way), allow other Ruby implementations to implement the changes faster with more confidence and document clearly the new behavior.

The new specs should be within a version guard block:

ruby_version_is "3.3" do
  # New specs
end

NOTE: https://rubyreferences.github.io/rubychanges/3.3.html gives more details for many features and changes.

From https://github.com/ruby/ruby/blob/master/doc/NEWS/NEWS-3.3.0.md:

NEWS for Ruby 3.3.0

Core classes updates

Note: We're only listing outstanding class updates.

Array

  • Array#pack now raises ArgumentError for unknown directives. [Bug #19150]

Dir

  • Dir.for_fd added for returning a Dir object for the directory specified
    by the provided directory file descriptor. [Feature #19347]
  • Dir.fchdir added for changing the directory to the directory specified
    by the provided directory file descriptor. [Feature #19347]
  • Dir#chdir added for changing the directory to the directory specified by
    the provided Dir object. [Feature #19347]

Encoding

  • Encoding#replicate has been removed, it was already deprecated. [Feature #18949]

Fiber

fiber = Fiber.new do
  while true
    puts "Yielding..."
    Fiber.yield
  end
ensure
  puts "Exiting..."
end

fiber.resume
# Yielding...
fiber.kill
# Exiting...

MatchData

  • MatchData#named_captures now accepts optional symbolize_names
    keyword. [Feature #19591]

Module

  • Module#set_temporary_name added for setting a temporary name for a
    module. [Feature #19521]

ObjectSpace::WeakKeyMap

  • New core class to build collections with weak references.
    The class use equality semantic to lookup keys like a regular hash,
    but it doesn't hold strong references on the keys. [Feature #18498]

ObjectSpace::WeakMap

  • ObjectSpace::WeakMap#delete was added to eagerly clear weak map
    entries. [Feature #19561]

Proc

  • Now Proc#dup and Proc#clone call #initialize_dup and #initialize_clone
    hooks respectively. [Feature #19362]

Process

  • New Process.warmup method that notify the Ruby virtual machine that the boot sequence is finished,
    and that now is a good time to optimize the application. This is useful
    for long-running applications. The actual optimizations performed are entirely
    implementation-specific and may change in the future without notice. [Feature #18885]

Process::Status

  • Process::Status#& and Process::Status#>> are deprecated. [Bug #19868]

Range

  • Range#reverse_each can now process beginless ranges with an Integer endpoint. [Feature #18515]
  • Range#reverse_each now raises TypeError for endless ranges. [Feature #18551]
  • Range#overlap? added for checking if two ranges overlap. [Feature #19839]

Refinement

  • Add Refinement#target as an alternative of Refinement#refined_class.
    Refinement#refined_class is deprecated and will be removed in Ruby
    3.4. [Feature #19714]

Regexp

  • The cache-based optimization now supports lookarounds and atomic groupings. That is, match
    for Regexp containing these extensions can now also be performed in linear time to the length
    of the input string. However, these cannot contain captures and cannot be nested. [Feature #19725]

String

  • String#unpack now raises ArgumentError for unknown directives. [Bug #19150]
  • String#bytesplice now accepts new arguments index/length or range of the
    source string to be copied. [Feature #19314]

Thread::Queue

  • Thread::Queue#freeze now raises TypeError. [Bug #17146]

Thread::SizedQueue

  • Thread::SizedQueue#freeze now raises TypeError. [Bug #17146]

Time

  • Time.new with a string argument became stricter. [Bug #19293]
Time.new('2023-12-20')
#  no time information (ArgumentError)

TracePoint

  • TracePoint supports rescue event. When the raised exception was rescued,
    the TracePoint will fire the hook. rescue event only supports Ruby-level
    rescue. [Feature #19572]

Socket

  • Socket#recv and Socket#recv_nonblock returns nil instead of an empty string on closed
    connections. Socket#recvmsg and Socket#recvmsg_nonblock returns nil instead of an empty packet on closed
    connections. [Bug #19012]

  • Name resolution such as Socket.getaddrinfo, Socket.getnameinfo, Addrinfo.getaddrinfo, etc.
    can now be interrupted. [Feature #19965]

Random

  • Random::Formatter#alphanumeric is extended to accept optional chars
    keyword argument. [Feature #18183]

Compatibility issues

  • Subprocess creation/forking via the following file open methods is deprecated. [Feature #19630]

    • Kernel#open
    • URI.open
    • IO.binread
    • IO.foreach
    • IO.readlines
    • IO.read
    • IO.write
  • When given a non-lambda, non-literal block, Kernel#lambda with now raises
    ArgumentError instead of returning it unmodified. These usages have been
    issuing warnings under the Warning[:deprecated] category since Ruby 3.0.0.
    [Feature #19777]

  • it calls without arguments in a block with no ordinary parameters are
    deprecated. it will be a reference to the first block parameter in Ruby 3.4.
    [Feature #18980]

  • Error message for NoMethodError have changed to not use the target object's #inspect
    for efficiency, and says "instance of ClassName" instead. [Feature #18285]

    ([1] * 100).nonexisting
    # undefined method `nonexisting' for an instance of Array (NoMethodError)
    
  • Now anonymous parameters forwarding is disallowed inside a block
    that uses anonymous parameters. [Feature #19370]

C API updates

rb_postponed_job updates

  • New APIs and deprecated APIs (see comments for details)
    • added: rb_postponed_job_preregister()
    • added: rb_postponed_job_trigger()
    • deprecated: rb_postponed_job_register() (and semantic change. see below)
    • deprecated: rb_postponed_job_register_one()
  • The postponed job APIs have been changed to address some rare crashes.
    To solve the issue, we introduced new two APIs and deprecated current APIs.
    The semantics of these functions have also changed slightly; rb_postponed_job_register
    now behaves like the once variant in that multiple calls with the same
    func might be coalesced into a single execution of the func
    [Feature #20057]

Some updates for internal thread event hook APIs

  • rb_internal_thread_event_data_t with a target Ruby thread (VALUE)
    and callback functions (rb_internal_thread_event_callback) receive it.
    https://github.com/ruby/ruby/pull/8885
  • The following functions are introduced to manipulate Ruby thread local data
    from internal thread event hook APIs (they are introduced since Ruby 3.2).
    https://github.com/ruby/ruby/pull/8936
    • rb_internal_thread_specific_key_create()
    • rb_internal_thread_specific_get()
    • rb_internal_thread_specific_set()
  • rb_profile_thread_frames() is introduced to get a frames from
    a specific thread.
    [Feature #10602]

  • rb_data_define() is introduced to define Data. [Feature #19757]

  • rb_ext_resolve_symbol() is introduced to search a function from
    extension libraries. [Feature #20005]

IO related updates:

  • The details of rb_io_t will be hidden and deprecated attributes
    are added for each members. [Feature #19057]
  • rb_io_path(VALUE io) is introduced to get a path of io.
  • rb_io_closed_p(VALUE io) to get opening or closing of io.
  • rb_io_mode(VALUE io) to get the mode of io.
  • rb_io_open_descriptor() is introduced to make an IO object from a file
    descriptor.
主要言語
Ruby
スター
622
フォーク
402
平均マージ
14時間 51分
マージ済み PR(30日)
6

コントリビューションガイド

コントリビューションガイドを開く

はじめの一歩

  1. issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
  2. 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
  3. リポジトリをフォークし、ブランチを切って変更します。
  4. issue 番号を参照したプルリクエストを送ります。

ruby/spec のほかの issue

ruby/spec の issue をすべて見る

似ている issue

Ruby の issue をもっと見る

新しい issue をメールで受け取る

初心者向けの GitHub issue を短くまとめたダイジェスト。