From 3ca7064e4dbda9cc33e93fe648e594a83f7dbd0e Mon Sep 17 00:00:00 2001 From: Emily Stolfo Date: Thu, 18 Jun 2026 15:26:00 +0200 Subject: [PATCH 1/3] Use minitest >= 5.16 --- Gemfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Gemfile b/Gemfile index 98ebf200c..db3acb498 100644 --- a/Gemfile +++ b/Gemfile @@ -141,6 +141,7 @@ else end if RUBY_PLATFORM == 'java' + gem 'minitest', '>= 5.16' # See issue #6547 in the JRuby repo. It is fixed in JRuby 9.3 gem 'i18n', '< 1.8.8' if JRUBY_VERSION < '9.3' From 9da2aaa0db41efab2bcd95be0cc5939934c8e0d0 Mon Sep 17 00:00:00 2001 From: Emily Stolfo Date: Thu, 18 Jun 2026 16:16:06 +0200 Subject: [PATCH 2/3] Revert "Use minitest >= 5.16" This reverts commit 3ca7064e4dbda9cc33e93fe648e594a83f7dbd0e. --- Gemfile | 1 - 1 file changed, 1 deletion(-) diff --git a/Gemfile b/Gemfile index db3acb498..98ebf200c 100644 --- a/Gemfile +++ b/Gemfile @@ -141,7 +141,6 @@ else end if RUBY_PLATFORM == 'java' - gem 'minitest', '>= 5.16' # See issue #6547 in the JRuby repo. It is fixed in JRuby 9.3 gem 'i18n', '< 1.8.8' if JRUBY_VERSION < '9.3' From 39242f68648ab016fccecb55759542a6dc82884d Mon Sep 17 00:00:00 2001 From: Emily Stolfo Date: Thu, 18 Jun 2026 16:17:01 +0200 Subject: [PATCH 3/3] Use minitest < 5.11 --- Gemfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Gemfile b/Gemfile index 98ebf200c..d0b2943d3 100644 --- a/Gemfile +++ b/Gemfile @@ -141,6 +141,7 @@ else end if RUBY_PLATFORM == 'java' + gem 'minitest', '< 5.11' # See issue #6547 in the JRuby repo. It is fixed in JRuby 9.3 gem 'i18n', '< 1.8.8' if JRUBY_VERSION < '9.3'