Project

General

Profile

Activity

From 08/20/2024 to 08/26/2024

08/26/2024

11:42 PM Revision c486fce7 (git): [rubygems/rubygems] Bump rb-sys
Bumps [rb-sys](https://github.com/oxidize-rb/rb-sys) from 0.9.101 to 0.9.102.
- [Release notes](https://github.com/ox...
dependabot[bot]
10:02 PM Revision ec61dbd9 (git): [ruby/rdoc] Make darkfish more responsive and readable on mobile
devices
(https://github.com/ruby/rdoc/pull/1162)
- Make the sidebar toggle fixed on all devices
- Prevent default zo...
st0012 (Stan Lo)
06:08 PM Bug #20700 (Feedback): `warn_cr_in_shebang()` doesn't fire if there's no `\n`
The `warn_cr_in_shebang()` function looks for `\r\n` together, but the `\r` should emit a warning, regardless if ther... AMomchilov (Alexander Momchilov)
05:25 PM Revision 8c01dec8 (git): Skip assertion in gc/default.c when multi-Ractor
The counter for total allocated objects may not be accurate when there are
multiple Ractors since it is not atomic so...
peterzhu2118 (Peter Zhu)
05:25 PM Revision 1cafc9d5 (git): Use rb_gc_multi_ractor_p in gc/default.c
peterzhu2118 (Peter Zhu)
05:21 PM Revision 51aadefb (git): [DOC] Tweaks to Array#delete_at
burdettelamar (Burdette Lamar)
04:53 PM Feature #11273 (Closed): [PATCH] Make it possible to `load` from a FIFO file
Closing as we carry a test since commit:bc8687acd62584bf2ba9a951289f3f25a4de7229 that exercises this functionality. alanwu (Alan Wu)
04:13 PM Feature #20664: Add `before` and `until` options to Enumerator.produce
I think that makes sense, as an opposite of `take_while`:
* `take_while` takes all elements until the block returns ...
Eregon (Benoit Daloze)
12:38 PM Feature #20664: Add `before` and `until` options to Enumerator.produce
IMO `take_until` shouldn't include the element. So the OP example should be:
```rb
Enumerator.produce(3, &:pred).ta...
matheusrich (Matheus Richard)
12:14 PM Feature #20664: Add `before` and `until` options to Enumerator.produce
One issue with `take_until` is: does it include the element for which it yielded `true`?
In the description example ...
Eregon (Benoit Daloze)
03:20 PM Revision efa4ec0f (git): [DOC] Tweaks to Array#delete
burdettelamar (Burdette Lamar)
02:56 PM Revision 7c794c28 (git): [rubygems/rubygems] Emit progress to stderr when `--print` is passed to `bundle lock`
`bundle lock --print --update` can take a long time to fetch sources and
resolve the lock file.
Before, `--print` ca...
Matt Brictson
02:56 PM Revision 20664826 (git): [rubygems/rubygems] Fix newline=false being ignored by Shell#warn
https://github.com/rubygems/rubygems/commit/e021ff33a8 Matt Brictson
02:56 PM Revision cfad1f95 (git): [rubygems/rubygems] Fix missing 'msg' parameter in Shell#no?
https://github.com/rubygems/rubygems/commit/ffe89a099a Matt Brictson
02:49 PM Revision 4ede15fb (git): [PRISM] Fix up nested string flags inside string concatenation
kddnewton (Kevin Newton)
01:56 PM Misc #20660: DevMeeting-2024-09-05
* [Feature #20594] A new String method to append bytes while preserving encoding (byroot)
* Continuation from previ...
byroot (Jean Boussier)
01:40 PM Revision 80d457b4 (git): Fix object allocation counters in compaction
When we move an object in compaction, we do not decrement the total_freed_objects
of the original size pool or increm...
peterzhu2118 (Peter Zhu)
01:40 PM Revision c3dc1322 (git): Move final_slots_count to per size pool
peterzhu2118 (Peter Zhu)
12:38 PM Revision 2b0b68fa (git): Shrink `pm_integer_t` (32 bytes → 24)
Alexander Momchilov
10:36 AM Revision 03475e55 (git): bundle install with git repo needs to be run under the git environment
hsbt (Hiroshi SHIBATA)
09:07 AM Feature #20692: Rewrite Array#bsearch in Ruby
`find_minimum_mode = finder || !finder` isn't this always true? Hanmac (Hans Mackowiak)
06:59 AM Bug #20699 (Open): On Windows, the `__dir__` keyword is garbled in paths containing Japanese characters, and `require_relative` fails as well
In paths containing Japanese characters, such as:
C:\テスト_test\test.rb
Code:
``` ruby
# this code -> C:\テスト_...
flatland001 (Hayato Arai)
03:20 AM Revision 45c04cad (git): Bump github/codeql-action from 3.26.4 to 3.26.5
Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.26.4 to 3.26.5.
- [Release notes](https:...
dependabot[bot]
02:49 AM Revision 136cbf04 (git): [ruby/tempfile] Support anonymous tempfile on earlier than Ruby 3.2
https://github.com/ruby/tempfile/commit/7052805029 nobu (Nobuyoshi Nakada)
02:37 AM Bug #20690: URI.encode_www_form_component method escapes tilde when it's not supposed to
I labeled it as a bug, but maybe it's more of a feature request..? sorry if I'm getting it wrong.
I have also crea...
y4m4p (Masahiro Yamashita)
12:08 AM Revision 2e07c130 (git): Remove nonexist declarations
These functions were removed by 33c1e082d0807db403a2d93cbf0a094c911. yui-knk (Kaneko Yuichiro)

08/25/2024

06:24 PM Feature #20664: Add `before` and `until` options to Enumerator.produce
> These options should take callables in this proposal. Procs and Methods certainly meet the condition: "Any value th... zverok (Victor Shepelev)
06:14 PM Feature #18368: Range#step semantics for non-Numeric ranges
Here we go: https://github.com/ruby/ruby/pull/11454
In the absence of further discussion, I went with option (3): ...
zverok (Victor Shepelev)
01:22 PM Feature #6648: Provide a standard API for retrieving all command-line flags passed to Ruby
`-C` option arguments are cumulative and can be relative paths.
I don't think `ruby -C subdir -e 'exec(*Process.argv...
nobu (Nobuyoshi Nakada)
01:08 PM Feature #19057: Hide implementation of `rb_io_t`.
OK, unless `FMODE_EXTERNAL` is given `descriptor` will be closed when a new object could not be allocated.
I thought...
nobu (Nobuyoshi Nakada)
08:41 AM Feature #19057: Hide implementation of `rb_io_t`.
I found `rb_io_open_descriptor` is a bad design, it can results in FD-leaks, because a file descriptor isn't a Ruby o... nobu (Nobuyoshi Nakada)
06:14 AM Bug #20694 (Third Party's Issue): "try to mark T_NONE object" error for very large hash
Yep, it's a bug in `ffi` or a gem using `ffi`. byroot (Jean Boussier)
02:14 AM Bug #20694: "try to mark T_NONE object" error for very large hash
Looking at the backtrace, looks like it's coming from the ffi gem. The problem seems to have been fixed here:
https:...
ngan (Ngan Pham)
02:05 AM Bug #20694: "try to mark T_NONE object" error for very large hash
This is the complete backtrace: https://gist.github.com/ngan/0e81cf7a4d822e46aab12acbadd10765
Sorry for the delay!
ngan (Ngan Pham)
03:13 AM Bug #20698: Please backport fix for CVE-2024-43398
ruby_3_2 commit:3a3784a197383046537e66a9c567b96a52f0f86f merged revision(s) commit:29500e3034681a30045dea462d6bb653e8... nagachika (Tomoyuki Chikanaga)
03:10 AM Bug #20698 (Closed): Please backport fix for CVE-2024-43398
nagachika (Tomoyuki Chikanaga)
03:13 AM Revision 3a3784a1 (git): merge revision(s) 29500e3034681a30045dea462d6bb653e8600738: [Backport #20698]
Update bundled gems list as of 2024-08-22 nagachika (Tomoyuki Chikanaga)
01:22 AM Revision 76e0ea28 (git): [DOC] Tweaks to Array#combination (#11440)
burdettelamar (Burdette Lamar)

08/24/2024

11:17 PM Bug #20680 (Closed): No "void context" warning for literals/etc. in ensure block
Applied in changeset commit:git|620ce3807b51e126bfb41b9b87ff7b33584058f2.
----------
[Bug #20680] `ensure` block is ...
nobu (Nobuyoshi Nakada)
11:16 PM Revision 620ce380 (git): [Bug #20680] `ensure` block is always void context
nobu (Nobuyoshi Nakada)
10:04 PM Bug #20694: "try to mark T_NONE object" error for very large hash
Ah yes, I meant hash.
I’ll upload the full back trace when I’m back online later today.
ngan (Ngan Pham)
09:47 PM Bug #20694: "try to mark T_NONE object" error for very large hash
> very large arrays
You mean hashes right?
This smells like a missing write barrier in the compiler or iseq loa...
byroot (Jean Boussier)
06:15 PM Revision 519152db (git): [ruby/rdoc] Make the summary triangle appear in the correct place
when the summary text overflows to next line.
(https://github.com/ruby/rdoc/pull/1160)
https://github.com/ruby/rdoc/...
ufuk (Ufuk Kayserilioglu)
03:51 PM Revision fd0263d7 (git): [DOC] Tweaks for Array#concat
burdettelamar (Burdette Lamar)
03:49 PM Revision bd19d3d1 (git): [DOC] Tweaks for Array#count doc
burdettelamar (Burdette Lamar)
03:45 PM Revision e962c9c4 (git): [DOC] Tweaks to Array#compact!
burdettelamar (Burdette Lamar)
03:44 PM Revision 418e85b1 (git): [DOC] Tweaks for Array#compact
burdettelamar (Burdette Lamar)
11:07 AM Revision 6717b690 (git): [ruby/rdoc] Modernize RDoc Darkfish template CSS
(https://github.com/ruby/rdoc/pull/1157)
- Update color scheme with muted green tones and improved contrast
- Enhanc...
st0012 (Stan Lo)
08:08 AM Bug #20698 (Closed): Please backport fix for CVE-2024-43398
This is similar request to #20667, but since that was already partially done, I have decided to open new ticket vo.x (Vit Ondruch)
01:53 AM Feature #20625: Object#chain_of
@matz since we don't have a `not_nil?` method, what do you think about adding a `take_until` method to Enumerable or ... matheusrich (Matheus Richard)

08/23/2024

11:45 PM Bug #20693: Dir.tmpdir should perform a real access check before warning about writability
I did think about this, but the way the stat methods work is that the `stat(2)` syscall once on the path and returns ... kjtsanaktsidis (KJ Tsanaktsidis)
05:59 PM Bug #20693: Dir.tmpdir should perform a real access check before warning about writability
What about changing/fixing `stat.writable?` to behave like `File.writable?`
It seems to me a source of confusion and ...
Dan0042 (Daniel DeLorme)
06:26 AM Bug #20693: Dir.tmpdir should perform a real access check before warning about writability
I have a PR for doing this: https://github.com/ruby/ruby/pull/11403
But actually it breaks Bundler's tests, becaus...
kjtsanaktsidis (KJ Tsanaktsidis)
11:42 PM Bug #20697 (Open): `Rational("1r")` fails while `Complex("1i")` succeeds
@mame reported:
```ruby
Rational("1r") #=> invalid value for convert(): "1r" (ArgumentError)
```
https://gith...
nobu (Nobuyoshi Nakada)
11:35 PM Bug #20696 (Open): `IO.read` ignores `err:` option
I expected the following code captures the error message, but `err:` option is ignored.
```shell-session
$ ruby -...
nobu (Nobuyoshi Nakada)
10:48 PM Bug #20691 (Closed): Use-after-free in WeakKeyMap#clear
Applied in changeset commit:git|552f5cd50c8b622294e2dc87a73eb9e1102d78a0.
----------
Fix use-after-free in WeakKeyMa...
peterzhu2118 (Peter Zhu)
05:43 PM Bug #20691: Use-after-free in WeakKeyMap#clear
I opened a backport PR to 3.3: https://github.com/ruby/ruby/pull/11443 peterzhu2118 (Peter Zhu)
10:48 PM Revision ac8d50e5 (git): [Backport 3.3] [Bug #20691] Fix use-after-free in WeakKeyMap#clear (#11443)
Fix use-after-free in WeakKeyMap#clear
[Bug #20691]
If the WeakKeyMap has been marked but sweeping hasn't started y...
peterzhu2118 (Peter Zhu)
10:03 PM Bug #20695 (Closed): Elevated GC allocations in parse.y parser
Testing on the `lobsters` benchmark from [`yjit-bench`](https://github.com/shopify/yjit-bench), the latest `master` p... alanwu (Alan Wu)
08:37 PM Revision 552f5cd5 (git): Fix use-after-free in WeakKeyMap#clear
[Bug #20691]
If the WeakKeyMap has been marked but sweeping hasn't started yet and we
cann WeakKeyMap#clear, then th...
peterzhu2118 (Peter Zhu)
08:21 PM Revision b9902c94 (git): Adds remarks about returned Enumerator
burdettelamar (Burdette Lamar)
07:18 PM Revision 3eb42054 (git): [ruby/prism] Pass Unicode escapes on to onigmo
When we encounter an invalid unicode escape within a regular
expression, we now pass that error on to Onigmo as if it...
kddnewton (Kevin Newton)
02:49 PM Revision 3f6be01b (git): Make object ID faster by checking flags
We can improve object ID performance by checking the FL_SEEN_OBJ_ID flag
instead of looking up in the table.
peterzhu2118 (Peter Zhu)
11:44 AM Revision b51e1c07 (git): [DOC] Fix typos in ObjectSpace::WeakMap docs
The value of variable key2 should be "bar". This way, when nil is assigned to val1 and garbage collection occurs, the... Andy Wong
08:08 AM Revision 4dae4c68 (git): [rubygems/rubygems] Don't break if extra calls to File.writable? happen
In https://bugs.ruby-lang.org/issues/20693, I'd like to have Dir.tmpdir
call `File.writable?` instead of `Stat#writab...
kjtsanaktsidis (KJ Tsanaktsidis)
07:00 AM Revision 73a946c6 (git): Update bundled gems list as of 2024-08-23
git[bot]
07:00 AM Revision 9f586040 (git): [rubygems/rubygems] Fix error message when Bundler refuses to install due to frozen being set without a lockfile
https://github.com/rubygems/rubygems/commit/0857d62ca6 deivid (David Rodríguez)
06:07 AM Revision 7812732e (git): [ruby/tempfile] File.new(fileno, mode: mode, path: path) is provided from Ruby 3.2
https://github.com/ruby/tempfile/commit/67ce897727 hsbt (Hiroshi SHIBATA)
03:17 AM Revision 52082d19 (git): `load_relative` is always falsy here
deivid (David Rodríguez)
03:17 AM Revision fbadcd27 (git): Reuse `load_relative` local
deivid (David Rodríguez)
02:44 AM Revision c48e5959 (git): [ruby/fiddle] Removed libffi patchs for old Ruby
(https://github.com/ruby/fiddle/pull/143)
Pick
https://github.com/ruby/ruby/commit/92865d8760e22dc5035a67e636fab3fbd...
hsbt (Hiroshi SHIBATA)
02:19 AM Feature #20673: Enable native SOCKS support by default
Enabling SOCKS support depends `SOCKS_SERVER` too now, I think it is unusual.
So I agree to enable by default.
I ...
znz (Kazuhiro NISHIYAMA)
12:59 AM Revision 784ccd01 (git): [DOC] Tweaks for Array#collect! (#11434)
burdettelamar (Burdette Lamar)
12:50 AM Bug #20694: "try to mark T_NONE object" error for very large hash
Can you share the full backtrace, not only "Control frame information" section but also "C level backtrace informatio... mame (Yusuke Endoh)
12:22 AM Bug #20694 (Third Party's Issue): "try to mark T_NONE object" error for very large hash
In CI, we've been occasionally seeing `[BUG] try to mark T_NONE object`. I don't have any way to reproduce it but I'm... ngan (Ngan Pham)

08/22/2024

11:47 PM Revision fdba458e (git): Uncomment test accidentally commented in 1656350
peterzhu2118 (Peter Zhu)
11:34 PM Revision 8800127d (git): Skip some tests which don't work under permissionless containers
When running as UID 0 but without CAP_DAC_OVERRIDE (for example, in a
docker container running with --uid 0 but --cap...
KJ Tsanaktsidis
11:32 PM Bug #20693 (Closed): Dir.tmpdir should perform a real access check before warning about writability
The code in `Dir.tmpdir` attempts to warn the user if their temp directory is deficient for some reason:
```ruby
...
kjtsanaktsidis (KJ Tsanaktsidis)
10:54 PM Revision 8657de70 (git): [Backport 3.3] [Bug #20688] Fix use-after-free for WeakMap and WeakKeyMap (#11439)
* Add struct weakmap_entry for WeakMap entries
* Refactor wmap_foreach to pass weakmap_entry
* Use wmap_foreach for...
peterzhu2118 (Peter Zhu)
09:04 PM Feature #20692 (Open): Rewrite Array#bsearch in Ruby
inspired by https://bugs.ruby-lang.org/issues/20182
# Proporsal
Rewrite Array#bsearch
```ruby
class Array
...
sebyx07 (Sebastian Buza)
08:43 PM Feature #18368: Range#step semantics for non-Numeric ranges
matz (Yukihiro Matsumoto) wrote in #note-31:
> It seems this change breaks step over string ranges (e.g. `"a".."z")....
Dan0042 (Daniel DeLorme)
01:04 PM Feature #18368: Range#step semantics for non-Numeric ranges
@mame It doesn’t take long, but I’ll have time for that on the weekend (most probably Sunday).
I hope that some cl...
zverok (Victor Shepelev)
01:02 PM Feature #18368: Range#step semantics for non-Numeric ranges
@zverok Please fix the incompatibility first before having such a discussion. If it takes long, I will have to revert... mame (Yusuke Endoh)
06:44 AM Feature #18368: Range#step semantics for non-Numeric ranges
@matz I can certainly implement the specialization, but just to clarify: are there any evidence that people use `("a"... zverok (Victor Shepelev)
03:11 AM Feature #18368: Range#step semantics for non-Numeric ranges
If we take this compatibility as important and go with it, should we give up `("a".."aaaa").step("a")` or support it? knu (Akinori MUSHA)
02:44 AM Feature #18368: Range#step semantics for non-Numeric ranges
We have little choice but to specialize it for strings as we don't want to add support for `"a" + 3` that will most c... knu (Akinori MUSHA)
01:29 AM Feature #18368 (Open): Range#step semantics for non-Numeric ranges
It seems this change breaks step over string ranges (e.g. `"a".."z").step(3)`). We need to handle string ranges speci... matz (Yukihiro Matsumoto)
07:26 PM Bug #20688: Use-after-free in WeakMap and WeakKeyMap
I opened a PR to backport to Ruby 3.3: https://github.com/ruby/ruby/pull/11439 peterzhu2118 (Peter Zhu)
02:02 PM Bug #20688 (Closed): Use-after-free in WeakMap and WeakKeyMap
Applied in changeset commit:git|df9a6aa94330cbf414afcd957d1b87defc67e1c5.
----------
Fix WeakMap use-after-free
[Bu...
peterzhu2118 (Peter Zhu)
05:50 PM Revision 16563504 (git): Don't use gc_impl.h inside of gc/gc.h
Using gc_impl.h inside of gc/gc.h will cause gc/gc.h to use the functions
in gc/default.c when builing with shared GC...
peterzhu2118 (Peter Zhu)
05:50 PM Revision b0c92d6c (git): Change hash_replace_ref_value to assume value moved
When hash_foreach_replace_value returns ST_REPLACE, it's guaranteed that
the value has moved in hash_replace_ref_value.
peterzhu2118 (Peter Zhu)
04:05 PM Bug #20691 (Closed): Use-after-free in WeakKeyMap#clear
GitHub PR: https://github.com/ruby/ruby/pull/11437
If the WeakKeyMap has been marked but sweeping hasn't started y...
peterzhu2118 (Peter Zhu)
03:23 PM Revision 3f30c4df (git): [ruby/prism] Update templates/include/prism/ast.h.erb
https://github.com/ruby/prism/commit/7f7620b6d5 kddnewton (Kevin Newton)
03:23 PM Revision 0ef703b9 (git): [ruby/prism] Render node comments into their `ast.h`
https://github.com/ruby/prism/commit/b17c3241d3 Alexander Momchilov
02:43 PM Revision d57486cb (git): [ruby/prism] Turn off extended mode when parsing extended group
https://github.com/ruby/prism/commit/098b3f08bc kddnewton (Kevin Newton)
02:01 PM Revision 56a34b5a (git): Fix use-after-free for WeakKeyMap
[Bug #20688]
We cannot free the key before the ST_DELETE because it could hash the
key which would read the key and ...
peterzhu2118 (Peter Zhu)
02:01 PM Revision df9a6aa9 (git): Fix WeakMap use-after-free
[Bug #20688]
We cannot free the weakmap_entry before the ST_DELETE because it could
hash the key which would read th...
peterzhu2118 (Peter Zhu)
02:01 PM Revision 34bf724a (git): Remove wmap_free_entry
peterzhu2118 (Peter Zhu)
02:01 PM Revision 3dd46797 (git): Refactor wmap_compact to use wmap_foreach
peterzhu2118 (Peter Zhu)
02:01 PM Revision 9c372f87 (git): Use wmap_foreach for wmap_mark
peterzhu2118 (Peter Zhu)
02:01 PM Revision e375fa07 (git): Refactor wmap_foreach to pass weakmap_entry
peterzhu2118 (Peter Zhu)
02:01 PM Revision 9a9e7438 (git): Add struct weakmap_entry for WeakMap entries
peterzhu2118 (Peter Zhu)
11:48 AM Revision 2569413b (git): [rubygems/rubygems] Fix `--prefer-local` flag
The original implementation of this flag was too naive and all it did
was restricting gems to locally installed versi...
deivid (David Rodríguez)
11:48 AM Revision 203051d8 (git): [rubygems/rubygems] Fix bad grammar in log message
https://github.com/rubygems/rubygems/commit/bea4c1ad79 deivid (David Rodríguez)
10:24 AM Misc #20013: Travis CI status
jaruga (Jun Aruga) wrote in #note-37:
> I am seeing Travis infra errors. It started at least since 13th August 2024 ...
jaruga (Jun Aruga)
09:11 AM Misc #20013: Travis CI status
Sent a PR to allow failures for ppc64le/s390x on ruby/prism.
https://github.com/ruby/prism/pull/3005
jaruga (Jun Aruga)
09:10 AM Misc #20013: Travis CI status
I am seeing Travis infra errors. It started at least since 13th August 2024 until now. Now the errors only happen on ... jaruga (Jun Aruga)
09:33 AM Bug #20690 (Rejected): URI.encode_www_form_component method escapes tilde when it's not supposed to
## Problem
As the title says, `Uri.encode_www_form_component` is escaping tilde (`~`) where it should not according...
y4m4p (Masahiro Yamashita)
08:03 AM Bug #20682: Slave PTY output is lost after a child process exits in macOS
@akr
I'd appreciate any ideas you may have.
ono-max (Naoto Ono)
08:00 AM Bug #20682: Slave PTY output is lost after a child process exits in macOS
Here is the summary that we know so far.
## Current PTY's behavior
The slave PTY output is lost after a child p...
ono-max (Naoto Ono)
07:54 AM Bug #20682: Slave PTY output is lost after a child process exits in macOS
@mame and I have noticed that there is a problem in the workaround solution: https://github.com/ruby/ruby/pull/11404
...
ono-max (Naoto Ono)
08:03 AM Bug #20586: Some filesystem calls in dir.c are missing error handling and can return incorrect results if interrupted
jeremyevans0 (Jeremy Evans) wrote in #note-11:
>
> I've submitted a pull request to add error checking to `getlogi...
ivoanjo (Ivo Anjo)
07:38 AM Revision d731adb7 (git): Strictly checking pull-request author
hsbt (Hiroshi SHIBATA)
07:35 AM Bug #20677 (Closed): error: mach-o section specifier requires a segment whose length is between 1 and 16 characters
Applied in changeset commit:git|86c2724e75375ceb165c378ed4261c551136e593.
----------
Don't emit ELF notes on non-ELF...
kjtsanaktsidis (KJ Tsanaktsidis)
07:35 AM Revision 86c2724e (git): Don't emit ELF notes on non-ELF platforms
These apparently break compilation on old MacOS toolchains, because the
MachO section name is capped to 16 chars (alt...
kjtsanaktsidis (KJ Tsanaktsidis)
07:35 AM Revision 6a746e1b (git): Check for both aarch64 and arm64 arch's for pac-ret
Linux calls it aarch64, but MacOS calls it arm64; pac-ret works on both. kjtsanaktsidis (KJ Tsanaktsidis)
07:35 AM Revision ff0a1818 (git): Fix typo in ELF note generation
This wasn't looking at the right macro name for pac-ret support, so if
Ruby was compiled with pac-ret but NOT BTI, th...
kjtsanaktsidis (KJ Tsanaktsidis)
07:32 AM Revision 004c6a6e (git): Use ruby to suppress a warning message by cmd.exe
It is expected that reading from command with offset fails by ESPIPE
and the pipe will be closed immediately. While ...
nobu (Nobuyoshi Nakada)
07:01 AM Revision 29500e30 (git): Update bundled gems list as of 2024-08-22
git[bot]
05:27 AM Bug #20689 (Open): TestInvokeVerb#test_invokeverb has warnings on Windows
`make test-all TESTS="test/win32ole/test_folderitem2_invokeverb.rb"` shows the following warnings.
```
2024-08-22...
hsbt (Hiroshi SHIBATA)
03:35 AM Revision e7ce8ca1 (git): Fix commented version of codeql-action/upload-sarif [ci skip]
Dependabot will update matching version comments. nobu (Nobuyoshi Nakada)
03:25 AM Revision 0846bcbd (git): Bump github/codeql-action from 3.26.3 to 3.26.4
Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.26.3 to 3.26.4.
- [Release notes](https:...
dependabot[bot]
02:29 AM Revision 64a005df (git): `make test-tool` with Windows is broken. We should use :KILL with that platform.
```
[ 14/191] TestParallel::TestParallel#test_hungup = 11.02 s
1) Failure:
TestParallel::TestParallel#test_hungup [...
hsbt (Hiroshi SHIBATA)
02:20 AM Revision a3f5a043 (git): Handle getlogin failure in PTY.spawn
getlogin is only called if USER environment variable is not set,
but if getlogin returns NULL in that case, then do n...
jeremyevans (Jeremy Evans)
02:20 AM Revision ae886e0c (git): Check getlogin return value before passing to strcasecmp
getlogin can return NULL, and this can avoid a segfault
in that case.
Mentioned as an issue in comment to bug 20586.
jeremyevans (Jeremy Evans)
02:06 AM Revision 8999fd1a (git): automerge needs windows results
hsbt (Hiroshi SHIBATA)
01:38 AM Revision 8558bea2 (git): Suppress warning for fd leak
```
Leaked file descriptor: TestResolvDNS#test_multiple_servers_with_timeout_and_truncated_tcp_fallback: 15 : #<TCPSo...
hsbt (Hiroshi SHIBATA)

08/21/2024

10:52 PM Bug #20586: Some filesystem calls in dir.c are missing error handling and can return incorrect results if interrupted
jeremyevans0 (Jeremy Evans) wrote in #note-10:
> ivoanjo (Ivo Anjo) wrote in #note-9:
> > The only (potential?) iss...
jeremyevans0 (Jeremy Evans)
09:46 PM Bug #20687 (Open): Does tarball require baseruby?
hsbt (Hiroshi SHIBATA)
10:14 AM Bug #20687: Does tarball require baseruby?
nobu (Nobuyoshi Nakada) wrote in #note-1:
> In that case, the system ruby is used to re-check encoding sources and u...
vo.x (Vit Ondruch)
09:12 AM Bug #20687 (Closed): Does tarball require baseruby?
Applied in changeset commit:git|6ab591f80aa19d63ecd1e1df3c09c391efb318a6.
----------
[Bug #20687] Check if base ruby...
nobu (Nobuyoshi Nakada)
03:14 AM Bug #20687: Does tarball require baseruby?
Thanks for looking into this, @hsbt and @nobu! ❤️ ZimbiX (Brendan Weibrecht)
03:06 AM Bug #20687: Does tarball require baseruby?
In that case, the system ruby is used to re-check encoding sources and update encdb.h if needed.
Encodings under enc...
nobu (Nobuyoshi Nakada)
02:09 AM Bug #20687 (Closed): Does tarball require baseruby?
From https://github.com/rbenv/ruby-build/issues/2435
I'm wondering why tarball use system ruby with above environm...
hsbt (Hiroshi SHIBATA)
08:59 PM Revision 773cf883 (git): [PRISM] Reset $. when done reading STDIN
kddnewton (Kevin Newton)
08:32 PM Revision f6049982 (git): [PRISM] Fix TestTRICK#test_ksk_1
If an array element is a static literal that does not result in a
intermediate array, it still needs to be compiled n...
kddnewton (Kevin Newton)
08:32 PM Revision 465cf8d8 (git): [PRISM] Potentially enable coverage on the main script
kddnewton (Kevin Newton)
07:56 PM Revision 76ccd1df (git): [DOC] Tweaks for Enum#tally
burdettelamar (Burdette Lamar)
04:40 PM Revision 9ae91eb2 (git): Backport warning feature for bundled gems from master (#11420)
* Make sure to always use the right `warn`
* lib/bundled_gems.rb: more reliable caller detection
The `2` skipped fr...
hsbt (Hiroshi SHIBATA)
04:07 PM Revision 53e37953 (git): [DOC] Tweaks to Array#bsearch_index
burdettelamar (Burdette Lamar)
04:06 PM Revision f5579c92 (git): [DOC] Include keywords.rdoc in doc/syntax/ (#11414)
burdettelamar (Burdette Lamar)
03:59 PM Revision 65b3bced (git): [DOC] Tweaks for Array#collect
burdettelamar (Burdette Lamar)
03:56 PM Revision ee6c7ab0 (git): [DOC] Tweaks for Array#clear
burdettelamar (Burdette Lamar)
03:42 PM Revision 124f1754 (git): [DOC] Tweaks for Array#bsearch
burdettelamar (Burdette Lamar)
03:37 PM Revision 7ad74d16 (git): [PRISM] Implement unused block warning
Related: ruby/prism#2935 eileencodes (Eileen Uchitelle)
03:12 PM Revision e15b454b (git): Simplify how finalizers are ran at shutdown
We don't need to build a linked list from the finalizer table and
instead we can just run the finalizers by iterating...
peterzhu2118 (Peter Zhu)
02:47 PM Revision 669d1f79 (git): [rubygems/rubygems] Restore support for passing relative paths to `:git`
The `file://` protocol does not really work with relative paths and it's
not necessary anyways. So restore support fo...
deivid (David Rodríguez)
02:47 PM Revision 52c02794 (git): [rubygems/rubygems] Add missing flag passed to `git fetch`
Doesn't really change the test outcome, but I noticed it was missing.
https://github.com/rubygems/rubygems/commit/ea...
deivid (David Rodríguez)
02:34 PM Revision 2bc141f2 (git): [PRISM] Fix up test exception assertion for Prism
kddnewton (Kevin Newton)
02:05 PM Bug #20688 (Closed): Use-after-free in WeakMap and WeakKeyMap
GitHub PR: https://github.com/ruby/ruby/pull/11421
We cannot free the weakmap_entry before the ST_DELETE because i...
peterzhu2118 (Peter Zhu)
12:43 PM Revision d5dbaa5d (git): Remove unused weakmap field in wmap_foreach
peterzhu2118 (Peter Zhu)
12:07 PM Revision 419d3221 (git): [rubygems/rubygems] Fix `gem uninstall <name>:<version>` failing on shadowed default gems
https://github.com/rubygems/rubygems/commit/29357a5dd6 deivid (David Rodríguez)
12:06 PM Revision 3ebe249c (git): [rubygems/rubygems] Add better error when trying to develop RubyGems with an unsupported Ruby version
https://github.com/rubygems/rubygems/commit/9d41c4088a deivid (David Rodríguez)
12:06 PM Revision 54b60258 (git): [rubygems/rubygems] Regeneration previous git application caches that didn't include bare repos
https://github.com/rubygems/rubygems/commit/417319ecb1 deivid (David Rodríguez)
11:43 AM Revision 7845ab1b (git): [Bug #20687] Exclude just built ruby as baseruby
On Windows, an executable file in the current directory has the
priority to the PATH environment variable always.
nobu (Nobuyoshi Nakada)
07:56 AM Revision 6ab591f8 (git): [Bug #20687] Check if base ruby provides necessary libraries
nobu (Nobuyoshi Nakada)
07:48 AM Revision 71c14c88 (git): Don't show script name when bundle exec and call ruby script directly.
hsbt (Hiroshi SHIBATA)
07:48 AM Revision c97dc773 (git): Skip to show script name with using ruby -r option
hsbt (Hiroshi SHIBATA)
07:48 AM Revision 5fedf1c3 (git): Show correct script name with sub-feature case
hsbt (Hiroshi SHIBATA)
05:52 AM Revision b41d7996 (git): Reapply "[ruby/uri] Warn compatibility methods in RFC3986_PARSER"
This reverts commit 3da7e440e9fca835f5475a98f1c0afb4d2ac71db. hsbt (Hiroshi SHIBATA)
04:55 AM Revision ea828c0b (git): Skip failing tempfile library tests
soutaro (Soutaro Matsumoto)
04:30 AM Revision 592b9032 (git): Generate parsers of RDoc with Racc 1.8.1
hsbt (Hiroshi SHIBATA)
01:10 AM Revision 014708ad (git): [ruby/logger] Guarantee level_override exists
Some Ruby apps subclass Logger without running the superclass
constructor, which means that `@level_override` isn't i...
Michael Chui

08/20/2024

06:37 PM Revision 1d68a735 (git): [ruby/tempfile] Don't unlink in finalizer when already unlinked
https://github.com/ruby/tempfile/commit/f677941ea2 peterzhu2118 (Peter Zhu)
06:37 PM Revision bd7eda60 (git): [ruby/tempfile] Fix subprocess tests requires
Using `-rtempfile` requires the tempfile built into Ruby, not the
currently developed one, so the tests aren't testin...
peterzhu2118 (Peter Zhu)
06:29 PM Revision 2f67610f (git): Remove dependency on Tempfile::Remover in leakchecker.rb
peterzhu2118 (Peter Zhu)
06:07 PM Revision a68331e7 (git): [ruby/tempfile] Add FinalizerManager to manage finalizers
As @jeremyevans pointed out for commit eb2d8b1:
> Each Tempfile instance has a separate File instance and file descr...
peterzhu2118 (Peter Zhu)
01:28 PM Revision 41b427a2 (git): [ruby/tempfile] Ensure finalizer order in Tempfile
The Closer and Remover finalizers are defined on different objects in
Tempfile. The Closer is defined on the Tempfile...
peterzhu2118 (Peter Zhu)
11:16 AM Revision d6f18b22 (git): Remove extraneous lock files
See https://github.com/rubygems/rubygems/pull/7939 nobu (Nobuyoshi Nakada)
11:03 AM Revision 72d016e9 (git): [ruby/reline] typofix
https://github.com/ruby/reline/commit/d44fbf9f7b hsbt (Hiroshi SHIBATA)
09:36 AM Revision 927a44b4 (git): Rewrite #test_redefinition_mismatch to use a dedicated test class
This test is checking what happens if you try and define a class in a C
extension where that constant is already not ...
KJ Tsanaktsidis
09:00 AM Revision 5e3dd6d3 (git): Decrease the timeout in assert_darwin_vm_dump_works (#11412)
ono-max (Naoto Ono)
06:17 AM Misc #20683 (Closed): Propose @ono-max as a committer
I've finished account setup for ono-san. hsbt (Hiroshi SHIBATA)
04:29 AM Misc #20683: Propose @ono-max as a committer
@hsbt
Yes. I sent the email to the address.
ono-max (Naoto Ono)
03:23 AM Misc #20683: Propose @ono-max as a committer
@ono-max Can you give Required and Optional information of https://github.com/ruby/ruby/wiki/Committer-How-To#how-to-... hsbt (Hiroshi SHIBATA)
03:26 AM Revision f73d4352 (git): Check compile_branch_condition results
nobu (Nobuyoshi Nakada)
03:26 AM Revision 995b4c32 (git): Make same structures same
nobu (Nobuyoshi Nakada)
02:48 AM Revision edd3fc62 (git): Bump github/codeql-action from 3.26.2 to 3.26.3
Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.26.2 to 3.26.3.
- [Release notes](https:...
dependabot[bot]
02:00 AM Bug #20679 (Closed): Rails CI errors since abc04e898b627ab37fa9dd5e330f239768778d8b
Applied in changeset commit:git|ea7ceff82cec98d0c419e9807dcb33dcc08b56fa.
----------
Avoid hash allocation for certa...
jeremyevans (Jeremy Evans)
02:00 AM Revision ea7ceff8 (git): Avoid hash allocation for certain proc calls
Previously, proc calls such as:
```ruby
proc{|| }.(**empty_hash)
proc{|b: 1| }.(**r2k_array_with_empty_hash)
```
bo...
jeremyevans (Jeremy Evans)
01:27 AM Revision 6dccb013 (git): Sort links [ci skip]
znz (Kazuhiro NISHIYAMA)
 

Also available in: Atom