From b9d5281e94d29c7de3cdd5fb3dc9991a5f0f600e Mon Sep 17 00:00:00 2001 From: Cas Donoghue Date: Wed, 17 Dec 2025 12:33:41 -0800 Subject: [PATCH] Keep psych minor version in line with jruby 9.4.13.0 (#18507) The latest psych 5.3 minor version has bumped snakeyaml-engine https://github.com/ruby/psych/pull/762. This is causing issues in bundler. Constrain the psych gem to the 5.2 minor version while we are still on jruby 9.4.13.0. (cherry picked from commit a089904f3b318fdd0c901b8c72180f9a43bb763e) --- Gemfile.template | 1 + 1 file changed, 1 insertion(+) diff --git a/Gemfile.template b/Gemfile.template index bcac1bc21e5..fdfba8c5e1a 100644 --- a/Gemfile.template +++ b/Gemfile.template @@ -44,3 +44,4 @@ gem "thwait" gem "bigdecimal", "~> 3.1" gem "cgi", "~> 0.3.7" # Pins until a new jruby version with updated cgi is released (https://github.com/jruby/jruby/issues/8919) gem "jar-dependencies", "= 0.5.4" # Pin to avoid conflict with default +gem 'psych', '~> 5.2.3' # Pins psych to minor version corresponding with jruby 9.4.13.0 to keep snakeyaml-engine dep in line (5.3 includes newer snakeyaml-engine dep) \ No newline at end of file