From ac1fc34e1d5b9cf5b9f9d76de5211f8c4b282150 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafael=20Mendon=C3=A7a=20Fran=C3=A7a?= Date: Wed, 24 May 2023 18:23:14 +0000 Subject: [PATCH] Sync CHANGELOG --- actioncable/CHANGELOG.md | 5 +++ actionpack/CHANGELOG.md | 20 +++++++++++ actiontext/CHANGELOG.md | 5 +++ actionview/CHANGELOG.md | 8 +++++ activejob/CHANGELOG.md | 4 +++ activerecord/CHANGELOG.md | 68 ++++++++++++++++++++++++++++++++++++++ activesupport/CHANGELOG.md | 5 +++ railties/CHANGELOG.md | 4 +++ 8 files changed, 119 insertions(+) diff --git a/actioncable/CHANGELOG.md b/actioncable/CHANGELOG.md index c5d3a48449100..78ac57d817b36 100644 --- a/actioncable/CHANGELOG.md +++ b/actioncable/CHANGELOG.md @@ -1,3 +1,8 @@ +* Restore Action Cable Redis pub/sub listener on connection failure. + + *Vladimir Dementyev* + + ## Rails 7.0.4.3 (March 13, 2023) ## * No changes. diff --git a/actionpack/CHANGELOG.md b/actionpack/CHANGELOG.md index e524d48fe4c2c..34fe792d9f2b1 100644 --- a/actionpack/CHANGELOG.md +++ b/actionpack/CHANGELOG.md @@ -1,3 +1,23 @@ +* Do not return CSP headers for 304 Not Modified responses. + + *Tobias Kraze* + +* Fix `EtagWithFlash` when there is no `Flash` middleware available. + + *fatkodima* + +* Fix content-type header with `send_stream`. + + *Elliot Crosby-McCullough* + +* Address Selenium `:capabilities` deprecation warning. + + *Ron Shinall* + +* Fix cookie domain for domain: all on two letter single level TLD. + + *John Hawthorn* + * Don't double log the `controller`, `action`, or `namespaced_controller` when using `ActiveRecord::QueryLog` Previously if you set `config.active_record.query_log_tags` to an array that included diff --git a/actiontext/CHANGELOG.md b/actiontext/CHANGELOG.md index bf3e114aa3cb9..391010828c9ef 100644 --- a/actiontext/CHANGELOG.md +++ b/actiontext/CHANGELOG.md @@ -1,3 +1,8 @@ +* Fix `ActionText::Attachable#as_json`. + + *Alexandre Ruban* + + ## Rails 7.0.4.3 (March 13, 2023) ## * No changes. diff --git a/actionview/CHANGELOG.md b/actionview/CHANGELOG.md index bdb14e13a18ad..5502a65382595 100644 --- a/actionview/CHANGELOG.md +++ b/actionview/CHANGELOG.md @@ -1,3 +1,11 @@ +* `FormBuilder#id` finds id set by `form_for` and `form_with`. + + *Matt Polito* + +* Allow all available locales for template lookups. + + *Ben Dilley* + * Choices of `select` can optionally contain html attributes as the last element of the child arrays when using grouped/nested collections diff --git a/activejob/CHANGELOG.md b/activejob/CHANGELOG.md index 72119147ac91d..c6e92a8ec7d96 100644 --- a/activejob/CHANGELOG.md +++ b/activejob/CHANGELOG.md @@ -1,3 +1,7 @@ +* Make delayed job `display_name` failsafe. + + *codez* + * Don't double log the `job` when using `ActiveRecord::QueryLog` Previously if you set `config.active_record.query_log_tags` to an array that included diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md index 7b805100171be..4b53725380559 100644 --- a/activerecord/CHANGELOG.md +++ b/activerecord/CHANGELOG.md @@ -1,3 +1,71 @@ +* Type cast `#attribute_changed?` `:from` and `:to` options. + + *Andrew Novoselac* + +* Fix `index_exists?` when column is an array. + + *Eileen M. Uchitelle* + +* Handle `Date` objects for PostgreSQL `timestamptz` columns. + + *Alex Ghiculescu* + +* Fix collation for changing column to non-string. + + *Hartley McGuire* + +* Map through subtype in `PostgreSQL::OID::Array`. + + *Jonathan Hefner* + +* Store correct environment in `internal_metadata` when run rails `db:prepare`. + + *fatkodima* + +* Make sure `ActiveRecord::Relation#sum` works with objects that implement `#coerce` without deprecation. + + *Alex Ghiculescu* + +* Fix retrieving foreign keys referencing tables named like keywords in PostgreSQL and MySQL. + + *fatkodima* + +* Support UUIDs in Disable Joins. + + *Samuel Cochran* + +* Fix Active Record's explain for queries starting with comments. + + *fatkodima* + +* Fix incorrectly preloading through association records when middle association has been loaded. + + *Joshua Young* + +* Fix where.missing and where.associated for parent/child associations. + + *fatkodima* + +* Fix Enumerable#in_order_of to preserve duplicates. + + *fatkodima* + +* Fix autoincrement on primary key for mysql. + + *Eileen M. Uchitelle* + +* Restore ability to redefine column in `create_table` for Rails 5.2 migrations. + + *fatkodima* + +* Fix schema cache dumping of virtual columns. + + *fatkodima* + +* Fix Active Record grouped calculations on joined tables on column present in both tables. + + *fatkodima* + * Fix mutation detection for serialized attributes backed by binary columns. *Jean Boussier* diff --git a/activesupport/CHANGELOG.md b/activesupport/CHANGELOG.md index 6b6d73dfe145d..c7bd0efc15c7c 100644 --- a/activesupport/CHANGELOG.md +++ b/activesupport/CHANGELOG.md @@ -1,3 +1,8 @@ +* Fixes TimeWithZone ArgumentError. + + *Niklas Häusele* + + ## Rails 7.0.4.3 (March 13, 2023) ## * Implement SafeBuffer#bytesplice diff --git a/railties/CHANGELOG.md b/railties/CHANGELOG.md index 2a87141e16ce9..a69dc32f25601 100644 --- a/railties/CHANGELOG.md +++ b/railties/CHANGELOG.md @@ -1,3 +1,7 @@ +* Add puma app server to Gemfile in order to start test/dummy. + + *Donapieppo* + * Rails console now disables `IRB`'s autocompletion feature in production by default. Setting `IRB_USE_AUTOCOMPLETE=true` can override this default.