From 007120609b3e829f9dc84af5f12e847f6931fad2 Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Wed, 10 Dec 2025 13:06:31 +0000 Subject: [PATCH] Pin connection_pool to 2.x pending a new rails release https://github.com/rails/rails/pull/56294 --- .github/dependabot.yml | 3 +++ Gemfile | 2 +- Gemfile.lock | 4 ++-- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index c2423dca0..7fb0fe7e1 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,6 +4,9 @@ updates: versioning-strategy: "increase-if-necessary" directory: "/" ignore: + - dependency-name: connection_pool + update-types: + - version-update:semver-major - dependency-name: rails update-types: - version-update:semver-major diff --git a/Gemfile b/Gemfile index 03622ecaf..e5a316350 100644 --- a/Gemfile +++ b/Gemfile @@ -114,7 +114,7 @@ gem "maxminddb" gem "rotp" # Load memcache client in case we are using it -gem "connection_pool", "< 4.0.0" +gem "connection_pool", "< 3.0.0" gem "dalli" # Load canonical-rails to generate canonical URLs diff --git a/Gemfile.lock b/Gemfile.lock index 22a43b6fb..dbd5fce1c 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -182,7 +182,7 @@ GEM config (5.6.1) deep_merge (~> 1.2, >= 1.2.1) ostruct - connection_pool (3.0.2) + connection_pool (2.5.5) cork (0.3.0) colored2 (~> 3.1) crack (1.0.1) @@ -916,7 +916,7 @@ DEPENDENCIES canonical-rails! capybara (>= 2.15) config - connection_pool (< 4.0.0) + connection_pool (< 3.0.0) dalli danger danger-auto_label -- 2.39.5