Skip to content

Commit

Permalink
misc: Update cache format version (#2661)
Browse files Browse the repository at this point in the history
## 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.
  • Loading branch information
vincent-pochet authored Oct 7, 2024
1 parent c88720c commit 5aa4784
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions config/application.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 5aa4784

Please sign in to comment.