From 50a33a74d43a347b038e9d1bf00f4749787e741e Mon Sep 17 00:00:00 2001 From: Bruce Bolt Date: Wed, 14 Aug 2024 16:11:53 +0100 Subject: [PATCH] Update cache format version for Rails 7.1 This application has been using Rails 7.1 for many months now, so it is safe to migrate the cache format version to the default for 7.1, since we won't be rolling back to 7.0. --- config/application.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/application.rb b/config/application.rb index 76529e9a..65819389 100644 --- a/config/application.rb +++ b/config/application.rb @@ -30,7 +30,7 @@ class Application < Rails::Application # Once this application is fully deployed to Rails 7.1 and you have no plans to rollback # replace the line below with config.active_support.cache_format_version = 7.1 # This will mean that we can revert back to rails 7.0 if there is an issue - config.active_support.cache_format_version = 7.0 + config.active_support.cache_format_version = 7.1 # Please, add to the `ignore` list any other `lib` subdirectories that do # not contain `.rb` files, or that should not be reloaded or eager loaded.