|
| 1 | +* Allow to eager load nested nil associations. |
| 2 | + |
| 3 | + *fatkodima* |
| 4 | + |
| 5 | +* Fix `create_table` with `:auto_increment` option for MySQL adapter. |
| 6 | + |
| 7 | + *fatkodima* |
| 8 | + |
| 9 | +* Don't load has_one associations during autosave. |
| 10 | + |
| 11 | + *Eugene Kenny* |
| 12 | + |
| 13 | +* Fix migration ordering for `bin/rails db:prepare` across databases. |
| 14 | + |
| 15 | + *fatkodima* |
| 16 | + |
| 17 | +* Fix `alias_attribute` to ignore methods defined in parent classes. |
| 18 | + |
| 19 | + *Jean Boussier* |
| 20 | + |
| 21 | +* Fix a performance regression in attribute methods. |
| 22 | + |
| 23 | + *Jean Boussier* |
| 24 | + |
| 25 | +* Fix Active Record configs variable shadowing. |
| 26 | + |
| 27 | + *Joel Lubrano* |
| 28 | + |
| 29 | +* Fix running migrations on other databases when `database_tasks: false` on primary. |
| 30 | + |
| 31 | + *fatkodima* |
| 32 | + |
| 33 | +* Fix non-partial inserts for models with composite identity primary keys. |
| 34 | + |
| 35 | + *fatkodima* |
| 36 | + |
| 37 | +* Fix `ActiveRecord::Relation#touch_all` with custom attribute aliased as attribute for update. |
| 38 | + |
| 39 | + *fatkodima* |
| 40 | + |
| 41 | +* Fix a crash when an Executor wrapped fork exit. |
| 42 | + |
| 43 | + *Joé Dupuis* |
| 44 | + |
| 45 | +* Fix `destroy_async` job for owners with composite primary keys. |
| 46 | + |
| 47 | + *fatkodima* |
| 48 | + |
| 49 | +* Ensure pre-7.1 migrations use legacy index names when using `rename_table`. |
| 50 | + |
| 51 | + *fatkodima* |
| 52 | + |
| 53 | +* Allow `primary_key:` association option to be composite. |
| 54 | + |
| 55 | + *Nikita Vasilevsky* |
| 56 | + |
| 57 | +* Do not try to alias on key update when raw SQL is supplied. |
| 58 | + |
| 59 | + *Gabriel Amaral* |
| 60 | + |
| 61 | +* Memoize `key_provider` from `key` or deterministic `key_provider` if any. |
| 62 | + |
| 63 | + *Rosa Gutierrez* |
| 64 | + |
| 65 | +* Fix `upsert` warning for MySQL. |
| 66 | + |
| 67 | + *fatkodima* |
| 68 | + |
| 69 | +* Fix predicate builder for polymorphic models referencing models with composite primary keys. |
| 70 | + |
| 71 | + *fatkodima* |
| 72 | + |
| 73 | +* Fix `update_all/delete_all` on CPK model relation with join subquery. |
| 74 | + |
| 75 | + *Nikita Vasilevsky* |
| 76 | + |
| 77 | +* Remove memoization to accept `key_provider` overridden by `with_encryption_context`. |
| 78 | + |
| 79 | + *John Hawthorn* |
| 80 | + |
| 81 | +* Raise error for Trilogy when prepared_statements is true. |
| 82 | + |
| 83 | + Trilogy doesn't currently support prepared statements. The error that |
| 84 | + applications would see is a `StatementInvalid` error. This doesn't quite point |
| 85 | + you to the fact this isn't supported. So raise a more appropriate error |
| 86 | + pointing to what to change. |
| 87 | + |
| 88 | + *Eileen M. Uchitelle* |
| 89 | + |
| 90 | +* Fix loading schema cache when all databases have disabled database tasks. |
| 91 | + |
| 92 | + *fatkodima* |
| 93 | + |
| 94 | +* Always request `primary_key` in `RETURNING` if no other columns requested. |
| 95 | + |
| 96 | + *Nikita Vasilevsky* |
| 97 | + |
1 | 98 | * Handle records being loaded with Marshal without triggering schema load
|
2 | 99 |
|
3 | 100 | When using the old marshalling format for Active Record and loading
|
|
100 | 197 |
|
101 | 198 | *Jean Boussier*
|
102 | 199 |
|
103 |
| -
|
104 | 200 | * Fix counter caches when the foreign key is composite.
|
105 | 201 |
|
106 | 202 | If the model holding the counter cache had a composite primary key,
|
|
0 commit comments