Activity
From 07/04/2024 to 07/10/2024
07/10/2024
-
11:38 PM Revision bfba96a1 (git): Avoid a hash allocation when keyword splatting empty hash when calling ruby2_keywords method
- Treat this similar to keyword splatting nil, using goto ignore.
However, keep previous behavior if the method accepts... - 11:06 PM Revision 8c69caa4 (git): * append newline at EOF. [ci skip]
-
11:06 PM Revision 840f7ebf (git): [ruby/net-http] Commented out unfinished chunked test
- https://github.com/ruby/net-http/commit/6376592cb4
-
11:06 PM Revision 492b505d (git): [ruby/net-http] Removed needless warning
- https://github.com/ruby/net-http/commit/d867edc0fe
-
11:06 PM Revision b11aba50 (git): [ruby/net-http] Split POST test because new dummy server can't handle continuouse POST request
- https://github.com/ruby/net-http/commit/54a99b9f0c
-
11:06 PM Revision e77bc17e (git): [ruby/net-http] Write log after server start, not handling request
- https://github.com/ruby/net-http/commit/205bac757a
-
11:06 PM Revision 64285361 (git): [ruby/net-http] Split test class because TCPServer couldn't accept localhost and 127.0.0.1 both
- https://github.com/ruby/net-http/commit/749a1b3197
-
11:06 PM Revision 4e6463ad (git): [ruby/net-http] Support chunked data and fixed test failure with multipart/form-data
- https://github.com/ruby/net-http/commit/b38c2795a9
-
11:06 PM Revision 87a45af1 (git): [ruby/net-http] Removed server-side log test
- https://github.com/ruby/net-http/commit/9c16c383ce
-
11:06 PM Revision 5e6f04ab (git): [ruby/net-http] Fix wrong hostname with test_max_version test
- https://github.com/ruby/net-http/commit/f00d198433
-
11:06 PM Revision c7eb9ac6 (git): [ruby/net-http] Rewrite WEBrick server with TCPServer and OpenSSL::SSL::SSLServer
- https://github.com/ruby/net-http/commit/b01bcf6d7f
-
09:45 PM Revision 0ee39606 (git): Eliminate array allocations for single splat followed by mutable keywords
- For calls such as:
m(*ary, a: 2, **h)
m(*ary, **h, **h, **h)
Where m does not take a positional argument splat,... -
07:45 PM Revision 48e7112b (git): YJIT: increase context cache size to 1024 (#10983)
- * YJIT: increase context cache size to 1024
The other day I ran into a mysterious bug while increasing the
cache siz... -
07:13 PM Bug #20618 (Closed): ruby uses 1/2 (7 out of 16) cores for 16 ractors
- I think this is an intended change from #19842. Please correct me if I'm wrong @ko1.
Emphasis mine:
> On the mu... -
06:56 PM Feature #20625 (Open): Object#chain_of
- ## Motivation
It's often common to traverse a tree/list-like structure in order to get a chain
of elements. This ... -
06:28 PM Revision 52a0dfd4 (git): Revert all changes to dln.c, dmydln.c, dln.h for the shared GC
-
06:28 PM Revision 64988e66 (git): Allow miniruby to load shared GC
- Since dln.c is replaced with dmydln.c for miniruby, we cannot load shared
GC for miniruby. This means that many tests... -
03:28 PM Feature #20624: Enhance `RubyVM::AbstractSyntaxTree::Node#locations` method and `RubyVM::AbstractSyntaxTree::Location` class
- This new API also seems hard-to-use BTW, because `RubyVM::AbstractSyntaxTree::Node#locations` returns an Array of loc...
-
03:19 PM Feature #20624: Enhance `RubyVM::AbstractSyntaxTree::Node#locations` method and `RubyVM::AbstractSyntaxTree::Location` class
- What is the motivation to improve this RubyVM API which AFAIK should not be used anymore?
`RubyVM::AbstractSyntaxT... -
03:06 PM Feature #20624 (Closed): Enhance `RubyVM::AbstractSyntaxTree::Node#locations` method and `RubyVM::AbstractSyntaxTree::Location` class
- # Background
It's revealed that single location information is not enough for some node types.
For example, `Pris... -
03:10 PM Misc #20574: DevMeeting-2024-07-11
- * [Feature #20624] Enhance `RubyVM::AbstractSyntaxTree::Node#locations` method and `RubyVM::AbstractSyntaxTree::Locat...
-
02:51 PM Bug #20623: Unexpected behavior of blocks in Enumerator::Lazy#zip
- I tested this against a few versions of Ruby. In 2.7.x the first example returns `[1,2]`. But since 3.0.x it returns ...
-
10:16 AM Bug #20623 (Closed): Unexpected behavior of blocks in Enumerator::Lazy#zip
- I've stumbled upon unexpected behaviour of lazy enumerators. My example:
```
[1].cycle.lazy.zip([2].cycle.lazy).m... -
01:21 PM Revision 623eecce (git): Use absolute path for shared_gc_dir
-
08:04 AM Revision 133fec4c (git): [rubygems/rubygems] Fix another strange error when running `bundle add` in frozen mode
- If there's a lockfile, but it's out of sync with the Gemfile because a
dependency has been deleted, and frozen mode i... -
08:04 AM Revision 7e612b74 (git): [rubygems/rubygems] Fix strange error when running `bundle add` with frozen mode set
- If Gemfile is empty and there's no lockfile (situation after `bundle init`), and
`frozen` is configured, running `bun... -
07:33 AM Bug #20608: Hash#find always allocates each iterated pair
- Amazing, thank you!
-
04:01 AM Bug #20608 (Closed): Hash#find always allocates each iterated pair
- I merged https://github.com/ruby/ruby/pull/11110.
-
04:00 AM Revision 18282268 (git): Use rb_block_call2 for some Enumerable methods
- Enumerable#all?, #any?, #one?, and #none? do not use yielded arguments
as an Array. So they can use rb_block_call2 to... -
04:00 AM Revision 114e32b3 (git): Add rb_block_call2, a flexible variant of rb_block_call
- This function accepts flags:
RB_NO_KEYWORDS, RB_PASS_KEYWORDS, RB_PASS_CALLED_KEYWORDS:
Works as the same as rb_bloc... -
03:15 AM Revision 77b12a8a (git): GC_DEBUG is always defined
- `#ifdef` is inadequate.
-
03:15 AM Revision c49eda91 (git): rb_source_location_cstr is banned in this file
- Raison d'etre du gc_impl.c is to purge any internal constructs and rely
solely on our public APIs. rb_source_location... -
03:15 AM Revision 1f15149e (git): rb_gc_obj_slot_size is banned in this file
- Raison d'etre du gc_impl.c is to purge any internal constructs and rely
solely on our public APIs. rb_gc_obj_slot_siz... - 02:57 AM Revision ef2afe82 (git): Bump ruby/setup-ruby from 1.185.0 to 1.186.0
- Bumps [ruby/setup-ruby](https://github.com/ruby/setup-ruby) from 1.185.0 to 1.186.0.
- [Release notes](https://github... -
02:12 AM Bug #20622: irb: invalid byte sequence in UTF-8
- Perhaps your `~/.inputrc` contains non UTF-8 characters.
07/09/2024
-
08:32 PM Bug #20622: irb: invalid byte sequence in UTF-8
- from /opt/homebrew/Cellar/ruby/3.3.3/lib/ruby/3.3.0/reline/config.rb:172:in `match'
from /opt/homebrew/Cellar/ruby/... -
08:28 PM Bug #20622 (Closed): irb: invalid byte sequence in UTF-8
- Ruby $ irb
/opt/homebrew/Cellar/ruby/3.3.3/lib/ruby/3.3.0/reline/config.rb:172:in `match': invalid byte sequence in ... -
07:31 PM Bug #20614: Integer#size returns incorrect values on 64-bit Windows
- Agreed with @alanwu, the docs seems clear, and one would expect this method returns how many bytes are used to repres...
-
01:29 AM Bug #20614: Integer#size returns incorrect values on 64-bit Windows
- IMO based on the current wording of the documentation it should always return `sizeof(VALUE)` for fixnums, because VA...
-
01:17 AM Bug #20614: Integer#size returns incorrect values on 64-bit Windows
- You can use RbConfig::SIZEOF to query the size of a C type.
```
% ruby -v -rrbconfig/sizeof -e 'pp RbConfig::SIZE... -
05:22 PM Revision 6f6aff56 (git): Don't shrink array in `ary_make_shared`
- This change adds back the assertions removed in #11092 and removes the
call to `ary_shrink_capa` from `ary_make_share... -
05:14 PM Revision c1ff8d51 (git): Fix grammar of ruby_shared_gc.m4
-
04:34 PM Revision 140d8318 (git): [rubygems/rubygems] Fix generic platform gems getting incorrectly removed when locked for a specific platform
- If they are already in the lockfile as the most specific variant for a
platform, we shouldn't change that unless expl... -
04:34 PM Revision e6c7a309 (git): [rubygems/rubygems] Refactor selecting specs from a SpecSet
- https://github.com/rubygems/rubygems/commit/bcbbff5149
-
04:34 PM Revision dd05191b (git): [rubygems/rubygems] Resolve all platforms directly
- Instead of having to do a complete pass after resolve.
To do this, we add to the ruby group all the platform specs w... -
04:34 PM Revision 00acc703 (git): [rubygems/rubygems] Don't memoize sorted_spec_names
- It's just for debugging and a simple method, so no need.
https://github.com/rubygems/rubygems/commit/3230425a9a -
04:34 PM Revision 086cde16 (git): [rubygems/rubygems] Instantiate `Resolver::SpecGroup` with explicit priority
- https://github.com/rubygems/rubygems/commit/e2c1bc1b6c
-
04:34 PM Revision 5fdfdc30 (git): [rubygems/rubygems] Let resolver consider unique specs from the beginning
- It results in more consistent error messages.
https://github.com/rubygems/rubygems/commit/a4b34361cc -
04:34 PM Revision a333e867 (git): [rubygems/rubygems] Fix spec to also pass outside of Linux
- https://github.com/rubygems/rubygems/commit/fc8c853345
-
03:55 PM Revision 3427a167 (git): retry on cancelling of `getaddrinfo` (#11131)
- When the registerred unblock function is called, it should retry
the cancelled blocking function if possible after ch... -
02:43 PM Revision 1d97c46b (git): [rubygems/rubygems] Minor Bundler spec improvements
- While working on something else I noticed:
* Usage of uppercased "RUBY" and "JAVA" as platforms, when those don't
... - 02:42 PM Revision ac0e0f0c (git): [rubygems/rubygems] Bump rb-sys
- Bumps [rb-sys](https://github.com/oxidize-rb/rb-sys) from 0.9.97 to 0.9.98.
- [Release notes](https://github.com/oxid... -
01:43 PM Revision 30b9912b (git): [DOC] Doc for Float#ceil (#11125)
-
01:40 PM Bug #20446: Outdated https://cache.ruby-lang.org/pub/ruby/index.txt
- I added `workflow_dispatch` to `.github/workflows/update_index.yml`.
So it can run by `gh workflow run update_index ... -
12:14 PM Bug #20446: Outdated https://cache.ruby-lang.org/pub/ruby/index.txt
- vo.x (Vit Ondruch) wrote in #note-4:
> mame (Yusuke Endoh) wrote in #note-3:
> > I recommend monitoring https://githu... -
01:21 PM Bug #20587: dir.c calls blocking filesystem APIs/system calls while holding the GVL
- jeremyevans0 (Jeremy Evans) wrote in #note-2:
> @ivoanjo Can you be specific about which places this affects? I exam... -
12:55 PM Revision ab3fa8de (git): [DOC] Use backticks instead of HTML tags
-
12:55 PM Revision 5de6d0b3 (git): [DOC] Fix granularity calculation
- The granularity is calculated as `10 ** ndigits.abs` rather than
`ndigits.abs * 10`. For example, if `ndigits` is `-2... -
12:48 PM Feature #20621 (Open): Check libruby.so hardening by annocheck
- As part of #18061, there was implemented annocheck test case. However, the test covers just `ruby` (which is just thi...
-
11:26 AM Revision ad6b2e89 (git): [rubygems/rubygems] Test using latest rubies
- https://github.com/rubygems/rubygems/commit/6d6646b8bc
-
09:09 AM Revision f9004fc8 (git): [rubygems/rubygems] Suppress SSLError warning because it's only for debugging.
- http://ci.rvm.jp/logfiles/brlog.trunk.20240709-010435#L1554
https://github.com/rubygems/rubygems/commit/a1a46f413b -
07:38 AM Misc #20574: DevMeeting-2024-07-11
- * [Feature #20443] Allow Major GC's to be disabled (eightbitraptor)
* The feature is ready and already accepted.
... -
07:37 AM Bug #20605: PRs with backported fix for https://github.com/ruby/ruby/pull/11036 to Ruby 3.3 and 3.2
- Thanks for the help! :)
-
07:27 AM Revision e09df574 (git): [ruby/open-uri] Try Windows tests again
- https://github.com/ruby/open-uri/commit/50f265ba29
-
07:21 AM Revision 5d82abdf (git): Removed duplicate server thread
-
07:21 AM Revision e62ac3aa (git): Reapply "Reverts related commits with https://github.com/ruby/open-uri/pull/37"
- This reverts commit 02c4f0c89db3689c5272f00c548ca3008120459b.
-
06:45 AM Bug #20620: singleton_method undefined for module using "extend self"
- I don't think this is a bug. It does seem inconsistent, but only because the `all` argument to `singleton_methods` ...
-
05:47 AM Bug #20620 (Closed): singleton_method undefined for module using "extend self"
- Is this a bug? I expected `ExtendSelf.singleton_method(:foo)` to work when `ExtendSelf.singleton_methods` worked and ...
-
06:12 AM Bug #20617: /\pArabic/ character property doesn't match certain Arabic characters
- `(\p{In_Arabic}` may not be enough. There are 8 blocks with a name containing 'Arabic'. For details, see e.g. https:/...
-
04:01 AM Revision 690b5644 (git): Use `File.write` instead of `Kernel#open`
-
02:16 AM Bug #20619 (Closed): Backport bd583ca645ea348a2894f4227fcb1af650ee8dec to ruby 3.3
- commit:bd583ca645ea348a2894f4227fcb1af650ee8dec (https://github.com/ruby/ruby/pull/11037) should be merged.
07/08/2024
-
11:36 PM Feature #20610: Float::INFINITY as IO.select timeout argument
- ioquatix (Samuel Williams) wrote in #note-2:
> Please note that `nil` timeout can mean use the default timeout.
>... -
10:04 AM Feature #20610: Float::INFINITY as IO.select timeout argument
- There is another issue with accepting Float::INFINITY, it means it needs to be checked explicitly in places where the...
-
09:54 AM Feature #20610: Float::INFINITY as IO.select timeout argument
- Regarding the general timeout loop, I would write it like this:
```ruby
# timeout is an optional argument. nil means ... -
01:14 AM Feature #20610: Float::INFINITY as IO.select timeout argument
- I'm okay with this proposal but I think we should clearly implement:
> If we want to change the timeout of many me... -
11:28 PM Revision be1089c8 (git): v3.3.4
-
11:09 PM Bug #20570: Nokey behavior changed since 3.3.
- ruby_3_3 commit:17e21d815583ef7d6be03f29e90a219602497626 merged revision(s) commit:fc33559c.
-
11:09 PM Bug #20570: Nokey behavior changed since 3.3.
- I _think_ I managed to fix the conflict. I'd appreciate a backport PR next time though.
-
10:46 PM Bug #20570: Nokey behavior changed since 3.3.
- The patch doesn't apply to Ruby 3.3 cleanly. Could anybody file a backport PR to `ruby_3_3` branch?
-
11:08 PM Revision 17e21d81 (git): merge revision(s) fc33559c: [Backport #20570]
- clear `kw_flag` if given hash is nil
https://bugs.ruby-lang.org/issues/20570 is caused I missed to
c... -
11:04 PM Bug #20239: Segmentation fault when using Regex on a large String
- ruby_3_3 commit:df8a08fb6a1f173a9c25db15fbe390096f39c2ff merged revision(s) commit:75aaeb35b82da26359b9418d2963384d0c...
-
11:04 PM Revision df8a08fb (git): merge revision(s) 75aaeb35b82da26359b9418d2963384d0c55839c: [Backport #20239]
- [Bug #20239] Fix overflow at down-casting
-
11:01 PM Bug #20605: PRs with backported fix for https://github.com/ruby/ruby/pull/11036 to Ruby 3.3 and 3.2
- Both PRs have been merged. Thank you!
-
10:59 PM Bug #20573: Warning.warn shouldn't be called for disabled warnings
- ruby_3_3 commit:a3eb5e5c70eaee12964cdd807b8f19950003141f.
-
10:58 PM Bug #20592: Interrupting Addrinfo causes Segmentation fault on alpine
- ruby_3_3 commit:9d583dd43a24354e8ae58c089cf091c1243e6e60 merged revision(s) commit:fba8aff7, commit:d8c6e91748871ab22...
-
10:58 PM Revision 9d583dd4 (git): merge revision(s) fba8aff7, d8c6e91748871ab2287d7703347847fe18a292d2: [Backport #20592]
- [Bug #20592] Fix segfault when sending NULL to freeaddrinfo
On alpine freeaddrinfo does not accept NULL poin... -
10:57 PM Bug #20598: Corruption of internal encoding string
- ruby_3_3 commit:291cc913503475a204c93a53a2f470c8cc6bfca2.
-
10:56 PM Bug #20595: Corruption of encoding name string
- ruby_3_3 commit:291cc913503475a204c93a53a2f470c8cc6bfca2.
-
10:55 PM Bug #20468: Segfault on safe navigation in for target
- ruby_3_3 commit:8a2e41d34b135046957e1195a5d4f4967a82a965 merged revision(s) commit:2dd46bb82ffc4dff01d7ea70922f0e407a...
-
10:55 PM Revision 8a2e41d3 (git): merge revision(s) 2dd46bb82ffc4dff01d7ea70922f0e407acafb4e: [Backport #20468]
- [Bug #20468] Fix safe navigation in `for` variable
-
10:54 PM Bug #20585: Size of memory allocated by String.new(:capacity) is different from the specified value
- ruby_3_3 commit:d1ffd5ecfa62a049b7c508f30b6912a890de1b32.
-
10:52 PM Bug #20581: Ruby 3.3.3 install has missing deps for bundled net-pop gem
- ruby_3_3 commit:01762837b7f98934e402c6888e15de32a673b0fd.
-
10:42 PM Bug #20562: Categorize `RUBY_FREE_AT_EXIT` warning
- ruby_3_3 commit:a40645e115e6cd6328bb302dfc78b16f6ad45938 merged revision(s) commit:01b13886.
-
10:42 PM Revision a40645e1 (git): merge revision(s) 01b13886: [Backport #20562]
- [Bug #20562] Categorize `RUBY_FREE_AT_EXIT` warning as experimental
-
10:40 PM Revision 9a8454ea (git): Fix malformed JSON in macOS CI
-
09:43 PM Revision e500222d (git): fix last commit
- `th` is gone.
-
08:57 PM Revision ffc69eec (git): `struct rb_thread_sched_waiting`
- Introduce `struct rb_thread_sched_waiting` and `timer_th.waiting`
can contain other than `rb_thread_t`. -
08:47 PM Revision a9f6bd02 (git): Add make target shared-gc
- Allows building shared GC using `make shared-gc SHARED_GC=gc_impl`
-
08:41 PM Bug #20618 (Closed): ruby uses 1/2 (7 out of 16) cores for 16 ractors
- According to `top`, the below code uses 7/16 cores (700%) of my AMD Ryzen 7 5800HS:
```
#!/usr/bin/env ruby
16.t... -
08:02 PM Revision 3be9ce3c (git): YJIT: `dump-disasm`: Print comments and bytes in release builds
- This change implements a fallback mode for the `--yjit-dump-disasm`
development command-line option to make it usable... -
07:22 PM Feature #20443: Allow Major GC's to be disabled
- ko1 (Koichi Sasada) wrote in #note-22:
> > Introduce GC.config, currently with a single key full_mark.
>
> I'm ok... -
06:17 PM Feature #20443: Allow Major GC's to be disabled
- > but not sure config or configure or other word? (English issue).
Given `GC.config` returns the current configur... -
05:47 PM Feature #20443: Allow Major GC's to be disabled
- > Introduce GC.config, currently with a single key full_mark.
I'm okay to introduce it but not sure `config` or `c... -
06:56 PM Bug #20587: dir.c calls blocking filesystem APIs/system calls while holding the GVL
- @ivoanjo Can you be specific about which places this affects? I examined all `opendir` calls in `dir.c`:
* Called... -
06:49 PM Bug #20602 (Closed): RangeError: integer 128496650801200 too big to convert to 'int' without YJIT since cdf33ed5f37f9649c482c3ba1d245f0d80ac01ce
-
06:43 PM Bug #20602: RangeError: integer 128496650801200 too big to convert to 'int' without YJIT since cdf33ed5f37f9649c482c3ba1d245f0d80ac01ce
- I think this is fixed since https://github.com/ruby/ruby/pull/11086 was merged. I haven't seen it on the Rails CI nig...
-
06:44 PM Bug #20616 (Feedback): <jemalloc>: Error in munmap(): Invalid argument
-
05:50 PM Bug #20616: <jemalloc>: Error in munmap(): Invalid argument
- You could try running with the jemalloc `MALLOC_CONF='abort:true'` environment variable to get a crash when the munma...
-
02:59 PM Bug #20616 (Feedback): <jemalloc>: Error in munmap(): Invalid argument
- Good day!
Description:
I am getting the following error randomly. I run the offending code every 10 minutes and... -
06:42 PM Bug #20617 (Closed): /\pArabic/ character property doesn't match certain Arabic characters
- The "Arabic" property is a "scripts" property, which doesn't include punctuations: https://www.unicode.org/standard/s...
-
05:06 PM Bug #20617 (Closed): /\pArabic/ character property doesn't match certain Arabic characters
- I am not sure this is a bug.
On some occasions I have Arabic text, but the Arabic character property rejects it as... -
06:35 PM Revision a57b4340 (git): Doc fixes
-
06:33 PM Bug #20615 (Closed): [Regexp] Incorrect match result for Regexp including unicode property
-
02:47 PM Bug #20615: [Regexp] Incorrect match result for Regexp including unicode property
- This regexp pattern is invalid.
Sorry for my mistake. -
02:34 PM Bug #20615 (Closed): [Regexp] Incorrect match result for Regexp including unicode property
- A regex pattern including an unicode property is not matched correctly.
``` ruby
/\A *\z/.match?('') # => true
/... -
05:13 PM Misc #20574: DevMeeting-2024-07-11
- * [Feature #20594] A new String method to append bytes while preserving encoding (byroot)
* When working with bina... -
04:41 PM Misc #20574: DevMeeting-2024-07-11
- - [Feature #20612] Introduce new Epsilon (no-op) GC
- Idea taken from [this Java implementation](https://openjdk.or... -
05:06 PM Revision ae6a2d06 (git): [rubygems/rubygems] Fix wrong version is comment
- This RubyGems feature is being released as 3.5.15, so we can stop
monkeypatching RubyGems once support for the previo... -
05:06 PM Revision 39826f38 (git): [rubygems/rubygems] Backport binstub race condition fix to Bundler
- https://github.com/rubygems/rubygems/commit/b07e46820d
-
04:13 PM Bug #20604: Performance regression in C++ extensions due to lack of optimization flags by default since Ruby 2.7
- This can be reproduced with the following benchmark script:
``` ruby
# frozen_string_literal: true
require 'bu... -
02:20 PM Bug #20611 (Closed): Ruby 3.3: Tempfile#size returns 0 when file is not empty
-
06:26 AM Bug #20611: Ruby 3.3: Tempfile#size returns 0 when file is not empty
- I just realised now that Tempfile is atually a separate gem. Looking there I can see that the size method is using it...
-
06:16 AM Bug #20611: Ruby 3.3: Tempfile#size returns 0 when file is not empty
- Sorry there is a double pipe on the tap call of the first code block - that was a mis-paste by me & I'm unable to edi...
-
06:06 AM Bug #20611 (Closed): Ruby 3.3: Tempfile#size returns 0 when file is not empty
- Hi
I searched to see if this was reported already, or if it was somehow intentional but I'm having an issue with R... -
01:08 PM Revision 0c61e212 (git): Rename rb_gc_impl_verify_internal_consistency to gc_verify_internal_consistency
- It's an internal function so we can drop the rb_gc_impl
-
01:06 PM Revision e148db70 (git): Make rb_gc_impl_verify_internal_consistency static
- The function is not used outside of this file.
-
12:11 PM Bug #20614 (Rejected): Integer#size returns incorrect values on 64-bit Windows
- According to the ruby/spec, `0.size` should return size of the machine word in bytes, but on x64-mswin64_140 (both re...
-
11:48 AM Feature #20613 (Open): Implement shadow stack (part of CET) for coroutines
- To fully enable CET, shadow stack needs to be implemented for coroutines. The initial implementation was proposed [he...
-
11:44 AM Feature #20612 (Open): Introduce new Epsilon (no-op) GC
- ## Summary
[[Github PR 11122]](https://github.com/ruby/ruby/pull/11122)
This ticket proposes the introduction o... -
11:00 AM Revision 02c4f0c8 (git): Reverts related commits with https://github.com/ruby/open-uri/pull/37
- It caused Timeout failure with RJIT and chkbuild
http://rubyci.s3.amazonaws.com/debian11/ruby-master/log/20240708T06... -
10:24 AM Feature #19236 (Closed): Allow to create hashes with a specific capacity from Ruby
- Applied in changeset commit:git|9594db0cf28d7bc10bfc46142239191a11f1dbbe.
----------
Implement Hash.new(capacity:)
... -
10:24 AM Revision 9594db0c (git): Implement Hash.new(capacity:)
- [Feature #19236]
When building a large hash, pre-allocating it with enough
capacity can save many re-hashes and sign... -
08:58 AM Revision bfb8cad7 (git): Expand RJIT timeout to 60min
-
08:05 AM Revision a5f40147 (git): Load net-http explicitly for SimpleHTTPProxyServer
-
06:18 AM Revision b903d9f0 (git): [ruby/tempfile] typofix
- https://github.com/ruby/tempfile/commit/82a74b017e
-
06:15 AM Revision 4658d652 (git): Load socket explicitly for TCPServer
-
06:15 AM Revision 95bf9049 (git): Load OpenSSL on TestOpenURIUtils for with_https
-
05:38 AM Revision e4825a51 (git): [rubygems/rubygems] Fix another race condition
- We also need to protect prior removal of the binstub, otherwise it can
happen that:
* Process A removes prior binstu... -
05:38 AM Revision d90a930e (git): [rubygems/rubygems] Properly protect writing binstubs with a file lock
- There's an issue when multiple processes try to write the same binstub.
The problem is that our file locking mechanis... -
05:38 AM Revision da12d634 (git): [rubygems/rubygems] Scope rescuing `Errno::ENOLCK` to just `File.open`
- https://github.com/rubygems/rubygems/commit/2a9d347d29
-
05:38 AM Revision 7cf7e7e2 (git): [rubygems/rubygems] Add missing blank line after method documentation
- https://github.com/rubygems/rubygems/commit/2df7560ade
-
05:38 AM Revision 6db1c53f (git): [rubygems/rubygems] Remove unnecessary FileUtils usage
- All other `chmod` usages in the file use `File.chmod`, so keep it
consistent.
https://github.com/rubygems/rubygems/c... -
04:53 AM Revision dcc8e542 (git): [ruby/open-uri] Don't use Base64 library
- https://github.com/ruby/open-uri/commit/c8c0452d53
-
04:53 AM Revision bf898057 (git): [ruby/open-uri] Test with Windows
- https://github.com/ruby/open-uri/commit/2606892a43
-
04:53 AM Revision 71490d23 (git): [ruby/open-uri] Move certificates under the TestOpenURIUtils
- https://github.com/ruby/open-uri/commit/a28c2da5d2
-
04:53 AM Revision 3d78e633 (git): [ruby/open-uri] Load stringio with the correct files
- https://github.com/ruby/open-uri/commit/cb17a907a2
-
04:53 AM Revision 09c52b91 (git): [ruby/open-uri] Removed needless class definition and variables
- https://github.com/ruby/open-uri/commit/ab0e916997
-
04:53 AM Revision 61e00856 (git): [ruby/open-uri] Don't use URI library
- https://github.com/ruby/open-uri/commit/15989970b6
-
04:53 AM Revision e6b6c2ba (git): [ruby/open-uri] support CONNECT method for SimpleHTTPProxy
- https://github.com/ruby/open-uri/commit/2e36793bd5
-
04:53 AM Revision b7829064 (git): [ruby/open-uri] Added SimpleHTTPSServer by TCPServer and OpenSSL
- https://github.com/ruby/open-uri/commit/57c80e1576
-
04:53 AM Revision debcf108 (git): [ruby/open-uri] Added SimpleHTTPProxyServer by TCPServer
- https://github.com/ruby/open-uri/commit/ad47529306
-
04:53 AM Revision a574e290 (git): [ruby/open-uri] Extract SimpleHTTPServer and with_http to TestOpenURIUtils module for other tests
- https://github.com/ruby/open-uri/commit/489a1e9006
-
04:53 AM Revision 7a74dced (git): [ruby/open-uri] Added SimpleHTTPSServer by TCPServer
- https://github.com/ruby/open-uri/commit/a2b1ebe465
-
04:53 AM Revision a105bf81 (git): [ruby/open-uri] Removed needless setup and teardown, tmpdir variables
- https://github.com/ruby/open-uri/commit/b2d7fc4ff3
-
04:53 AM Revision 846c45c2 (git): [ruby/open-uri] Extract FTP tests from test_open-uri.rb
- https://github.com/ruby/open-uri/commit/324111eb41
-
04:53 AM Revision 6fb482d4 (git): [ruby/open-uri] Extract HTTP Proxy tests from test_open-uri.rb
- https://github.com/ruby/open-uri/commit/e9e6bd2779
- 03:54 AM Revision 6d24bc49 (git): Bump actions/upload-artifact from 4.3.3 to 4.3.4
- Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4.3.3 to 4.3.4.
- [Release notes](ht... - 03:15 AM Revision 6ac03098 (git): Bump ruby/setup-ruby from 1.184.0 to 1.185.0
- Bumps [ruby/setup-ruby](https://github.com/ruby/setup-ruby) from 1.184.0 to 1.185.0.
- [Release notes](https://github... -
01:15 AM Revision 8ede84aa (git): Move the file location of launchable.rb
-
01:15 AM Revision 5b789254 (git): Integrate Launchable into make btest
07/07/2024
-
12:37 PM Bug #18061 (Closed): Execshield test: libruby.so.N.N.N: FAIL: property-note test because no .note.gnu.property section found
- Applied in changeset commit:git|3381c60836ae499899179f454c6bb1dd3b0891ba.
----------
Ensure CFLAGS are passed to pro... -
12:37 PM Bug #20601 (Closed): Configuration flags are not properly propagated to assembler
- Applied in changeset commit:git|b18701a7ae0a71c339906ef0db4910fb43645b45.
----------
Remove $(ASFLAGS) from build sy... - 12:37 PM Revision dface442 (git): Also export CC for dtrace's benefit as well
- The CFLAGS might contain flags that only work with the specified CC
-
11:28 AM Bug #20162: Memory leak when duplicating too complex object
- ruby_3_2 commit:c97a632363a170879b9755c5a123e92533908039 merged revision(s) commit:82b57d7bfeefd717c10f7a5a3484aca6b3...
-
11:26 AM Bug #20311: Struct.new("A") memory leak?
- ruby_3_2 commit:bd5df1693c89d389471d145fc19b487c708912b1 merged revision(s) commit:e626da82eae3d437b84d4f9ead0164d436...
-
10:58 AM Misc #20574: DevMeeting-2024-07-11
- * [Feature #20610] Float::INFINITY as IO.select timeout argument (akr)
* Float::INFINITY is useful for timeout com... - 10:14 AM Revision 8ec67052 (git): Do not define SHSTK feature for amd64 Context.S
- We do not implement CET shadow-stack switching in amd64 Context.S. If
you compile Ruby with `-fcf-protection=full` an... - 10:14 AM Revision 3381c608 (git): Ensure CFLAGS are passed to probes.o generation
- The dtrace python script from systemtap on Linux actually looks at the
CFLAGS environment variable when invoking gcc ... - 10:14 AM Revision b940de83 (git): Revert autoconf macros defining RUBY_AARCH64_{BTI|PAC}_ENABLED
- This partially reverts https://github.com/ruby/ruby/pull/10944; now that
we decided to pass CFLAGS to $(CC) when asse... - 10:14 AM Revision b18701a7 (git): Remove $(ASFLAGS) from build system and assemble with $(CFLAGS) instead
- We already assemble our assembly files using the $(CC) compiler driver,
rather than the actual $(AS) assembler. This ... -
07:46 AM Revision c97a6323 (git): merge revision(s) 82b57d7bfeefd717c10f7a5a3484aca6b3e708a3: [Backport #20162]
- Fix memory leak when duplicating too complex object
[Bug #20162]
Creating a ST table then calling s... -
07:44 AM Revision bd5df169 (git): merge revision(s) e626da82eae3d437b84d4f9ead0164d436b08e1a, f3af5ae7e6c1c096bbfe46d69de825a02b1696cf: [Backport #20311]
- Don't pin named structs defined in Ruby
[Bug #20311]
`rb_define_class_under` assumes it's called fr... -
07:43 AM Bug #19907: Method calls with keyword arguments in eval leaks callcache and callinfo objects
- Backporting 1c97abaabae6844c861705fd07f532292dcffa74 into ruby_3_2 branch introduces MJIT test failures (TestMJIT#tes...
-
05:51 AM Bug #20145: Memory leak when duplicating identhash
- My trial backpoting to ruby_3_2 introduce Segmentation fault. See https://github.com/nagachika/ruby/actions/runs/9824...
-
05:24 AM Bug #20228: Memory leak in Regexp timeout
- I gave up to make a clean patch for ruby_3_2 branch. Please make PR if you want to backport.
- 04:09 AM Revision 087b461c (git): [DOC] Fix typo `with` -> `wish`
-
02:01 AM Feature #20610: Float::INFINITY as IO.select timeout argument
- This is an experimental patch (IO.select only).
-
01:26 AM Feature #20610 (Closed): Float::INFINITY as IO.select timeout argument
- I propose IO.select accepts Float::INFINITY as a timeout argument.
It behaves the same as nil which means IO.select ... -
01:41 AM Feature #19236: Allow to create hashes with a specific capacity from Ruby
- I'm really looking forward to this feature being available via a Ruby interface. ❤️
07/06/2024
- 05:55 PM Revision d76332e5 (git): Update default gems list at abaa1b913d6ac15ab1cb6c639a9b8b [ci skip]
-
05:55 PM Revision abaa1b91 (git): [ruby/irb] Bump version to v1.14.0
- (https://github.com/ruby/irb/pull/980)
https://github.com/ruby/irb/commit/6a9e129714 -
05:32 PM Feature #20609: Nested module namespace misses fallback to top level
- This is expected. When you do:
```ruby
module A::B
end
```
Understand that in Ruby, this is a general form o... -
02:10 PM Feature #20609 (Open): Nested module namespace misses fallback to top level
Currently, Ruby falls back to the top-level constants if it cannot find the Module in the local scope. This can cau...-
10:07 AM Bug #20606 (Closed): Thread#thread_variable_get, Thread#thread_variable? and Thread#[] methods handle non-String/Symbol parameter values differently
- Applied in changeset commit:git|7f1fe5f091db3b05c3970e7b7a7c602922729642.
----------
Raise a TypeError for Thread#th... -
10:07 AM Revision 7f1fe5f0 (git): Raise a TypeError for Thread#thread_variable{?,_get} for non-symbol
- Previously, a TypeError was not raised if there were no thread
variables, because the conversion to symbol was done a... -
07:20 AM Revision 2a4469ea (git): [Backport #11036 to 3.2] Add explicit compiler fence when pushing frames to ensure safe profiling
- **What does this PR do?**
This PR tweaks the `vm_push_frame` function to add an explicit compiler
fence (`atomic_sig... -
07:19 AM Bug #20305: commit 1d2d25dcadda0764f303183ac091d0c87b432566 breaks grapheme_clusters
- ruby_3_2 commit:a67b43d99e24dc7c2a9e134a65f28f968fe124c1 merged revision(s) commit:3a04ea2d0379dd8c6623c2d5563e6b4e23...
-
07:19 AM Bug #20239: Segmentation fault when using Regex on a large String
- ruby_3_2 commit:2b35d80834f14011f7d313f8fac7855dc9949f70 merged revision(s) commit:75aaeb35b82da26359b9418d2963384d0c...
-
06:55 AM Revision 2b35d808 (git): merge revision(s) 75aaeb35b82da26359b9418d2963384d0c55839c: [Backport #20239]
- [Bug #20239] Fix overflow at down-casting
-
06:54 AM Revision a67b43d9 (git): merge revision(s) 3a04ea2d0379dd8c6623c2d5563e6b4e23986fae: [Backport #20305]
- [Bug #20305] Fix matching against an incomplete character
When matching against an incomplete character, som... -
06:36 AM Bug #20288: `rb_fiber_scheduler_close` exceptions are not handled in `rb_fiber_scheduler_set`.
- ruby_3_2 commit:89de66dbb0d8454c9d69faa331d6e35f8b315cce merged revision(s) commit:78d9fe69479d32214a52ad7291c3973f1b...
-
06:35 AM Bug #20393: `after_fork_ruby` clears all pending interrupts for both parent and child process.
- Thanks!
-
06:34 AM Bug #20393: `after_fork_ruby` clears all pending interrupts for both parent and child process.
- ruby_3_2 commit:5577e5d396cc8f062833b67d6280db6cc8501e7a merged revision(s) commit:a7ff264477105b5dc0ade6facad4176a1b...
-
06:35 AM Bug #20286: TracePoint does not emit `thread_end` event when thread exits with exception
- ruby_3_2 commit:89de66dbb0d8454c9d69faa331d6e35f8b315cce merged revision(s) commit:78d9fe69479d32214a52ad7291c3973f1b...
-
05:14 AM Bug #18061: Execshield test: libruby.so.N.N.N: FAIL: property-note test because no .note.gnu.property section found
- > So either the metadata should signal just IBT
in the meanwhile I've done this in https://github.com/ruby/ruby/pu... -
04:27 AM Bug #18061: Execshield test: libruby.so.N.N.N: FAIL: property-note test because no .note.gnu.property section found
- I wonder if distributors who want shadow-stack support should just compile Ruby with `--with-coroutine=ucontext` to u...
-
04:35 AM Revision 89de66db (git): merge revision(s) 78d9fe69479d32214a52ad7291c3973f1b6b7f6f, 04729fe68dceddab045be7324e26c2bb15aa62c7: [Backport #20286] [Backport #20286]
- Ensure that exiting thread invokes end-of-life behaviour. (#10039)
Fix exception handling in `rb_fiber_sched... -
04:26 AM Revision 5577e5d3 (git): merge revision(s) a7ff264477105b5dc0ade6facad4176a1b73df0b: [Backport #20393]
- Don't clear pending interrupts in the parent process. (#10365)
-
02:24 AM Bug #20413: Enumerator can block fiber scheduler.
- Sorry, I accidentally handled a different ticket (#20414).
ruby_3_2 commit:2f8f17e842666abb05ca522d6072c957fab0e12... -
02:22 AM Bug #20414: `Fiber#raise` should recurse to `resumed_fiber` rather than failing.
- Sorry, I accidentally changed a different ticket.
-
02:20 AM Bug #20414: `Fiber#raise` should recurse to `resumed_fiber` rather than failing.
- ruby_3_2 commit:2f8f17e842666abb05ca522d6072c957fab0e12e merged revision(s) commit:5d1702e01a36e11b183fe29ce10780a9b1...
-
02:13 AM Bug #20414: `Fiber#raise` should recurse to `resumed_fiber` rather than failing.
- I think this change seems somewhat like a spec change. Could this change potentially reveal latent errors in the appl...
-
02:16 AM Revision 2f8f17e8 (git): merge revision(s) 5d1702e01a36e11b183fe29ce10780a9b1a41cf0: [Backport #20414]
- Enumerator should use a non-blocking fiber, change `rb_fiber_new` to be non-blocking by default. (#10481)
-
02:01 AM Bug #20499: Ruby builds on macOS store absolute paths for AR and NM in rbconfig since Ruby 3.2.3/3.3.0
- ruby_3_2 commit:5141d72fde2528721663ddbc0554ac81ddc0656f merged revision(s) commit:1e08a9f0e9058186db18f29efc6458c00f...
-
02:01 AM Revision 5141d72f (git): merge revision(s) 1e08a9f0e9058186db18f29efc6458c00f10a856: [Backport #20499]
- [Bug #20499] Use Xcode owned tools for Xcode clang
Xcode has its own version tools that may be incompatible ...
07/05/2024
-
10:38 PM Revision e240fc9c (git): [DOC] yjit.md: Markdown fixes for RDoc
- It now renders properly on both GitHub and with RDoc's darkfish theme.
-
06:18 PM Bug #20608 (Assigned): Hash#find always allocates each iterated pair
- I have prototyped a patch that delays the array allocation of multiple arguments for `Enumerable#find`, `#any?` etc.
... -
10:32 AM Bug #20608: Hash#find always allocates each iterated pair
- > I personally don't like the idea of manually copying many Enumerable methods into Hash...
It is indeed annoying.... -
10:07 AM Bug #20608: Hash#find always allocates each iterated pair
- As you've probably noticed from reading the source, there is no `Hash#find` method. `Enumerable#find` is. It cannot k...
-
08:49 AM Bug #20608 (Closed): Hash#find always allocates each iterated pair
- Hey there!
Recently I ran into this sharp edge in `Hash#find`:
```ruby
puts RUBY_DESCRIPTION
def allocated_... -
06:05 PM Revision 3fede665 (git): Update GitHub actions for shared GC
-
06:05 PM Revision e2ceded2 (git): Change external GC to use directory at configure
- This commit changes the external GC API to use `--with-shared-gc=DIR` at
configure time with a directory of the exter... -
06:05 PM Revision 8fd2df52 (git): Revert "Load external GC using command line argument"
- This reverts commit 8ddb1110c283c5cb59b6582383f36fdbcc43ab19.
-
05:51 PM Revision 32ba86c9 (git): [ruby/irb] Return only commands when completing help command's
- argument
(https://github.com/ruby/irb/pull/973)
The command only takes command names as arguments, so we should only... -
05:17 PM Misc #20574: DevMeeting-2024-07-11
- * [Bug #20505] Reassigning the block argument in method body keeps old block when calling super with implicit argumen...
-
04:29 PM Bug #20606: Thread#thread_variable_get, Thread#thread_variable? and Thread#[] methods handle non-String/Symbol parameter values differently
- Eregon (Benoit Daloze) wrote in #note-4:
> > I'm not opposed to changing the behavior, but raising an exception when... -
03:13 PM Revision f811f79b (git): Refine macOS CI (#11107)
- Update macos runners with latest environments.
* Use macos-14 instead of macos-arm-oss
* Removed macos-11 and added ... -
01:15 PM Revision 1afcaa3e (git): Fix flaky test_stat_heap_all
- We only collect GC.stat_heap(nil, stat_heap_all)
once, outside of the loop, but assert_equal could
allocate objects w... -
12:20 PM Revision 685a4e5b (git): VM barrier needs to store GC root
- On the VM barrier waiting, it needs to store machine context
as a GC root.
Also it needs to wait for barrier synchro... -
09:37 AM Revision 2dfaa00e (git): Added macos-13 and removed macos-11
-
09:02 AM Revision 88a2a46e (git): [rubygems/rubygems] Restrict generic `arm` to only match 32-bit arm
- https://github.com/rubygems/rubygems/commit/14c4c16e96
- 03:51 AM Revision cd1ea98b (git): Bump dependabot/fetch-metadata from 2.1.0 to 2.2.0
- Bumps [dependabot/fetch-metadata](https://github.com/dependabot/fetch-metadata) from 2.1.0 to 2.2.0.
- [Release notes... -
03:10 AM Revision 3b48a5a1 (git): Use macos-14 instead of macos-arm-oss
- Unfortunately, we can't use macos-arm-oss with enterprise account
-
02:24 AM Revision bbb4da78 (git): [rubygems/rubygems] Use preferred add_dependency instead of add_runtime_dependency
- https://github.com/rubygems/rubygems/commit/9a08043858
07/04/2024
-
07:35 PM Feature #20405: Inline comments
- This could be particularly useful for projects like `rbs-inline`.
-
05:40 PM Bug #18061: Execshield test: libruby.so.N.N.N: FAIL: property-note test because no .note.gnu.property section found
- fweimer (Florian Weimer) wrote in #note-48:
> The change in https://github.com/ruby/ruby/pull/11081/files does not l... -
07:28 AM Bug #18061: Execshield test: libruby.so.N.N.N: FAIL: property-note test because no .note.gnu.property section found
- The change in https://github.com/ruby/ruby/pull/11081/files does not look correct to me because it enables shadow sta...
-
07:20 AM Bug #18061: Execshield test: libruby.so.N.N.N: FAIL: property-note test because no .note.gnu.property section found
- ioquatix (Samuel Williams) wrote in #note-46:
> BTW, IIUC, if we can use CET instead of the shadow stack, it's a far ... -
01:25 PM Revision c480dec1 (git): Fix RUBY_FREE_AT_EXIT with ASAN
- When Ruby is built with ASAN and RUBY_FREE_AT_EXIT is enabled, the
following error occurs:
READ of size 8 at 0x7... -
11:00 AM Misc #20574: DevMeeting-2024-07-11
- * [Bug #20606] `Thread#thread_variable_get` and `Thread#thread_variable?` don't raise `TypeError` exception for incor...
-
10:02 AM Bug #20606: Thread#thread_variable_get, Thread#thread_variable? and Thread#[] methods handle non-String/Symbol parameter values differently
- > I'm not opposed to changing the behavior, but raising an exception when one was not previously raised presents back...
-
09:46 AM Bug #20606: Thread#thread_variable_get, Thread#thread_variable? and Thread#[] methods handle non-String/Symbol parameter values differently
- @jeremyevans0 The specs were added in https://github.com/ruby/spec/pull/1127 (so not written by Andrii, but reviewed ...
-
03:33 AM Revision 478ada0e (git): [rubygems/rubygems] Handle OpenSSL::SSL::SSLError in local https server
- https://github.com/rubygems/rubygems/commit/ccbbe84d77
-
03:33 AM Revision ba4495d7 (git): [rubygems/rubygems] Align code styles with rubocop and others.
- https://github.com/rubygems/rubygems/commit/c31a1592ee
-
03:33 AM Revision 7e69d747 (git): [rubygems/rubygems] Correctly handling fetcher leak
- https://github.com/rubygems/rubygems/commit/c538558522
-
03:33 AM Revision 318af23b (git): [rubygems/rubygems] Removed needless variable
- https://github.com/rubygems/rubygems/commit/29f71ee6d2
-
03:33 AM Revision 2cd270ae (git): [rubygems/rubygems] YAML is always enabled
- https://github.com/rubygems/rubygems/commit/c755bcde62
-
03:33 AM Revision 16e1565d (git): [rubygems/rubygems] Removed unused gzip code
- https://github.com/rubygems/rubygems/commit/ee45ebb5c3
-
03:33 AM Revision 6a2c7997 (git): [rubygems/rubygems] Rewrite WEBrick server with TCPServer and Proxy
- https://github.com/rubygems/rubygems/commit/3ae4358024
-
03:33 AM Revision 0cb82a81 (git): [rubygems/rubygems] Rewrite WEBrick server with TCPServer and OpenSSL::SSL::SSLServer
- https://github.com/rubygems/rubygems/commit/21319eccac
-
03:33 AM Revision b3e53495 (git): [rubygems/rubygems] Cleanup needless code from HTTP/HTTPS tests
- https://github.com/rubygems/rubygems/commit/69bd962b56
-
03:33 AM Revision 7e12b5e2 (git): [rubygems/rubygems] Split HTTP tests and HTTPS tests
- https://github.com/rubygems/rubygems/commit/43f98b787b
-
03:33 AM Revision f6aa774a (git): [rubygems/rubygems] Extract tests with local HTTP/HTTPS server from TestGemRemoteFetcher
- https://github.com/rubygems/rubygems/commit/52db9fd501
-
03:33 AM Revision 127221d8 (git): [rubygems/rubygems] Extract tests with S3 resources from TestGemRemoteFetcher
- https://github.com/rubygems/rubygems/commit/d3ee8d2d3b
-
03:11 AM Revision 0fe024d0 (git): Fix the return value of `Integer#downto` called with a block
- As the document states, it should return `self`, not `nil`.
Fix up of f4b313f7338f5fbe37f73aae29f70aeb474f7f5b. - 02:55 AM Revision 70be2f47 (git): Bump ruby/setup-ruby from 1.183.0 to 1.184.0
- Bumps [ruby/setup-ruby](https://github.com/ruby/setup-ruby) from 1.183.0 to 1.184.0.
- [Release notes](https://github...
Also available in: Atom