diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md index 8b35839a50..ce7cc5b11f 100644 --- a/activerecord/CHANGELOG.md +++ b/activerecord/CHANGELOG.md @@ -1,3 +1,11 @@ +* Fix generating the schema file when using PostgreSQL `BigInt[]` data type. + Previously the `limit: 8` was not coming through, and this caused it to + become `Int[]` data type after rebuilding from the schema. + + Fixes #19420. + + *Jake Waller* + * Reuse the `CollectionAssociation#reader` cache when the foreign key is available prior to save. @@ -698,10 +706,4 @@ *Yves Senn* -* Fixes #19420. When generating schema.rb using Postgres BigInt[] data type - the limit: 8 was not coming through. This caused it to become Int[] data type - after doing a rebuild off of schema.rb. - - *Jake Waller* - Please check [4-2-stable](https://github.com/rails/rails/blob/4-2-stable/activerecord/CHANGELOG.md) for previous changes.