From 61b5d3cf89d9c4b9390eee1e3b3b458c4ad02c31 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Luiz=20Tiago=20Soares?= Date: Tue, 22 Jul 2025 22:10:56 -0300 Subject: [PATCH 1/2] [DOC] Fix 'hexadecimal' spelling on encodings docs Fix typo --- doc/encodings.rdoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/encodings.rdoc b/doc/encodings.rdoc index eaee2efd62b46a..bd87c38e9e7df1 100644 --- a/doc/encodings.rdoc +++ b/doc/encodings.rdoc @@ -437,7 +437,7 @@ These keyword-value pairs specify encoding options: - :xml: nil (default): No handling for XML entities. - :xml: :text: Treat source text as XML; replace each undefined character - with its upper-case hexdecimal numeric character reference, + with its upper-case hexadecimal numeric character reference, except that: - & is replaced with &. @@ -446,7 +446,7 @@ These keyword-value pairs specify encoding options: - :xml: :attr: Treat source text as XML attribute value; replace each undefined character - with its upper-case hexdecimal numeric character reference, + with its upper-case hexadecimal numeric character reference, except that: - The replacement string r is double-quoted ("r"). From fbaad485db4259497aeac93a296b25432c198fdd Mon Sep 17 00:00:00 2001 From: Naoto Ono Date: Wed, 23 Jul 2025 11:18:11 +0900 Subject: [PATCH 2/2] Launchable: Remove `launchable subset` command (#13969) I've enabled the [Predictive Test Selection](https://www.launchableinc.com/docs/features/predictive-test-selection/) feature, which let machine-learning model selects the appropriate tests to reduce CI execution time in https://github.com/ruby/ruby/pull/12617. However, I noticed that there are some problems for enabling PTS in Ruby CI after several experiments. Until fixing the problem, I'll disable this feature by removing `launchable subset` command. --- .github/actions/launchable/setup/action.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.github/actions/launchable/setup/action.yml b/.github/actions/launchable/setup/action.yml index 3a939452a36bd1..54f1abd97a35a0 100644 --- a/.github/actions/launchable/setup/action.yml +++ b/.github/actions/launchable/setup/action.yml @@ -182,12 +182,6 @@ runs: --flavor workflow="${{ github.workflow }}" \ --test-suite ${suite} \ ) - launchable subset \ - --get-tests-from-previous-sessions \ - --non-blocking \ - --target 90% \ - --session "${session}" \ - raw > /dev/null echo "${target}_session=${session}" >> $GITHUB_OUTPUT }