From 1e0821fc8cb32ad2b16f74487e830ef4f762092d Mon Sep 17 00:00:00 2001 From: Ross Kaffenberger Date: Wed, 18 Dec 2024 17:28:13 -0500 Subject: [PATCH] Adopt Rails framework defaults 8.0 --- config/application.rb | 2 +- .../new_framework_defaults_8_0.rb | 25 ------------------- 2 files changed, 1 insertion(+), 26 deletions(-) delete mode 100644 config/initializers/new_framework_defaults_8_0.rb diff --git a/config/application.rb b/config/application.rb index 56a1d7da..7794c449 100644 --- a/config/application.rb +++ b/config/application.rb @@ -26,7 +26,7 @@ module Joy class Application < Rails::Application # Initialize configuration defaults for originally generated Rails version. - config.load_defaults 7.2 + config.load_defaults 8.0 # Use custom error pages config.exceptions_app = routes diff --git a/config/initializers/new_framework_defaults_8_0.rb b/config/initializers/new_framework_defaults_8_0.rb deleted file mode 100644 index ea95cf80..00000000 --- a/config/initializers/new_framework_defaults_8_0.rb +++ /dev/null @@ -1,25 +0,0 @@ -# Be sure to restart your server when you modify this file. -# -# This file eases your Rails 8.0 framework defaults upgrade. -# -# Uncomment each configuration one by one to switch to the new default. -# Once your application is ready to run with all new defaults, you can remove -# this file and set the `config.load_defaults` to `8.0`. -# -# Read the Guide for Upgrading Ruby on Rails for more info on each option. -# https://guides.rubyonrails.org/upgrading_ruby_on_rails.html - -### -# Specifies whether `to_time` methods preserve the UTC offset of their receivers or preserves the timezone. -# If set to `:zone`, `to_time` methods will use the timezone of their receivers. -# If set to `:offset`, `to_time` methods will use the UTC offset. -# If `false`, `to_time` methods will convert to the local system UTC offset instead. -#++ -# Rails.application.config.active_support.to_time_preserves_timezone = :zone - -### -# When both `If-Modified-Since` and `If-None-Match` are provided by the client -# only consider `If-None-Match` as specified by RFC 7232 Section 6. -# If set to `false` both conditions need to be satisfied. -#++ -Rails.application.config.action_dispatch.strict_freshness = true