From eff80ad6601bdde162e990d12b839fe7c8771906 Mon Sep 17 00:00:00 2001 From: ulferts Date: Thu, 14 Nov 2024 12:50:08 +0100 Subject: [PATCH] tie down rackup until puma is bumped --- Gemfile | 4 ++++ Gemfile.lock | 1 + 2 files changed, 5 insertions(+) diff --git a/Gemfile b/Gemfile index 315ae8b92381..ae712fbf006a 100644 --- a/Gemfile +++ b/Gemfile @@ -39,6 +39,10 @@ gem "activemodel-serializers-xml", "~> 1.0.1" gem "activerecord-import", "~> 1.8.0" gem "activerecord-session_store", "~> 2.1.0" gem "ox" + +# Tying down rackup to work around https://github.com/puma/puma/pull/3532#issuecomment-2433486115 +# Remove once the referenced PR is released. +gem "rackup", "~> 1.0.0" gem "rails", "~> 7.1.3" gem "responders", "~> 3.0" diff --git a/Gemfile.lock b/Gemfile.lock index 842ae7bab76c..5eeb18905e90 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1345,6 +1345,7 @@ DEPENDENCIES rack-test (~> 2.1.0) rack-timeout (~> 0.7.0) rack_session_access + rackup (~> 1.0.0) rails (~> 7.1.3) rails-controller-testing (~> 1.0.2) rails-i18n (~> 7.0.0)