* 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>
47 lines
2.7 KiB
Ruby
47 lines
2.7 KiB
Ruby
# Be sure to restart your server when you modify this file.
|
|
#
|
|
# This file contains migration options to ease your Rails 6.0 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.
|
|
|
|
# Don't force requests from old versions of IE to be UTF-8 encoded.
|
|
# Rails.application.config.action_view.default_enforce_utf8 = false
|
|
|
|
# Embed purpose and expiry metadata inside signed and 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 6.0.
|
|
# Rails.application.config.action_dispatch.use_cookies_with_metadata = true
|
|
|
|
# NOTE: deprecated in Rails 6.1, see <https://github.com/rails/rails/commit/64efe502f3c7bbf6d17fc1470f4b15d0c9a08b02>
|
|
# Change the return value of `ActionDispatch::Response#content_type` to Content-Type header without modification.
|
|
# Rails.application.config.action_dispatch.return_only_media_type_on_content_type = false
|
|
|
|
# NOTE: deprecated in Rails 6.1, see <https://github.com/rails/rails/commit/fd24cf1c5d02425dbd12179590d9ea225e700b01>
|
|
# Return false instead of self when enqueuing is aborted from a callback.
|
|
# Rails.application.config.active_job.return_false_on_aborted_enqueue = true
|
|
|
|
# Send Active Storage analysis and purge jobs to dedicated queues.
|
|
# Rails.application.config.active_storage.queues.analysis = :active_storage_analysis
|
|
# Rails.application.config.active_storage.queues.purge = :active_storage_purge
|
|
|
|
# When assigning to a collection of attachments declared via `has_many_attached`, replace existing
|
|
# attachments instead of appending. Use #attach to add new attachments without replacing existing ones.
|
|
# Rails.application.config.active_storage.replace_on_assign_to_many = true
|
|
|
|
# Use ActionMailer::MailDeliveryJob for sending parameterized and normal mail.
|
|
#
|
|
# The default delivery jobs (ActionMailer::Parameterized::DeliveryJob, ActionMailer::DeliveryJob),
|
|
# will be removed in Rails 6.1. This setting is not backwards compatible with earlier Rails versions.
|
|
# If you send mail in the background, job workers need to have a copy of
|
|
# MailDeliveryJob to ensure all delivery jobs are processed properly.
|
|
# Make sure your entire app is migrated and stable on 6.0 before using this setting.
|
|
Rails.application.config.action_mailer.delivery_job = "ActionMailer::MailDeliveryJob"
|
|
|
|
# Enable the same cache key to be reused when the object being cached of type
|
|
# `ActiveRecord::Relation` changes by moving the volatile information (max updated at and count)
|
|
# of the relation's cache key into the cache version to support recycling cache key.
|
|
# Rails.application.config.active_record.collection_cache_versioning = true
|