-
Notifications
You must be signed in to change notification settings - Fork 64
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix Rails 7.2 Deprecation warnings #19678
Conversation
Error: A file (or its parent directories) does not have a CODEOWNERS entry. Please update the .github/CODEOWNERS file and add the entry for the Offending file: lib/config_helper.rb |
This comment was marked as spam.
This comment was marked as spam.
Error: A file (or its parent directories) does not have a CODEOWNERS entry. Please update the .github/CODEOWNERS file and add the entry for the Offending file: lib/config_helper.rb |
Error: A file (or its parent directories) was deleted but its reference still exists in CODEOWNERS. Please update the .github/CODEOWNERS file and delete the entry for the Offending file: config/secrets.yml |
Summary
Notes
DEPRECATION WARNING: config.active_support.remove_deprecated_time_with_zone_name is deprecated and will be removed in Rails 7.2.
config.active_support.remove_deprecated_time_with_zone_name
. We had it set to false, suggesting we used the old standard, the more "human readable" format instead of the new standard. For exampleAmerican/New_York
vs the oldEastern Time (US & Canada)
. As this didn't break any specs, I think it's ok.DEPRECATION WARNING: Your secret_key_baseis configured inRails.application.secrets, which is deprecated in favor of Rails.application.credentials and will be removed in Rails 7.2.
secrets.yml
(or the newercredentials.yml.enc
for that matter).secrets.yml
, as there are no references toRails.application.secrets
Related issue(s)
Testing done