From 5aa47849e3d35111e17079f0d956c02f81ee2d94 Mon Sep 17 00:00:00 2001 From: Vincent Pochet Date: Mon, 7 Oct 2024 17:16:06 +0200 Subject: [PATCH] misc: Update cache format version (#2661) ## Context Rails version was bumped few month ago to `7.1.X`, but to make migration possible, the cache format version was kept to `7.0`. This was a requirement of the standard rails upgrade process. It will also be required to upgrade to rails `7.2` and `7.3` ## Description Since rails 7.1 is in production for few month now it safe to change the cache version. --- config/application.rb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/config/application.rb b/config/application.rb index 85cfa375e97..351d7e87a8c 100644 --- a/config/application.rb +++ b/config/application.rb @@ -39,7 +39,6 @@ class Application < Rails::Application g.orm(:active_record, primary_key_type: :uuid) end - # TODO: turn this value to 7.1 after upgrading to Rails 7.1 - config.active_support.cache_format_version = 7.0 + config.active_support.cache_format_version = 7.1 end end