Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Exception rescue paths were updated to clarify outcomes
- Error handling and resource logging were improved

### Removed

- Removed deprecated `to_time_preserves_timezone` configuration for Rails 8.1+
compatibility

### Fixed

- Missing status in metrics subscriber was handled to prevent exceptions during
Expand Down
6 changes: 0 additions & 6 deletions config/application.rb
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,6 @@ class Application < Rails::Application
# Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
# config.time_zone = 'Central Time (US & Canada)'

# !DEPRECATION WARNING: `to_time` will always preserve the full system
# ! timezone offset rather than offset of the receiver in Rails 8.1.
# * To opt in to the new behavior and maintain system timezone,
# * set the value to :zone; otherwise, set to false
config.active_support.to_time_preserves_timezone = :zone

# The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
# config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
config.i18n.available_locales = %i[en cy]
Expand Down