Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
6d4681d
[ruby/prism] Fix `Source.offsets` with `freeze: true`
Earlopain Mar 26, 2026
797e0f9
ZJIT: Compute stats padding from displayed entries only (#16568)
k0kubun Mar 26, 2026
6f90ca2
Increase UDP nonblock test timeout to avoid CI flakes (#16569)
k0kubun Mar 26, 2026
174ace6
Convert K&R function definitions in configure.ac
jhawthorn Mar 26, 2026
6c1071f
[ruby/rubygems] Better algorithm for sorting gem version:
Edouard-chin Mar 24, 2026
92f1557
ZJIT: Compile setblockparam (#16517)
nozomemein Mar 27, 2026
c6fb738
[ruby/rubygems] Use `bundle config set` instead of deprecated `bundle…
hsbt Mar 26, 2026
bacf173
[ruby/rubygems] Replace `bundle "config set KEY VALUE"` subprocess wi…
hsbt Mar 26, 2026
7c658ab
[ruby/rubygems] Replace `bundle "config set --local KEY VALUE"` subpr…
hsbt Mar 26, 2026
607ad19
[ruby/rubygems] Replace `bundle "config set --global KEY VALUE"` subp…
hsbt Mar 26, 2026
356ae22
[ruby/rubygems] Replace remaining inline `bundle "config set KEY VALU…
hsbt Mar 26, 2026
7571a98
[ruby/rubygems] Replace remaining `bundle "config set"` subprocess ca…
hsbt Mar 26, 2026
e0c4e8c
[ruby/rubygems] Rename config/global_config helpers to bundle_config/…
hsbt Mar 26, 2026
2ebcc3a
[ruby/rubygems] Revert global_cache_spec to subprocess for cross-dire…
hsbt Mar 26, 2026
5ffecb8
Bump insta in /zjit in the jit group across 1 directory
dependabot[bot] Mar 27, 2026
d85c640
Fix performance of fiber pool stack tests. (#16570)
samuel-williams-shopify Mar 27, 2026
0c97596
cargo update --manifest-path zjit/Cargo.toml
k0kubun Mar 27, 2026
415cf15
Fix -Wold-style-definition warnings in cont.c
k0kubun Mar 27, 2026
54593b5
Regenerate Cargo.lock with targeted insta update
k0kubun Mar 27, 2026
3588198
Fix EACCES error during tmpdir cleanup on Windows (#16577)
k0kubun Mar 27, 2026
8b96619
[ruby/json] Fix json generation for symbols on TruffleRuby
rwstauner Mar 26, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
217 changes: 196 additions & 21 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 2 additions & 5 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2501,9 +2501,7 @@ AC_CACHE_CHECK(for negative time_t for gmtime(3), rb_cv_negative_time_t,
#include <time.h>

void
check(tm, y, m, d, h, s)
struct tm *tm;
int y, m, d, h, s;
check(struct tm *tm, int y, int m, int d, int h, int s)
{
if (!tm ||
tm->tm_year != y ||
Expand Down Expand Up @@ -2587,8 +2585,7 @@ AS_IF([test "$ac_cv_func_sigprocmask" = yes && test "$ac_cv_func_sigaction" = ye
#include <signal.h>

void
sig_handler(dummy)
int dummy;
sig_handler(int dummy)
{
}

Expand Down
Loading