Fix 2.4.2 upgrade notes formatting refs #19330
[arvados.git] / services / api / config / initializers / new_framework_defaults_5_2.rb
1 # Copyright (C) The Arvados Authors. All rights reserved.
2 #
3 # SPDX-License-Identifier: AGPL-3.0
4
5 # Be sure to restart your server when you modify this file.
6 #
7 # This file contains migration options to ease your Rails 5.2 upgrade.
8 #
9 # Once upgraded flip defaults one by one to migrate to the new default.
10 #
11 # Read the Guide for Upgrading Ruby on Rails for more info on each option.
12
13 # Make Active Record use stable #cache_key alongside new #cache_version method.
14 # This is needed for recyclable cache keys.
15 # Rails.application.config.active_record.cache_versioning = true
16
17 # Use AES-256-GCM authenticated encryption for encrypted cookies.
18 # Also, embed cookie expiry in signed or encrypted cookies for increased security.
19 #
20 # This option is not backwards compatible with earlier Rails versions.
21 # It's best enabled when your entire app is migrated and stable on 5.2.
22 #
23 # Existing cookies will be converted on read then written with the new scheme.
24 # Rails.application.config.action_dispatch.use_authenticated_cookie_encryption = true
25
26 # Use AES-256-GCM authenticated encryption as default cipher for encrypting messages
27 # instead of AES-256-CBC, when use_authenticated_message_encryption is set to true.
28 # Rails.application.config.active_support.use_authenticated_message_encryption = true
29
30 # Add default protection from forgery to ActionController::Base instead of in
31 # ApplicationController.
32 # Rails.application.config.action_controller.default_protect_from_forgery = true
33
34 # Store boolean values are in sqlite3 databases as 1 and 0 instead of 't' and
35 # 'f' after migrating old data.
36 # Rails.application.config.active_record.sqlite3.represent_boolean_as_integer = true
37
38 # Use SHA-1 instead of MD5 to generate non-sensitive digests, such as the ETag header.
39 # Rails.application.config.active_support.use_sha1_digests = true
40
41 # Make `form_with` generate id attributes for any generated HTML tags.
42 # Rails.application.config.action_view.form_with_generates_ids = true