Skip to content

Commit

Permalink
Sync CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelfranca committed May 24, 2023
1 parent 46e797e commit ac1fc34
Show file tree
Hide file tree
Showing 8 changed files with 119 additions and 0 deletions.
5 changes: 5 additions & 0 deletions actioncable/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
20 changes: 20 additions & 0 deletions actionpack/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
5 changes: 5 additions & 0 deletions actiontext/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
* Fix `ActionText::Attachable#as_json`.

*Alexandre Ruban*


## Rails 7.0.4.3 (March 13, 2023) ##

* No changes.
Expand Down
8 changes: 8 additions & 0 deletions actionview/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
4 changes: 4 additions & 0 deletions activejob/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
68 changes: 68 additions & 0 deletions activerecord/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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*
Expand Down
5 changes: 5 additions & 0 deletions activesupport/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
* Fixes TimeWithZone ArgumentError.

*Niklas Häusele*


## Rails 7.0.4.3 (March 13, 2023) ##

* Implement SafeBuffer#bytesplice
Expand Down
4 changes: 4 additions & 0 deletions railties/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down

0 comments on commit ac1fc34

Please sign in to comment.