[#107867] Fwd: [ruby-cvs:91197] 8f59482f5d (master): add some tests for Unicode Version 14.0.0 — Martin J. Dürst <duerst@...>
To everybody taking care of continuous integration:
3 messages
2022/03/13
[#108090] [Ruby master Bug#18666] No rule to make target 'yaml/yaml.h', needed by 'api.o' — duerst <noreply@...>
Issue #18666 has been reported by duerst (Martin D端rst).
7 messages
2022/03/28
[#108117] [Ruby master Feature#18668] Merge `io-nonblock` gems into core — "Eregon (Benoit Daloze)" <noreply@...>
Issue #18668 has been reported by Eregon (Benoit Daloze).
22 messages
2022/03/30
[ruby-core:108130] [Ruby master Bug#18669] Warning `flags ignored` is displayed for `Regexp.new(/regexp/)`
From:
"koic (Koichi ITO)" <noreply@...>
Date:
2022-03-31 01:48:37 UTC
List:
ruby-core #108130
Issue #18669 has been updated by koic (Koichi ITO). I confirmed the expected behavior in the edge Ruby. Thank you for the quick fixing! ---------------------------------------- Bug #18669: Warning `flags ignored` is displayed for `Regexp.new(/regexp/)` https://bugs.ruby-lang.org/issues/18669#change-97105 * Author: koic (Koichi ITO) * Status: Closed * Priority: Normal * ruby -v: ruby 3.2.0dev (2022-03-30T14:08:13Z master 75efbb98af) [x86_64-darwin19] * Backport: 2.6: UNKNOWN, 2.7: UNKNOWN, 3.0: UNKNOWN, 3.1: UNKNOWN ---------------------------------------- I encountered an unexpected warning in Ruby 3.2.0dev. ## Reproduction code ```ruby Regexp.new(/regexp/) ``` ## Expected Behavior (Ruby 3.1.1) No warnings. ```console % ruby -vwe 'Regexp.new(/regexp/)' ruby 3.1.1p18 (2022-02-18 revision 53f5fc4236) [x86_64-darwin19] ``` ## Actual Behavior (Ruby 3.2.0dev) `warning: flags ignored` is displayed. ```console % ruby -vwe 'Regexp.new(/regexp/)' ruby 3.2.0dev (2022-03-30T14:08:13Z master 75efbb98af) [x86_64-darwin19] -e:1: warning: flags ignored ``` I encountered it in a RuboCop build error: https://app.circleci.com/pipelines/github/rubocop/rubocop/5974/workflows/94732274-f302-497a-a6bc-ffbf036c4e0b/jobs/213494 Perhaps https://github.com/ruby/ruby/pull/5703 change is related. -- https://bugs.ruby-lang.org/ Unsubscribe: <mailto:[email protected]?subject=unsubscribe> <http://lists.ruby-lang.org/cgi-bin/mailman/options/ruby-core>