X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/7eafdca51c2354c7905a9ea918e7ba5653c46998..fbd45a2ea085cd8a7c234158ddd4910539595b7d:/config/initializers/new_framework_defaults_7_0.rb diff --git a/config/initializers/new_framework_defaults_7_0.rb b/config/initializers/new_framework_defaults_7_0.rb index a579326e2..ccf2fcd11 100644 --- a/config/initializers/new_framework_defaults_7_0.rb +++ b/config/initializers/new_framework_defaults_7_0.rb @@ -23,43 +23,43 @@ # # See upgrading guide for more information on how to build a rotator. # https://guides.rubyonrails.org/v7.0/upgrading_ruby_on_rails.html -# Rails.application.config.active_support.key_generator_hash_digest_class = OpenSSL::Digest::SHA256 +Rails.application.config.active_support.key_generator_hash_digest_class = OpenSSL::Digest::SHA256 # Change the digest class for ActiveSupport::Digest. # Changing this default means that for example Etags change and # 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 # 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 # Change the format of the cache entry. # Changing this default means that all new cache entries added to the cache # will have a different format that is not supported by Rails 6.1 applications. # Only change this value after your application is fully deployed to Rails 7.0 # and you have no plans to rollback. -# Rails.application.config.active_support.cache_format_version = 7.0 +Rails.application.config.active_support.cache_format_version = 7.0 # Calls `Rails.application.executor.wrap` around test cases. # 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 # 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. # If you use a fiber based server or job processor, you should set it to `:fiber`. # 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. -# 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 # better preview images (rather than the previous default of using the first frame # of the video). -# 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" +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" # Automatically infer `inverse_of` for associations with a scope. # Rails.application.config.active_record.automatic_scope_inversing = true @@ -97,14 +97,14 @@ # 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. # 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 # `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 # 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. # Rails.application.config.action_dispatch.default_headers = {