summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2024-12-04[ruby/did_you_mean] Removed deprecated constants for Ruby 3.4Hiroshi SHIBATA
https://github.com/ruby/did_you_mean/commit/e11bf81438
2024-12-04[Bug #20928] Fix build when `malloc_usable_size` is availableNobuyoshi Nakada
Copy from gc/default/default.c and revert the part of 51bd81651794. Notes: Merged: https://github.com/ruby/ruby/pull/12260
2024-12-04[rubygems/rubygems] Rework `Bundler.which` testssodacris
Refactor to use real test cases rather than mock. Add relative path tests wich `Dir.chdir`. https://github.com/rubygems/rubygems/commit/ed556a0a53
2024-12-04[rubygems/rubygems] allow `bat` files to be created alongside with script ↵sodacris
files on Windows https://github.com/rubygems/rubygems/commit/ed5b847f03
2024-12-04[rubygems/rubygems] add relative path support for `bundle exec`sodacris
https://github.com/rubygems/rubygems/commit/c982085f86
2024-12-04Remove meaningless NULL checksYusuke Endoh
The functions dereference `*dead_entry` without a NULL check Notes: Merged: https://github.com/ruby/ruby/pull/12258
2024-12-04[ruby/shellwords] NUL char cannot be in shell wordsNobuyoshi Nakada
https://github.com/ruby/shellwords/commit/2c7ae1b76c
2024-12-04[ruby/logger] Enable log file rotation on WindowsNobuyoshi Nakada
Since ruby 2.3, a file opened with `File::SHARE_DELETE` and `File::BINARY` can be renamed or removed. https://github.com/ruby/logger/commit/7b6146fee6
2024-12-04[ruby/logger] Extract `Logger::LogDevice#handle_write_errors`Nobuyoshi Nakada
https://github.com/ruby/logger/commit/f904ad2f7c
2024-12-04Update bundled gems list as of 2024-12-04git
2024-12-04Added Bug #19266, Bug #20795 and net-http changes about removing deprecated ↵Hiroshi SHIBATA
constants to NEWS
2024-12-04Remove meaningless comma expressionYusuke Endoh
Coverity Scan alerts `for(i, j=0;...)` as a misuse of comma expression. Notes: Merged: https://github.com/ruby/ruby/pull/12256
2024-12-04Removed needless RSpec optionHiroshi SHIBATA
Notes: Merged: https://github.com/ruby/ruby/pull/12252
2024-12-04Use same RSPECOPTS for test-bundler and test-bundler-parallelHiroshi SHIBATA
Notes: Merged: https://github.com/ruby/ruby/pull/12252
2024-12-04Simplify test-bundler-parallelNobuyoshi Nakada
Get rid of repeated exec XRUBY recursively. Notes: Merged: https://github.com/ruby/ruby/pull/12252
2024-12-04Remove meaningless NULL checksYusuke Endoh
In this context, `th` must not be NULL Notes: Merged: https://github.com/ruby/ruby/pull/12253
2024-12-04Bump github/codeql-action from 3.27.5 to 3.27.6dependabot[bot]
Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.27.5 to 3.27.6. - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/github/codeql-action/compare/f09c1c0a94de965c15400f5634aa42fac8fb8f88...aa578102511db1f4524ed59b8cc2bae4f6e88195) --- updated-dependencies: - dependency-name: github/codeql-action dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Notes: Merged: https://github.com/ruby/ruby/pull/12251
2024-12-04[ruby/psych] Do not depend on the evaluation order of C argumentsYusuke Endoh
The evaluation order of C arguments is unspecified. `RSTRING_LEN(value)` would fail if the conversion to a String by `StringValuePtr(value)` is not done yet. Coverity Scan found this issue. https://github.com/ruby/psych/commit/d1e6bf323a
2024-12-03[ruby/irb] Don't show 'Maybe IRB bug!' in show_source and ls commandtomoya ishida
(https://github.com/ruby/irb/pull/1039) https://github.com/ruby/irb/commit/9eb14a3a0b
2024-12-03Move external_gc_loaded_p to gc_functionsPeter Zhu
Notes: Merged: https://github.com/ruby/ruby/pull/12242
2024-12-04Do not depend on the evaluation order of C argumentsYusuke Endoh
The evaluation order of C arguments is unspecified. `RSTRING_LEN(str)` would fails if the conversion to a String by `StringValuePtr` is not done yet. Coverity Scan found this issue. Notes: Merged: https://github.com/ruby/ruby/pull/12209
2024-12-03[ruby/prism] Add document CallOperatorWriteNode fieldsydah
Partially fixes: https://github.com/ruby/prism/issues/2123 https://github.com/ruby/prism/commit/f1f8776973
2024-12-03[ruby/prism] Add document CallOrWriteNode fieldsydah
Partially: https://github.com/ruby/prism/issues/2123 https://github.com/ruby/prism/commit/3c01cc7c77
2024-12-03[ruby/prism] Add document CallTargetNode fieldsydah
Partially: https://github.com/ruby/prism/issues/2123 https://github.com/ruby/prism/commit/649ef29c29
2024-12-03[DOC] Rename "GC module" to "GC library" in NEWS.mdPeter Zhu
2024-12-03Fix use of getaddrinfo_shared->lockJohn Hawthorn
In some locations we were using shared->lock and in others &shared->lock, and we were leaking the allocated memory. Notes: Merged: https://github.com/ruby/ruby/pull/12239
2024-12-03Use the edge version of typeprofYusuke Endoh
It should work on Windows, hopefully Notes: Merged: https://github.com/ruby/ruby/pull/12240
2024-12-03Fixed wrong instruction with mswin buildHiroshi SHIBATA
2024-12-03[ruby/timeout] removed the non numeric checkCosmic Oppai
https://github.com/ruby/timeout/commit/7d2af46a00 Co-authored-by: Jeremy Evans <code@jeremyevans.net>
2024-12-03[ruby/timeout] updated doc stringCosmic Oppai
https://github.com/ruby/timeout/commit/4be6423de4 Co-authored-by: Jeremy Evans <code@jeremyevans.net>
2024-12-03[ruby/timeout] updated testsCosmicOppai
https://github.com/ruby/timeout/commit/c6d121aa18
2024-12-03[ruby/timeout] updated doc and kept the nil compatiabilityCosmicOppai
https://github.com/ruby/timeout/commit/f992632cf3
2024-12-03[ruby/timeout] refactor the change to raise for nil and type-errror and ↵CosmicOppai
added tests https://github.com/ruby/timeout/commit/ffc8d7c003
2024-12-03[ruby/timeout] refactor the change to keep the compatability with nil and ↵CosmicOppai
type-errror and added tests https://github.com/ruby/timeout/commit/e8a7dbdb87
2024-12-03[ruby/timeout] refactor the change to keep the compatability with nil and ↵CosmicOppai
type-errror and added tests https://github.com/ruby/timeout/commit/8342544979
2024-12-03[ruby/timeout] added the check for negative secCosmicOppai
https://github.com/ruby/timeout/commit/8e57887eee
2024-12-03Enable Launchable integration in compilers.yml (#12136)Naoto Ono
Notes: Merged-By: ono-max <onoto1998@gmail.com>
2024-12-03Update bundled_gemsSoutaro Matsumoto
Notes: Merged: https://github.com/ruby/ruby/pull/12237
2024-12-03Update default gems list at ddf0080fd3d82e84aec48894d4e27f [ci skip]git
2024-12-03[ruby/io-console] Bump up 0.8.0Hiroshi SHIBATA
https://github.com/ruby/io-console/commit/467508a0c6
2024-12-03[ruby/etc] Use same license files with ruby/rubyHiroshi SHIBATA
https://github.com/ruby/etc/commit/8d585ea0c9
2024-12-03Socket#connect may be raise ECONNREFUSEDKazuhiro NISHIYAMA
On my environment with `sudo ufw default reject outgoing`, outgoing packets are filtered without allow rules. Notes: Merged: https://github.com/ruby/ruby/pull/12238
2024-12-03Update default gems list at e34163d7fe8d416f9952d775eb743b [ci skip]git
2024-12-03[ruby/pp] Bump up 0.6.2Hiroshi SHIBATA
https://github.com/ruby/pp/commit/979f9d972d
2024-12-03Update default gems list at 9bd1e6ee04ed8f0cc88da3366534e0 [ci skip]git
2024-12-03[ruby/io-nonblock] Bump up 0.3.1Hiroshi SHIBATA
https://github.com/ruby/io-nonblock/commit/16727a8ab3
2024-12-03Update default gems list at 043f26edee38fb52fe43e208a7ad57 [ci skip]git
2024-12-03[ruby/error_highlight] Bump versionYusuke Endoh
https://github.com/ruby/error_highlight/commit/a8e9eb7f2f
2024-12-03Reapply "[ruby/rdoc] fix: C variables should never show up in Ancestors tree"Hiroshi SHIBATA
This reverts commit 0fe82ae087130d7f360cc0607be93995cedbdb16. Notes: Merged: https://github.com/ruby/ruby/pull/12233
2024-12-03Added missing header file for _finiteHiroshi SHIBATA
Notes: Merged: https://github.com/ruby/ruby/pull/12232