From a51e3c0c1ec58871994ae8a8cdfa4804fc320aa3 Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Thu, 12 Feb 2026 08:59:00 +0000 Subject: [PATCH] Block updates to dalli 5.x as it needs ruby 3.3 --- .github/dependabot.yml | 3 +++ Gemfile | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 7fb0fe7e1..d5fe2684a 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -7,6 +7,9 @@ updates: - dependency-name: connection_pool update-types: - version-update:semver-major + - dependency-name: dalli + update-types: + - version-update:semver-major - dependency-name: rails update-types: - version-update:semver-major diff --git a/Gemfile b/Gemfile index 5934ced5a..2e59c6a4c 100644 --- a/Gemfile +++ b/Gemfile @@ -115,7 +115,7 @@ gem "rotp" # Load memcache client in case we are using it gem "connection_pool", "< 3.0.0" -gem "dalli" +gem "dalli", "< 5.0.0" # Load canonical-rails to generate canonical URLs gem "canonical-rails", :github => "commonlit/canonical-rails", :ref => "bump-rails-8-1" -- 2.39.5