chore: activate new config defaults for Rails 7 that should be compatible with current version

This commit is contained in:
Nicolas Cavigneaux 2023-03-30 14:19:53 +02:00 committed by Colin Darie
parent 1b37e95a3b
commit 9097664de5
No known key found for this signature in database
GPG key ID: 4FB865FDBCA4BCC4

View file

@ -11,10 +11,10 @@
# `button_to` view helper will render `<button>` element, regardless of whether # `button_to` view helper will render `<button>` element, regardless of whether
# or not the content is passed as the first argument or as a block. # or not the content is passed as the first argument or as a block.
# Rails.application.config.action_view.button_to_generates_button_tag = true Rails.application.config.action_view.button_to_generates_button_tag = true
# `stylesheet_link_tag` view helper will not render the media attribute by default. # `stylesheet_link_tag` view helper will not render the media attribute by default.
# Rails.application.config.action_view.apply_stylesheet_media_default = false Rails.application.config.action_view.apply_stylesheet_media_default = false
# Change the digest class for the key generators to `OpenSSL::Digest::SHA256`. # Change the digest class for the key generators to `OpenSSL::Digest::SHA256`.
# Changing this default means invalidate all encrypted messages generated by # Changing this default means invalidate all encrypted messages generated by
@ -28,74 +28,74 @@
# Change the digest class for ActiveSupport::Digest. # Change the digest class for ActiveSupport::Digest.
# Changing this default means that for example Etags change and # Changing this default means that for example Etags change and
# various cache keys leading to cache invalidation. # various cache keys leading to cache invalidation.
# Rails.application.config.active_support.hash_digest_class = OpenSSL::Digest::SHA256 Rails.application.config.active_support.hash_digest_class = OpenSSL::Digest::SHA256
# Don't override ActiveSupport::TimeWithZone.name and use the default Ruby # Don't override ActiveSupport::TimeWithZone.name and use the default Ruby
# implementation. # implementation.
# Rails.application.config.active_support.remove_deprecated_time_with_zone_name = true Rails.application.config.active_support.remove_deprecated_time_with_zone_name = true
# Calls `Rails.application.executor.wrap` around test cases. # Calls `Rails.application.executor.wrap` around test cases.
# This makes test cases behave closer to an actual request or job. # This makes test cases behave closer to an actual request or job.
# Several features that are normally disabled in test, such as Active Record query cache # Several features that are normally disabled in test, such as Active Record query cache
# and asynchronous queries will then be enabled. # and asynchronous queries will then be enabled.
# Rails.application.config.active_support.executor_around_test_case = true Rails.application.config.active_support.executor_around_test_case = true
# Define the isolation level of most of Rails internal state. # Define the isolation level of most of Rails internal state.
# If you use a fiber based server or job processor, you should set it to `:fiber`. # If you use a fiber based server or job processor, you should set it to `:fiber`.
# Otherwise the default of `:thread` if preferable. # Otherwise the default of `:thread` if preferable.
# Rails.application.config.active_support.isolation_level = :thread Rails.application.config.active_support.isolation_level = :thread
# Set both the `:open_timeout` and `:read_timeout` values for `:smtp` delivery method. # Set both the `:open_timeout` and `:read_timeout` values for `:smtp` delivery method.
# Rails.application.config.action_mailer.smtp_timeout = 5 Rails.application.config.action_mailer.smtp_timeout = 5
# The ActiveStorage video previewer will now use scene change detection to generate # The ActiveStorage video previewer will now use scene change detection to generate
# better preview images (rather than the previous default of using the first frame # better preview images (rather than the previous default of using the first frame
# of the video). # of the video).
# Rails.application.config.active_storage.video_preview_arguments = Rails.application.config.active_storage.video_preview_arguments =
# "-vf 'select=eq(n\\,0)+eq(key\\,1)+gt(scene\\,0.015),loop=loop=-1:size=2,trim=start_frame=1' -frames:v 1 -f image2" "-vf 'select=eq(n\\,0)+eq(key\\,1)+gt(scene\\,0.015),loop=loop=-1:size=2,trim=start_frame=1' -frames:v 1 -f image2"
# Automatically infer `inverse_of` for associations with a scope. # Automatically infer `inverse_of` for associations with a scope.
# Rails.application.config.active_record.automatic_scope_inversing = true Rails.application.config.active_record.automatic_scope_inversing = true
# Raise when running tests if fixtures contained foreign key violations # Raise when running tests if fixtures contained foreign key violations
# Rails.application.config.active_record.verify_foreign_keys_for_fixtures = true Rails.application.config.active_record.verify_foreign_keys_for_fixtures = true
# Disable partial inserts. # Disable partial inserts.
# This default means that all columns will be referenced in INSERT queries # This default means that all columns will be referenced in INSERT queries
# regardless of whether they have a default or not. # regardless of whether they have a default or not.
# Rails.application.config.active_record.partial_inserts = false Rails.application.config.active_record.partial_inserts = false
# Protect from open redirect attacks in `redirect_back_or_to` and `redirect_to`. # Protect from open redirect attacks in `redirect_back_or_to` and `redirect_to`.
# Rails.application.config.action_controller.raise_on_open_redirects = true Rails.application.config.action_controller.raise_on_open_redirects = true
# Change the variant processor for Active Storage. # Change the variant processor for Active Storage.
# Changing this default means updating all places in your code that # Changing this default means updating all places in your code that
# generate variants to use image processing macros and ruby-vips # generate variants to use image processing macros and ruby-vips
# operations. See the upgrading guide for detail on the changes required. # operations. See the upgrading guide for detail on the changes required.
# The `:mini_magick` option is not deprecated; it's fine to keep using it. # The `:mini_magick` option is not deprecated; it's fine to keep using it.
# Rails.application.config.active_storage.variant_processor = :vips Rails.application.config.active_storage.variant_processor = :vips
# Enable parameter wrapping for JSON. # Enable parameter wrapping for JSON.
# Previously this was set in an initializer. It's fine to keep using that initializer if you've customized it. # Previously this was set in an initializer. It's fine to keep using that initializer if you've customized it.
# To disable parameter wrapping entirely, set this config to `false`. # To disable parameter wrapping entirely, set this config to `false`.
# Rails.application.config.action_controller.wrap_parameters_by_default = true Rails.application.config.action_controller.wrap_parameters_by_default = true
# Specifies whether generated namespaced UUIDs follow the RFC 4122 standard for namespace IDs provided as a # Specifies whether generated namespaced UUIDs follow the RFC 4122 standard for namespace IDs provided as a
# `String` to `Digest::UUID.uuid_v3` or `Digest::UUID.uuid_v5` method calls. # `String` to `Digest::UUID.uuid_v3` or `Digest::UUID.uuid_v5` method calls.
# #
# See https://guides.rubyonrails.org/configuring.html#config-active-support-use-rfc4122-namespaced-uuids for # See https://guides.rubyonrails.org/configuring.html#config-active-support-use-rfc4122-namespaced-uuids for
# more information. # more information.
# Rails.application.config.active_support.use_rfc4122_namespaced_uuids = true Rails.application.config.active_support.use_rfc4122_namespaced_uuids = true
# Change the default headers to disable browsers' flawed legacy XSS protection. # Change the default headers to disable browsers' flawed legacy XSS protection.
# Rails.application.config.action_dispatch.default_headers = { Rails.application.config.action_dispatch.default_headers = {
# "X-Frame-Options" => "SAMEORIGIN", "X-Frame-Options" => "SAMEORIGIN",
# "X-XSS-Protection" => "0", "X-XSS-Protection" => "0",
# "X-Content-Type-Options" => "nosniff", "X-Content-Type-Options" => "nosniff",
# "X-Download-Options" => "noopen", "X-Download-Options" => "noopen",
# "X-Permitted-Cross-Domain-Policies" => "none", "X-Permitted-Cross-Domain-Policies" => "none",
# "Referrer-Policy" => "strict-origin-when-cross-origin" "Referrer-Policy" => "strict-origin-when-cross-origin"
# } }
# ** Please read carefully, this must be configured in config/application.rb ** # ** Please read carefully, this must be configured in config/application.rb **
# Change the format of the cache entry. # Change the format of the cache entry.
@ -123,7 +123,7 @@
# have been converted to JSON. To keep using `:hybrid` long term, move this config to its own # have been converted to JSON. To keep using `:hybrid` long term, move this config to its own
# initializer or to `config/application.rb`. # initializer or to `config/application.rb`.
# #
# Rails.application.config.action_dispatch.cookies_serializer = :hybrid Rails.application.config.action_dispatch.cookies_serializer = :hybrid
# #
# #
# If your cookies can't yet be serialized to JSON, keep using `:marshal` for backward-compatibility. # If your cookies can't yet be serialized to JSON, keep using `:marshal` for backward-compatibility.