From 68e7357a297c8a7c12814f9cf16c2ff8832634ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Duarte?= Date: Wed, 11 Oct 2023 14:58:42 +0100 Subject: [PATCH] pin psych 5.1.0 due to ruby/psych#655 (#15433) The new psych 5.1.1 gem seems to not work when installed in JRuby 9.4 (used in main). This change pins the version back to 5.1.0 until ruby/psych#655 is sorted. (cherry picked from commit 401d166a89799cdd24c31585c86c08e075b95bdc) --- Gemfile.template | 1 + 1 file changed, 1 insertion(+) diff --git a/Gemfile.template b/Gemfile.template index fe051f1d50f..2781a9f3a4c 100644 --- a/Gemfile.template +++ b/Gemfile.template @@ -34,3 +34,4 @@ gem "jar-dependencies", "= 0.4.1" # Gem::LoadError with jar-dependencies 0.4.2 gem "murmurhash3", "= 0.1.6" # Pins until version 0.1.7-java is released gem "thwait" gem "bigdecimal", "~> 3.1" +gem "psych", "5.1.0" # pinned due to https://github.com/ruby/psych/issues/655