* Upgrade Rails to 6.1 * Switch to unreleased bullet * Run rails app:update * Add deprecation notices after reading changelogs * Fix app:update error * Move middleware in the correct place * Temporarily disable ransack which does not support Rails 6.1 * Remove wrongly merged file * Re-run spring binstub * Fix double quotes * Track ransack branch with Rails 6.1 support * Fix deprecation * Switch to Ransack 2.4 which supports Rails 6.1 rc1 * Fix missing default params for the duration substitution * Fix new behavior of relation.pluck with contradictory queries * Fix uploaders specs by tracking rspec-rails main repo * Disable bullet temporarily * Fix remaining fixture_file_upload usages * Add default seconds for video article duration * Trigger Travis CI * Upgrade Rails to 6.1.0.rc2 * Remove file deleted on master * Add Rails 6.1 gem to Gemfile * Trigger Travis CI * Revert "Disable bullet temporarily" This reverts commit cee0c2ce61fb72cbc16d52c94b12ee681e873031. * Fix bullet version * Upgrade to acts-as-taggable 7 and fix conflict * Update Gemfile and rspec-* gems * Fix nokogiri in Gemfile.lock * Switch to rspec-rails main branch * Remove leftover vendored cached items * Fix path for Rails 6.1 * Use latest release of erb_lint * Re-run rails app:update to incorporate new changes * Disable erb_lint's ErbSafety checks * Fix Gemfile.lock and re-add platform specific gems of Nokogiri * Add mini_portile2 as well * Fix latest merge conflict by removing now unused faraday_middleware * Upgrade to Rails 6.1.3.1 * Regenerate Gemfile.lock and vendor/cache * Add x86_64 linux gem * Mark spec as flaky * Revert "Mark spec as flaky" This reverts commit 3caba94b33645f9b59c84ba78ee8df042fc7aee0. Co-authored-by: Mac Siri <krairit.siri@gmail.com>
43 lines
2.3 KiB
Ruby
43 lines
2.3 KiB
Ruby
# 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
|
|
|
|
# NOTE: we can't enable this just yet, because it changes how "ActiveSupport::Digest.hexdigest"
|
|
# generates digests, which in turn is used by "ActionView::Digestor", which in turn is used by the
|
|
# see <https://github.com/rails/rails/blob/5-2-stable/actionview/lib/action_view/digestor.rb> and
|
|
# <https://github.com/rails/rails/blob/5-2-stable/actionview/lib/action_view/helpers/cache_helper.rb#L227>
|
|
# Use SHA-1 instead of MD5 to generate non-sensitive digests, such as the ETag header.
|
|
# NOTE: deprecated in Rails 6.1 in favor of config.active_support.hash_digest_class = ::Digest::SHA1
|
|
# Rails.application.config.active_support.use_sha1_digests = true
|
|
|
|
# Make `form_with` generate id attributes for any generated HTML tags.
|
|
Rails.application.config.action_view.form_with_generates_ids = true
|