From 2e407fa47680eb05b91d20440d498b6a204bf307 Mon Sep 17 00:00:00 2001 From: evazion Date: Thu, 22 Aug 2019 22:09:05 -0500 Subject: [PATCH] rails: update defaults from 5.1 to 5.2. protect_from_forgery removed from because it's now on by default. ref: https://edgeguides.rubyonrails.org/configuring.html --- app/controllers/application_controller.rb | 1 - config/application.rb | 2 +- .../new_framework_defaults_5_1.rb | 14 -------- .../new_framework_defaults_5_2.rb | 35 ------------------- 4 files changed, 1 insertion(+), 51 deletions(-) delete mode 100644 config/initializers/new_framework_defaults_5_1.rb delete mode 100644 config/initializers/new_framework_defaults_5_2.rb diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb index 1740795d6..49eb83581 100644 --- a/app/controllers/application_controller.rb +++ b/app/controllers/application_controller.rb @@ -1,5 +1,4 @@ class ApplicationController < ActionController::Base - protect_from_forgery helper :pagination before_action :reset_current_user before_action :set_current_user diff --git a/config/application.rb b/config/application.rb index 408263aab..857e5bc06 100644 --- a/config/application.rb +++ b/config/application.rb @@ -9,7 +9,7 @@ require_relative "danbooru_local_config" module Danbooru class Application < Rails::Application # Initialize configuration defaults for originally generated Rails version. - config.load_defaults 5.1 + config.load_defaults 5.2 config.active_record.schema_format = :sql config.encoding = "utf-8" config.filter_parameters += [:password] diff --git a/config/initializers/new_framework_defaults_5_1.rb b/config/initializers/new_framework_defaults_5_1.rb deleted file mode 100644 index 9010abd5c..000000000 --- a/config/initializers/new_framework_defaults_5_1.rb +++ /dev/null @@ -1,14 +0,0 @@ -# Be sure to restart your server when you modify this file. -# -# This file contains migration options to ease your Rails 5.1 upgrade. -# -# Once upgraded flip defaults one by one to migrate to the new default. -# -# Read the Guide for Upgrading Ruby on Rails for more info on each option. - -# Make `form_with` generate non-remote forms. -Rails.application.config.action_view.form_with_generates_remote_forms = false - -# Unknown asset fallback will return the path passed in when the given -# asset is not present in the asset pipeline. -# Rails.application.config.assets.unknown_asset_fallback = false diff --git a/config/initializers/new_framework_defaults_5_2.rb b/config/initializers/new_framework_defaults_5_2.rb deleted file mode 100644 index 421e5a2a3..000000000 --- a/config/initializers/new_framework_defaults_5_2.rb +++ /dev/null @@ -1,35 +0,0 @@ -# Be sure to restart your server when you modify this file. -# -# This file contains migration options to ease your Rails 5.2 upgrade. -# -# Once upgraded flip defaults one by one to migrate to the new default. -# -# Read the Guide for Upgrading Ruby on Rails for more info on each option. - -# Make Active Record use stable #cache_key alongside new #cache_version method. -# This is needed for recyclable cache keys. -# Rails.application.config.active_record.cache_versioning = true - -# Use AES-256-GCM authenticated encryption for encrypted cookies. -# Also, embed cookie expiry in signed or encrypted cookies for increased security. -# -# This option is not backwards compatible with earlier Rails versions. -# It's best enabled when your entire app is migrated and stable on 5.2. -# -# Existing cookies will be converted on read then written with the new scheme. -# Rails.application.config.action_dispatch.use_authenticated_cookie_encryption = true - -# Use AES-256-GCM authenticated encryption as default cipher for encrypting messages -# instead of AES-256-CBC, when use_authenticated_message_encryption is set to true. -# Rails.application.config.active_support.use_authenticated_message_encryption = true - -# Add default protection from forgery to ActionController::Base instead of in -# ApplicationController. -# Rails.application.config.action_controller.default_protect_from_forgery = true - -# Store boolean values are in sqlite3 databases as 1 and 0 instead of 't' and -# 'f' after migrating old data. -# Rails.application.config.active_record.sqlite3.represent_boolean_as_integer = true - -# Use SHA-1 instead of MD5 to generate non-sensitive digests, such as the ETag header. -# Rails.application.config.active_support.use_sha1_digests = true