Rails71

Rails Store Serializes as Regular Hash

Serializing store objects with ActiveSupport::HashWithIndifferentAccess is both a wasteful and an insecure option.

Rails 7.1 datetime_field include_seconds

Rails now allows to omit seconds part in the input field by adding the include_seconds option to datetime_field

Rails Pending Migrations Show Path

Rails warns users of pending migrations now by showing the path of the migration file, instead of just the name. This is useful in multi-db applications.

Rails 7.1 Job Generator --parent

Similar to the working of the model generator, the job generator now accepts the --parent option.

Rails Adds SQLite :strict Option

SQLite can be configured to be strict to circumvent some of its quirks. Rails can now specify this in the default database.yml file.

Rails Validates Migration Options

Previously erroneous options were silently ignored in migration functions such as "create_table" or "add_column", now they raise an error.

Rails 7.1 select with Hash Values

ActiveRecord::QueryMethods#select adds support for hash values in Rails 7.1

Rails Multi-DB reading_request? Override

Rails moves reading_request? method from the DatabaseSelector to the DatabaseSelector::Resolver class so that we can override the method in custom Resolver.

Rails 7.1 Media Tags with ActiveStorage

Rails 7.1 extends audio_tag and video_tag to accept Active Storage attachments