activerecord 7.1.5.2 → 8.1.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +567 -2443
- data/README.rdoc +16 -16
- data/examples/performance.rb +2 -2
- data/lib/active_record/association_relation.rb +3 -2
- data/lib/active_record/associations/alias_tracker.rb +31 -23
- data/lib/active_record/associations/association.rb +43 -12
- data/lib/active_record/associations/belongs_to_association.rb +31 -8
- data/lib/active_record/associations/belongs_to_polymorphic_association.rb +3 -2
- data/lib/active_record/associations/builder/association.rb +23 -11
- data/lib/active_record/associations/builder/belongs_to.rb +18 -4
- data/lib/active_record/associations/builder/collection_association.rb +7 -3
- data/lib/active_record/associations/builder/has_and_belongs_to_many.rb +2 -2
- data/lib/active_record/associations/builder/has_many.rb +3 -4
- data/lib/active_record/associations/builder/has_one.rb +3 -4
- data/lib/active_record/associations/builder/singular_association.rb +33 -5
- data/lib/active_record/associations/collection_association.rb +17 -9
- data/lib/active_record/associations/collection_proxy.rb +36 -5
- data/lib/active_record/associations/deprecation.rb +88 -0
- data/lib/active_record/associations/disable_joins_association_scope.rb +1 -1
- data/lib/active_record/associations/errors.rb +268 -0
- data/lib/active_record/associations/has_many_association.rb +1 -1
- data/lib/active_record/associations/has_many_through_association.rb +10 -3
- data/lib/active_record/associations/join_dependency/join_association.rb +1 -1
- data/lib/active_record/associations/join_dependency.rb +4 -2
- data/lib/active_record/associations/nested_error.rb +47 -0
- data/lib/active_record/associations/preloader/association.rb +4 -3
- data/lib/active_record/associations/preloader/batch.rb +7 -1
- data/lib/active_record/associations/preloader/branch.rb +8 -1
- data/lib/active_record/associations/preloader/through_association.rb +1 -3
- data/lib/active_record/associations/singular_association.rb +14 -3
- data/lib/active_record/associations/through_association.rb +1 -1
- data/lib/active_record/associations.rb +250 -315
- data/lib/active_record/asynchronous_queries_tracker.rb +28 -24
- data/lib/active_record/attribute_assignment.rb +0 -2
- data/lib/active_record/attribute_methods/composite_primary_key.rb +84 -0
- data/lib/active_record/attribute_methods/primary_key.rb +25 -61
- data/lib/active_record/attribute_methods/query.rb +34 -0
- data/lib/active_record/attribute_methods/read.rb +1 -13
- data/lib/active_record/attribute_methods/serialization.rb +20 -27
- data/lib/active_record/attribute_methods/time_zone_conversion.rb +19 -20
- data/lib/active_record/attribute_methods.rb +71 -75
- data/lib/active_record/attributes.rb +96 -68
- data/lib/active_record/autosave_association.rb +93 -58
- data/lib/active_record/base.rb +5 -7
- data/lib/active_record/callbacks.rb +1 -1
- data/lib/active_record/coders/json.rb +14 -5
- data/lib/active_record/connection_adapters/abstract/connection_handler.rb +50 -126
- data/lib/active_record/connection_adapters/abstract/connection_pool/queue.rb +16 -4
- data/lib/active_record/connection_adapters/abstract/connection_pool/reaper.rb +52 -13
- data/lib/active_record/connection_adapters/abstract/connection_pool.rb +681 -135
- data/lib/active_record/connection_adapters/abstract/database_statements.rb +165 -86
- data/lib/active_record/connection_adapters/abstract/query_cache.rb +226 -78
- data/lib/active_record/connection_adapters/abstract/quoting.rb +79 -114
- data/lib/active_record/connection_adapters/abstract/schema_creation.rb +11 -7
- data/lib/active_record/connection_adapters/abstract/schema_definitions.rb +37 -36
- data/lib/active_record/connection_adapters/abstract/schema_dumper.rb +2 -1
- data/lib/active_record/connection_adapters/abstract/schema_statements.rb +136 -34
- data/lib/active_record/connection_adapters/abstract/transaction.rb +163 -68
- data/lib/active_record/connection_adapters/abstract_adapter.rb +197 -129
- data/lib/active_record/connection_adapters/abstract_mysql_adapter.rb +112 -63
- data/lib/active_record/connection_adapters/column.rb +17 -4
- data/lib/active_record/connection_adapters/mysql/database_statements.rb +11 -3
- data/lib/active_record/connection_adapters/mysql/quoting.rb +50 -57
- data/lib/active_record/connection_adapters/mysql/schema_creation.rb +2 -0
- data/lib/active_record/connection_adapters/mysql/schema_definitions.rb +41 -10
- data/lib/active_record/connection_adapters/mysql/schema_statements.rb +79 -46
- data/lib/active_record/connection_adapters/mysql2/database_statements.rb +97 -101
- data/lib/active_record/connection_adapters/mysql2_adapter.rb +14 -33
- data/lib/active_record/connection_adapters/pool_config.rb +14 -13
- data/lib/active_record/connection_adapters/postgresql/column.rb +4 -0
- data/lib/active_record/connection_adapters/postgresql/database_statements.rb +98 -44
- data/lib/active_record/connection_adapters/postgresql/oid/array.rb +3 -3
- data/lib/active_record/connection_adapters/postgresql/oid/interval.rb +1 -1
- data/lib/active_record/connection_adapters/postgresql/oid/point.rb +10 -0
- data/lib/active_record/connection_adapters/postgresql/oid/type_map_initializer.rb +1 -1
- data/lib/active_record/connection_adapters/postgresql/oid/uuid.rb +14 -4
- data/lib/active_record/connection_adapters/postgresql/quoting.rb +79 -68
- data/lib/active_record/connection_adapters/postgresql/referential_integrity.rb +2 -4
- data/lib/active_record/connection_adapters/postgresql/schema_creation.rb +9 -17
- data/lib/active_record/connection_adapters/postgresql/schema_definitions.rb +44 -41
- data/lib/active_record/connection_adapters/postgresql/schema_dumper.rb +69 -32
- data/lib/active_record/connection_adapters/postgresql/schema_statements.rb +155 -75
- data/lib/active_record/connection_adapters/postgresql_adapter.rb +104 -121
- data/lib/active_record/connection_adapters/schema_cache.rb +126 -133
- data/lib/active_record/connection_adapters/sqlite3/column.rb +14 -1
- data/lib/active_record/connection_adapters/sqlite3/database_statements.rb +91 -95
- data/lib/active_record/connection_adapters/sqlite3/quoting.rb +57 -54
- data/lib/active_record/connection_adapters/sqlite3/schema_creation.rb +16 -0
- data/lib/active_record/connection_adapters/sqlite3/schema_definitions.rb +13 -0
- data/lib/active_record/connection_adapters/sqlite3/schema_dumper.rb +43 -2
- data/lib/active_record/connection_adapters/sqlite3/schema_statements.rb +38 -15
- data/lib/active_record/connection_adapters/sqlite3_adapter.rb +231 -111
- data/lib/active_record/connection_adapters/statement_pool.rb +4 -2
- data/lib/active_record/connection_adapters/trilogy/database_statements.rb +40 -69
- data/lib/active_record/connection_adapters/trilogy_adapter.rb +19 -65
- data/lib/active_record/connection_adapters.rb +66 -0
- data/lib/active_record/connection_handling.rb +88 -46
- data/lib/active_record/core.rb +142 -58
- data/lib/active_record/counter_cache.rb +52 -18
- data/lib/active_record/database_configurations/connection_url_resolver.rb +9 -2
- data/lib/active_record/database_configurations/database_config.rb +28 -5
- data/lib/active_record/database_configurations/hash_config.rb +103 -41
- data/lib/active_record/database_configurations/url_config.rb +30 -1
- data/lib/active_record/database_configurations.rb +8 -4
- data/lib/active_record/delegated_type.rb +43 -19
- data/lib/active_record/dynamic_matchers.rb +56 -71
- data/lib/active_record/encryption/config.rb +3 -1
- data/lib/active_record/encryption/encryptable_record.rb +12 -12
- data/lib/active_record/encryption/encrypted_attribute_type.rb +35 -6
- data/lib/active_record/encryption/encryptor.rb +58 -22
- data/lib/active_record/encryption/extended_deterministic_queries.rb +4 -2
- data/lib/active_record/encryption/key_provider.rb +1 -1
- data/lib/active_record/encryption/message_pack_message_serializer.rb +76 -0
- data/lib/active_record/encryption/message_serializer.rb +4 -0
- data/lib/active_record/encryption/null_encryptor.rb +4 -0
- data/lib/active_record/encryption/read_only_null_encryptor.rb +4 -0
- data/lib/active_record/encryption/scheme.rb +9 -2
- data/lib/active_record/enum.rb +57 -36
- data/lib/active_record/errors.rb +76 -26
- data/lib/active_record/explain.rb +14 -25
- data/lib/active_record/explain_registry.rb +51 -2
- data/lib/active_record/filter_attribute_handler.rb +73 -0
- data/lib/active_record/fixture_set/table_row.rb +19 -2
- data/lib/active_record/fixtures.rb +39 -35
- data/lib/active_record/future_result.rb +21 -13
- data/lib/active_record/gem_version.rb +3 -3
- data/lib/active_record/inheritance.rb +5 -3
- data/lib/active_record/insert_all.rb +28 -20
- data/lib/active_record/integration.rb +4 -1
- data/lib/active_record/internal_metadata.rb +48 -34
- data/lib/active_record/locking/optimistic.rb +15 -7
- data/lib/active_record/locking/pessimistic.rb +5 -0
- data/lib/active_record/log_subscriber.rb +3 -34
- data/lib/active_record/message_pack.rb +1 -1
- data/lib/active_record/middleware/shard_selector.rb +34 -17
- data/lib/active_record/migration/command_recorder.rb +46 -14
- data/lib/active_record/migration/compatibility.rb +40 -25
- data/lib/active_record/migration/default_schema_versions_formatter.rb +30 -0
- data/lib/active_record/migration/default_strategy.rb +4 -5
- data/lib/active_record/migration/pending_migration_connection.rb +2 -2
- data/lib/active_record/migration.rb +119 -103
- data/lib/active_record/model_schema.rb +66 -78
- data/lib/active_record/nested_attributes.rb +17 -9
- data/lib/active_record/persistence.rb +161 -454
- data/lib/active_record/query_cache.rb +33 -15
- data/lib/active_record/query_logs.rb +106 -39
- data/lib/active_record/query_logs_formatter.rb +17 -28
- data/lib/active_record/querying.rb +28 -16
- data/lib/active_record/railtie.rb +61 -74
- data/lib/active_record/railties/controller_runtime.rb +19 -5
- data/lib/active_record/railties/databases.rake +64 -78
- data/lib/active_record/railties/job_checkpoints.rb +15 -0
- data/lib/active_record/railties/job_runtime.rb +10 -11
- data/lib/active_record/reflection.rb +147 -53
- data/lib/active_record/relation/batches/batch_enumerator.rb +19 -5
- data/lib/active_record/relation/batches.rb +153 -73
- data/lib/active_record/relation/calculations.rb +146 -96
- data/lib/active_record/relation/delegation.rb +30 -23
- data/lib/active_record/relation/finder_methods.rb +64 -34
- data/lib/active_record/relation/merger.rb +12 -14
- data/lib/active_record/relation/predicate_builder/array_handler.rb +2 -2
- data/lib/active_record/relation/predicate_builder/association_query_value.rb +19 -11
- data/lib/active_record/relation/predicate_builder/polymorphic_array_value.rb +8 -8
- data/lib/active_record/relation/predicate_builder/relation_handler.rb +4 -3
- data/lib/active_record/relation/predicate_builder.rb +25 -10
- data/lib/active_record/relation/query_attribute.rb +4 -2
- data/lib/active_record/relation/query_methods.rb +351 -124
- data/lib/active_record/relation/spawn_methods.rb +9 -25
- data/lib/active_record/relation/where_clause.rb +17 -30
- data/lib/active_record/relation.rb +590 -124
- data/lib/active_record/result.rb +131 -59
- data/lib/active_record/runtime_registry.rb +44 -21
- data/lib/active_record/sanitization.rb +33 -25
- data/lib/active_record/schema.rb +8 -6
- data/lib/active_record/schema_dumper.rb +66 -31
- data/lib/active_record/schema_migration.rb +31 -14
- data/lib/active_record/scoping/named.rb +6 -2
- data/lib/active_record/scoping.rb +0 -1
- data/lib/active_record/secure_token.rb +3 -3
- data/lib/active_record/signed_id.rb +68 -20
- data/lib/active_record/statement_cache.rb +29 -25
- data/lib/active_record/store.rb +51 -22
- data/lib/active_record/structured_event_subscriber.rb +85 -0
- data/lib/active_record/table_metadata.rb +7 -33
- data/lib/active_record/tasks/abstract_tasks.rb +76 -0
- data/lib/active_record/tasks/database_tasks.rb +118 -90
- data/lib/active_record/tasks/mysql_database_tasks.rb +3 -42
- data/lib/active_record/tasks/postgresql_database_tasks.rb +14 -40
- data/lib/active_record/tasks/sqlite_database_tasks.rb +17 -28
- data/lib/active_record/test_databases.rb +14 -4
- data/lib/active_record/test_fixtures.rb +123 -89
- data/lib/active_record/testing/query_assertions.rb +127 -0
- data/lib/active_record/timestamp.rb +6 -4
- data/lib/active_record/token_for.rb +22 -12
- data/lib/active_record/touch_later.rb +1 -1
- data/lib/active_record/transaction.rb +129 -0
- data/lib/active_record/transactions.rb +97 -18
- data/lib/active_record/translation.rb +0 -2
- data/lib/active_record/type/hash_lookup_type_map.rb +2 -1
- data/lib/active_record/type/internal/timezone.rb +7 -0
- data/lib/active_record/type/json.rb +15 -2
- data/lib/active_record/type/serialized.rb +12 -7
- data/lib/active_record/type/type_map.rb +1 -1
- data/lib/active_record/type_caster/connection.rb +5 -4
- data/lib/active_record/validations/associated.rb +10 -4
- data/lib/active_record/validations/uniqueness.rb +23 -18
- data/lib/active_record/validations.rb +4 -1
- data/lib/active_record.rb +203 -59
- data/lib/arel/alias_predication.rb +3 -1
- data/lib/arel/collectors/bind.rb +4 -2
- data/lib/arel/collectors/composite.rb +7 -0
- data/lib/arel/collectors/sql_string.rb +2 -2
- data/lib/arel/collectors/substitute_binds.rb +3 -3
- data/lib/arel/crud.rb +8 -11
- data/lib/arel/delete_manager.rb +5 -0
- data/lib/arel/nodes/binary.rb +1 -7
- data/lib/arel/nodes/bound_sql_literal.rb +9 -5
- data/lib/arel/nodes/count.rb +2 -2
- data/lib/arel/nodes/delete_statement.rb +4 -2
- data/lib/arel/nodes/function.rb +4 -10
- data/lib/arel/nodes/named_function.rb +2 -2
- data/lib/arel/nodes/{and.rb → nary.rb} +5 -2
- data/lib/arel/nodes/node.rb +6 -5
- data/lib/arel/nodes/sql_literal.rb +8 -1
- data/lib/arel/nodes/update_statement.rb +4 -2
- data/lib/arel/nodes.rb +2 -4
- data/lib/arel/predications.rb +1 -1
- data/lib/arel/select_manager.rb +14 -5
- data/lib/arel/table.rb +3 -7
- data/lib/arel/tree_manager.rb +3 -2
- data/lib/arel/update_manager.rb +7 -1
- data/lib/arel/visitors/dot.rb +3 -3
- data/lib/arel/visitors/mysql.rb +9 -4
- data/lib/arel/visitors/postgresql.rb +56 -12
- data/lib/arel/visitors/sqlite.rb +80 -8
- data/lib/arel/visitors/to_sql.rb +34 -37
- data/lib/arel.rb +10 -4
- data/lib/rails/generators/active_record/application_record/USAGE +1 -1
- data/lib/rails/generators/active_record/migration/templates/create_table_migration.rb.tt +4 -1
- metadata +23 -14
- data/lib/active_record/explain_subscriber.rb +0 -34
- data/lib/active_record/normalization.rb +0 -167
- data/lib/active_record/relation/record_fetch_warning.rb +0 -49
data/CHANGELOG.md
CHANGED
|
@@ -1,2790 +1,914 @@
|
|
|
1
|
-
## Rails
|
|
1
|
+
## Rails 8.1.2.1 (March 23, 2026) ##
|
|
2
2
|
|
|
3
|
-
*
|
|
4
|
-
|
|
5
|
-
[CVE-2025-55193]
|
|
6
|
-
|
|
7
|
-
*Gannon McGibbon*, *John Hawthorn*
|
|
8
|
-
|
|
9
|
-
## Rails 7.1.5.1 (December 10, 2024) ##
|
|
10
|
-
|
|
11
|
-
* No changes.
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
## Rails 7.1.5 (October 30, 2024) ##
|
|
15
|
-
|
|
16
|
-
* Fix marshalling of unsaved associated records in 7.1 format.
|
|
17
|
-
|
|
18
|
-
The 7.1 format would only marshal associated records if the association was loaded.
|
|
19
|
-
But associations that would only contain unsaved records would be skipped.
|
|
20
|
-
|
|
21
|
-
*Jean Boussier*
|
|
22
|
-
|
|
23
|
-
* Fix an issue where `.left_outer_joins` used with multiple associations that have
|
|
24
|
-
the same child association but different parents does not join all parents.
|
|
25
|
-
|
|
26
|
-
Previously, using `.left_outer_joins` with the same child association would only join one of the parents.
|
|
27
|
-
|
|
28
|
-
Now it will correctly join both parents.
|
|
29
|
-
|
|
30
|
-
Fixes #41498.
|
|
31
|
-
|
|
32
|
-
*Garrett Blehm*
|
|
33
|
-
|
|
34
|
-
* Ensure `ActiveRecord::Encryption.config` is always ready before access.
|
|
35
|
-
|
|
36
|
-
Previously, `ActiveRecord::Encryption` configuration was deferred until `ActiveRecord::Base`
|
|
37
|
-
was loaded. Therefore, accessing `ActiveRecord::Encryption.config` properties before
|
|
38
|
-
`ActiveRecord::Base` was loaded would give incorrect results.
|
|
39
|
-
|
|
40
|
-
`ActiveRecord::Encryption` now has its own loading hook so that its configuration is set as
|
|
41
|
-
soon as needed.
|
|
42
|
-
|
|
43
|
-
When `ActiveRecord::Base` is loaded, even lazily, it in turn triggers the loading of
|
|
44
|
-
`ActiveRecord::Encryption`, thus preserving the original behavior of having its config ready
|
|
45
|
-
before any use of `ActiveRecord::Base`.
|
|
46
|
-
|
|
47
|
-
*Maxime Réty*
|
|
48
|
-
|
|
49
|
-
* Add `TimeZoneConverter#==` method, so objects will be properly compared by
|
|
50
|
-
their type, scale, limit & precision.
|
|
51
|
-
|
|
52
|
-
Address #52699.
|
|
53
|
-
|
|
54
|
-
*Ruy Rocha*
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
## Rails 7.1.4.2 (October 23, 2024) ##
|
|
58
|
-
|
|
59
|
-
* No changes.
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
## Rails 7.1.4.1 (October 15, 2024) ##
|
|
63
|
-
|
|
64
|
-
* No changes.
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
## Rails 7.1.4 (August 22, 2024) ##
|
|
68
|
-
|
|
69
|
-
* Allow to eager load nested nil associations.
|
|
70
|
-
|
|
71
|
-
*fatkodima*
|
|
72
|
-
|
|
73
|
-
* Fix `create_table` with `:auto_increment` option for MySQL adapter.
|
|
74
|
-
|
|
75
|
-
*fatkodima*
|
|
76
|
-
|
|
77
|
-
* Don't load has_one associations during autosave.
|
|
78
|
-
|
|
79
|
-
*Eugene Kenny*
|
|
80
|
-
|
|
81
|
-
* Fix migration ordering for `bin/rails db:prepare` across databases.
|
|
82
|
-
|
|
83
|
-
*fatkodima*
|
|
84
|
-
|
|
85
|
-
* Fix `alias_attribute` to ignore methods defined in parent classes.
|
|
86
|
-
|
|
87
|
-
*Jean Boussier*
|
|
88
|
-
|
|
89
|
-
* Fix a performance regression in attribute methods.
|
|
90
|
-
|
|
91
|
-
*Jean Boussier*
|
|
92
|
-
|
|
93
|
-
* Fix Active Record configs variable shadowing.
|
|
94
|
-
|
|
95
|
-
*Joel Lubrano*
|
|
96
|
-
|
|
97
|
-
* Fix running migrations on other databases when `database_tasks: false` on primary.
|
|
98
|
-
|
|
99
|
-
*fatkodima*
|
|
100
|
-
|
|
101
|
-
* Fix non-partial inserts for models with composite identity primary keys.
|
|
102
|
-
|
|
103
|
-
*fatkodima*
|
|
104
|
-
|
|
105
|
-
* Fix `ActiveRecord::Relation#touch_all` with custom attribute aliased as attribute for update.
|
|
106
|
-
|
|
107
|
-
*fatkodima*
|
|
108
|
-
|
|
109
|
-
* Fix a crash when an Executor wrapped fork exit.
|
|
110
|
-
|
|
111
|
-
*Joé Dupuis*
|
|
112
|
-
|
|
113
|
-
* Fix `destroy_async` job for owners with composite primary keys.
|
|
114
|
-
|
|
115
|
-
*fatkodima*
|
|
116
|
-
|
|
117
|
-
* Ensure pre-7.1 migrations use legacy index names when using `rename_table`.
|
|
118
|
-
|
|
119
|
-
*fatkodima*
|
|
120
|
-
|
|
121
|
-
* Allow `primary_key:` association option to be composite.
|
|
122
|
-
|
|
123
|
-
*Nikita Vasilevsky*
|
|
124
|
-
|
|
125
|
-
* Do not try to alias on key update when raw SQL is supplied.
|
|
126
|
-
|
|
127
|
-
*Gabriel Amaral*
|
|
128
|
-
|
|
129
|
-
* Memoize `key_provider` from `key` or deterministic `key_provider` if any.
|
|
130
|
-
|
|
131
|
-
*Rosa Gutierrez*
|
|
132
|
-
|
|
133
|
-
* Fix `upsert` warning for MySQL.
|
|
134
|
-
|
|
135
|
-
*fatkodima*
|
|
136
|
-
|
|
137
|
-
* Fix predicate builder for polymorphic models referencing models with composite primary keys.
|
|
138
|
-
|
|
139
|
-
*fatkodima*
|
|
140
|
-
|
|
141
|
-
* Fix `update_all/delete_all` on CPK model relation with join subquery.
|
|
142
|
-
|
|
143
|
-
*Nikita Vasilevsky*
|
|
144
|
-
|
|
145
|
-
* Remove memoization to accept `key_provider` overridden by `with_encryption_context`.
|
|
146
|
-
|
|
147
|
-
*John Hawthorn*
|
|
148
|
-
|
|
149
|
-
* Raise error for Trilogy when prepared_statements is true.
|
|
150
|
-
|
|
151
|
-
Trilogy doesn't currently support prepared statements. The error that
|
|
152
|
-
applications would see is a `StatementInvalid` error. This doesn't quite point
|
|
153
|
-
you to the fact this isn't supported. So raise a more appropriate error
|
|
154
|
-
pointing to what to change.
|
|
155
|
-
|
|
156
|
-
*Eileen M. Uchitelle*
|
|
157
|
-
|
|
158
|
-
* Fix loading schema cache when all databases have disabled database tasks.
|
|
159
|
-
|
|
160
|
-
*fatkodima*
|
|
161
|
-
|
|
162
|
-
* Always request `primary_key` in `RETURNING` if no other columns requested.
|
|
163
|
-
|
|
164
|
-
*Nikita Vasilevsky*
|
|
165
|
-
|
|
166
|
-
* Handle records being loaded with Marshal without triggering schema load
|
|
167
|
-
|
|
168
|
-
When using the old marshalling format for Active Record and loading
|
|
169
|
-
a serialized instance, it didn't trigger loading the schema and defining
|
|
170
|
-
attribute methods.
|
|
171
|
-
|
|
172
|
-
*Jean Boussier*
|
|
173
|
-
|
|
174
|
-
* Prevent some constant redefinition warnings when defining `inherited` on models.
|
|
175
|
-
|
|
176
|
-
*Adrian Hirt*
|
|
177
|
-
|
|
178
|
-
* Fix a memory perfomance regression in attribute methods.
|
|
179
|
-
|
|
180
|
-
Attribute methods used much more memory and were slower to define than
|
|
181
|
-
they should have been.
|
|
182
|
-
|
|
183
|
-
*Jean Boussier*
|
|
184
|
-
|
|
185
|
-
* Fix an issue that could cause database connection leaks.
|
|
186
|
-
|
|
187
|
-
If Active Record successfully connected to the database, but then failed
|
|
188
|
-
to read the server informations, the connection would be leaked until the
|
|
189
|
-
Ruby garbage collector triggers.
|
|
190
|
-
|
|
191
|
-
*Jean Boussier*
|
|
192
|
-
|
|
193
|
-
* Fix an issue where the IDs reader method did not return expected results
|
|
194
|
-
for preloaded associations in models using composite primary keys.
|
|
195
|
-
|
|
196
|
-
*Jay Ang*
|
|
197
|
-
|
|
198
|
-
* PostgreSQL `Cidr#change?` detects the address prefix change.
|
|
199
|
-
|
|
200
|
-
*Taketo Takashima*
|
|
201
|
-
|
|
202
|
-
* Fix Active Record serialization to not include instantiated but not loaded associations
|
|
203
|
-
|
|
204
|
-
*Jean Boussier*, *Ben Kyriakou*
|
|
205
|
-
|
|
206
|
-
* Allow `Sqlite3Adapter` to use `sqlite3` gem version `2.x`
|
|
207
|
-
|
|
208
|
-
*Mike Dalessio*
|
|
209
|
-
|
|
210
|
-
* Strict loading using `:n_plus_one_only` does not eagerly load child associations.
|
|
211
|
-
|
|
212
|
-
With this change, child associations are no longer eagerly loaded, to
|
|
213
|
-
match intended behavior and to prevent non-deterministic order issues caused
|
|
214
|
-
by calling methods like `first` or `last`. As `first` and `last` don't cause
|
|
215
|
-
an N+1 by themselves, calling child associations will no longer raise.
|
|
216
|
-
Fixes #49473.
|
|
217
|
-
|
|
218
|
-
Before:
|
|
219
|
-
|
|
220
|
-
```ruby
|
|
221
|
-
person = Person.find(1)
|
|
222
|
-
person.strict_loading!(mode: :n_plus_one_only)
|
|
223
|
-
person.posts.first
|
|
224
|
-
# SELECT * FROM posts WHERE person_id = 1; -- non-deterministic order
|
|
225
|
-
person.posts.first.firm # raises ActiveRecord::StrictLoadingViolationError
|
|
226
|
-
```
|
|
227
|
-
|
|
228
|
-
After:
|
|
229
|
-
|
|
230
|
-
```ruby
|
|
231
|
-
person = Person.find(1)
|
|
232
|
-
person.strict_loading!(mode: :n_plus_one_only)
|
|
233
|
-
person.posts.first # this is 1+1, not N+1
|
|
234
|
-
# SELECT * FROM posts WHERE person_id = 1 ORDER BY id LIMIT 1;
|
|
235
|
-
person.posts.first.firm # no longer raises
|
|
236
|
-
```
|
|
237
|
-
|
|
238
|
-
*Reid Lynch*
|
|
239
|
-
|
|
240
|
-
* Using `Model.query_constraints` with a single non-primary-key column used to raise as expected, but with an
|
|
241
|
-
incorrect error message. This has been fixed to raise with a more appropriate error message.
|
|
242
|
-
|
|
243
|
-
*Joshua Young*
|
|
244
|
-
|
|
245
|
-
* Fix `has_one` association autosave setting the foreign key attribute when it is unchanged.
|
|
246
|
-
|
|
247
|
-
This behaviour is also inconsistent with autosaving `belongs_to` and can have unintended side effects like raising
|
|
248
|
-
an `ActiveRecord::ReadonlyAttributeError` when the foreign key attribute is marked as read-only.
|
|
249
|
-
|
|
250
|
-
*Joshua Young*
|
|
251
|
-
|
|
252
|
-
* Fix an issue where `ActiveRecord::Encryption` configurations are not ready before the loading
|
|
253
|
-
of Active Record models, when an application is eager loaded. As a result, encrypted attributes
|
|
254
|
-
could be misconfigured in some cases.
|
|
255
|
-
|
|
256
|
-
*Maxime Réty*
|
|
257
|
-
|
|
258
|
-
* Properly synchronize `Mysql2Adapter#active?` and `TrilogyAdapter#active?`
|
|
259
|
-
|
|
260
|
-
As well as `disconnect!` and `verify!`.
|
|
261
|
-
|
|
262
|
-
This generally isn't a big problem as connections must not be shared between
|
|
263
|
-
threads, but is required when running transactional tests or system tests
|
|
264
|
-
and could lead to a SEGV.
|
|
265
|
-
|
|
266
|
-
*Jean Boussier*
|
|
267
|
-
|
|
268
|
-
* Fix counter caches when the foreign key is composite.
|
|
269
|
-
|
|
270
|
-
If the model holding the counter cache had a composite primary key,
|
|
271
|
-
inserting a dependent record would fail with an `ArgumentError`
|
|
272
|
-
`Expected corresponding value for...`
|
|
273
|
-
|
|
274
|
-
*fatkodima*
|
|
275
|
-
|
|
276
|
-
* Fix loading of schema cache for multiple databases.
|
|
277
|
-
|
|
278
|
-
Before this change, if you have multiple databases configured in your
|
|
279
|
-
application, and had schema cache present, Rails would load the same
|
|
280
|
-
cache to all databases.
|
|
281
|
-
|
|
282
|
-
*Rafael Mendonça França*
|
|
283
|
-
|
|
284
|
-
* Fix eager loading of composite primary key associations.
|
|
285
|
-
|
|
286
|
-
`relation.eager_load(:other_model)` could load the wrong records if `other_model`
|
|
287
|
-
had a composite primary key.
|
|
288
|
-
|
|
289
|
-
*Nikita Vasilevsky*
|
|
290
|
-
|
|
291
|
-
* Fix async queries returning a doubly wrapped result when hitting the query cache.
|
|
292
|
-
|
|
293
|
-
*fatkodima*
|
|
294
|
-
|
|
295
|
-
* Fix single quote escapes on default generated MySQL columns
|
|
296
|
-
|
|
297
|
-
MySQL 5.7.5+ supports generated columns, which can be used to create a column that is computed from an expression.
|
|
298
|
-
|
|
299
|
-
Previously, the schema dump would output a string with double escapes for generated columns with single quotes in the default expression.
|
|
300
|
-
|
|
301
|
-
This would result in issues when importing the schema on a fresh instance of a MySQL database.
|
|
302
|
-
|
|
303
|
-
Now, the string will not be escaped and will be valid Ruby upon importing of the schema.
|
|
304
|
-
|
|
305
|
-
*Yash Kapadia*
|
|
306
|
-
|
|
307
|
-
* Fix Migrations with versions older than 7.1 validating options given to
|
|
308
|
-
`t.references`.
|
|
309
|
-
|
|
310
|
-
*Hartley McGuire*
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
## Rails 7.1.3.4 (June 04, 2024) ##
|
|
314
|
-
|
|
315
|
-
* No changes.
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
## Rails 7.1.3.3 (May 16, 2024) ##
|
|
319
|
-
|
|
320
|
-
* No changes.
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
## Rails 7.1.3.2 (February 21, 2024) ##
|
|
324
|
-
|
|
325
|
-
* No changes.
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
## Rails 7.1.3.1 (February 21, 2024) ##
|
|
329
|
-
|
|
330
|
-
* No changes.
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
## Rails 7.1.3 (January 16, 2024) ##
|
|
334
|
-
|
|
335
|
-
* Fix Migrations with versions older than 7.1 validating options given to
|
|
336
|
-
`add_reference`.
|
|
337
|
-
|
|
338
|
-
*Hartley McGuire*
|
|
339
|
-
|
|
340
|
-
* Ensure `reload` sets correct owner for each association.
|
|
341
|
-
|
|
342
|
-
*Dmytro Savochkin*
|
|
343
|
-
|
|
344
|
-
* Fix view runtime for controllers with async queries.
|
|
345
|
-
|
|
346
|
-
*fatkodima*
|
|
347
|
-
|
|
348
|
-
* Fix `load_async` to work with query cache.
|
|
349
|
-
|
|
350
|
-
*fatkodima*
|
|
351
|
-
|
|
352
|
-
* Fix polymorphic `belongs_to` to correctly use parent's `query_constraints`.
|
|
353
|
-
|
|
354
|
-
*fatkodima*
|
|
355
|
-
|
|
356
|
-
* Fix `Preloader` to not generate a query for already loaded association with `query_constraints`.
|
|
357
|
-
|
|
358
|
-
*fatkodima*
|
|
359
|
-
|
|
360
|
-
* Fix multi-database polymorphic preloading with equivalent table names.
|
|
361
|
-
|
|
362
|
-
When preloading polymorphic associations, if two models pointed to two
|
|
363
|
-
tables with the same name but located in different databases, the
|
|
364
|
-
preloader would only load one.
|
|
365
|
-
|
|
366
|
-
*Ari Summer*
|
|
367
|
-
|
|
368
|
-
* Fix `encrypted_attribute?` to take into account context properties passed to `encrypts`.
|
|
369
|
-
|
|
370
|
-
*Maxime Réty*
|
|
371
|
-
|
|
372
|
-
* Fix `find_by` to work correctly in presence of composite primary keys.
|
|
373
|
-
|
|
374
|
-
*fatkodima*
|
|
375
|
-
|
|
376
|
-
* Fix async queries sometimes returning a raw result if they hit the query cache.
|
|
377
|
-
|
|
378
|
-
`ShipPart.async_count` could return a raw integer rather than a Promise
|
|
379
|
-
if it found the result in the query cache.
|
|
380
|
-
|
|
381
|
-
*fatkodima*
|
|
382
|
-
|
|
383
|
-
* Fix `Relation#transaction` to not apply a default scope.
|
|
384
|
-
|
|
385
|
-
The method was incorrectly setting a default scope around its block:
|
|
386
|
-
|
|
387
|
-
```ruby
|
|
388
|
-
Post.where(published: true).transaction do
|
|
389
|
-
Post.count # SELECT COUNT(*) FROM posts WHERE published = FALSE;
|
|
390
|
-
end
|
|
391
|
-
```
|
|
392
|
-
|
|
393
|
-
*Jean Boussier*
|
|
394
|
-
|
|
395
|
-
* Fix calling `async_pluck` on a `none` relation.
|
|
396
|
-
|
|
397
|
-
`Model.none.async_pluck(:id)` was returning a naked value
|
|
398
|
-
instead of a promise.
|
|
399
|
-
|
|
400
|
-
*Jean Boussier*
|
|
401
|
-
|
|
402
|
-
* Fix calling `load_async` on a `none` relation.
|
|
403
|
-
|
|
404
|
-
`Model.none.load_async` was returning a broken result.
|
|
405
|
-
|
|
406
|
-
*Lucas Mazza*
|
|
407
|
-
|
|
408
|
-
* TrilogyAdapter: ignore `host` if `socket` parameter is set.
|
|
409
|
-
|
|
410
|
-
This allows to configure a connection on a UNIX socket via DATABASE_URL:
|
|
411
|
-
|
|
412
|
-
```
|
|
413
|
-
DATABASE_URL=trilogy://does-not-matter/my_db_production?socket=/var/run/mysql.sock
|
|
414
|
-
```
|
|
415
|
-
|
|
416
|
-
*Jean Boussier*
|
|
417
|
-
|
|
418
|
-
* Fix `has_secure_token` calls the setter method on initialize.
|
|
419
|
-
|
|
420
|
-
*Abeid Ahmed*
|
|
421
|
-
|
|
422
|
-
* Allow using `object_id` as a database column name.
|
|
423
|
-
It was available before rails 7.1 and may be used as a part of polymorphic relationship to `object` where `object` can be any other database record.
|
|
424
|
-
|
|
425
|
-
*Mikhail Doronin*
|
|
426
|
-
|
|
427
|
-
* Fix `rails db:create:all` to not touch databases before they are created.
|
|
428
|
-
|
|
429
|
-
*fatkodima*
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
## Rails 7.1.2 (November 10, 2023) ##
|
|
433
|
-
|
|
434
|
-
* Fix renaming primary key index when renaming a table with a UUID primary key
|
|
435
|
-
in PostgreSQL.
|
|
436
|
-
|
|
437
|
-
*fatkodima*
|
|
438
|
-
|
|
439
|
-
* Fix `where(field: values)` queries when `field` is a serialized attribute
|
|
440
|
-
(for example, when `field` uses `ActiveRecord::Base.serialize` or is a JSON
|
|
441
|
-
column).
|
|
442
|
-
|
|
443
|
-
*João Alves*
|
|
444
|
-
|
|
445
|
-
* Prevent marking broken connections as verified.
|
|
446
|
-
|
|
447
|
-
*Daniel Colson*
|
|
448
|
-
|
|
449
|
-
* Don't mark Float::INFINITY as changed when reassigning it
|
|
450
|
-
|
|
451
|
-
When saving a record with a float infinite value, it shouldn't mark as changed
|
|
452
|
-
|
|
453
|
-
*Maicol Bentancor*
|
|
454
|
-
|
|
455
|
-
* `ActiveRecord::Base.table_name` now returns `nil` instead of raising
|
|
456
|
-
"undefined method `abstract_class?` for Object:Class".
|
|
457
|
-
|
|
458
|
-
*a5-stable*
|
|
459
|
-
|
|
460
|
-
* Fix upserting for custom `:on_duplicate` and `:unique_by` consisting of all
|
|
461
|
-
inserts keys.
|
|
462
|
-
|
|
463
|
-
*fatkodima*
|
|
464
|
-
|
|
465
|
-
* Fixed an [issue](https://github.com/rails/rails/issues/49809) where saving a
|
|
466
|
-
record could innappropriately `dup` its attributes.
|
|
467
|
-
|
|
468
|
-
*Jonathan Hefner*
|
|
469
|
-
|
|
470
|
-
* Dump schema only for a specific db for rollback/up/down tasks for multiple dbs.
|
|
471
|
-
|
|
472
|
-
*fatkodima*
|
|
473
|
-
|
|
474
|
-
* Fix `NoMethodError` when casting a PostgreSQL `money` value that uses a
|
|
475
|
-
comma as its radix point and has no leading currency symbol. For example,
|
|
476
|
-
when casting `"3,50"`.
|
|
477
|
-
|
|
478
|
-
*Andreas Reischuck* and *Jonathan Hefner*
|
|
479
|
-
|
|
480
|
-
* Re-enable support for using `enum` with non-column-backed attributes.
|
|
481
|
-
Non-column-backed attributes must be previously declared with an explicit
|
|
482
|
-
type. For example:
|
|
483
|
-
|
|
484
|
-
```ruby
|
|
485
|
-
class Post < ActiveRecord::Base
|
|
486
|
-
attribute :topic, :string
|
|
487
|
-
enum topic: %i[science tech engineering math]
|
|
488
|
-
end
|
|
489
|
-
```
|
|
490
|
-
|
|
491
|
-
*Jonathan Hefner*
|
|
492
|
-
|
|
493
|
-
* Raise on `foreign_key:` being passed as an array in associations
|
|
494
|
-
|
|
495
|
-
*Nikita Vasilevsky*
|
|
496
|
-
|
|
497
|
-
* Return back maximum allowed PostgreSQL table name to 63 characters.
|
|
498
|
-
|
|
499
|
-
*fatkodima*
|
|
500
|
-
|
|
501
|
-
* Fix detecting `IDENTITY` columns for PostgreSQL < 10.
|
|
502
|
-
|
|
503
|
-
*fatkodima*
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
## Rails 7.1.1 (October 11, 2023) ##
|
|
507
|
-
|
|
508
|
-
* Fix auto populating IDENTITY columns for PostgreSQL.
|
|
509
|
-
|
|
510
|
-
*fatkodima*
|
|
511
|
-
|
|
512
|
-
* Fix "ArgumentError: wrong number of arguments (given 3, expected 2)" when
|
|
513
|
-
down migrating `rename_table` in older migrations.
|
|
514
|
-
|
|
515
|
-
*fatkodima*
|
|
516
|
-
|
|
517
|
-
* Do not require the Action Text, Active Storage and Action Mailbox tables
|
|
518
|
-
to be present when running when running test on CI.
|
|
519
|
-
|
|
520
|
-
*Rafael Mendonça França*
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
## Rails 7.1.0 (October 05, 2023) ##
|
|
524
|
-
|
|
525
|
-
* No changes.
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
## Rails 7.1.0.rc2 (October 01, 2023) ##
|
|
529
|
-
|
|
530
|
-
* Remove -shm and -wal SQLite files when `rails db:drop` is run.
|
|
531
|
-
|
|
532
|
-
*Niklas Häusele*
|
|
533
|
-
|
|
534
|
-
* Revert the change to raise an `ArgumentError` when `#accepts_nested_attributes_for` is declared more than once for
|
|
535
|
-
an association in the same class.
|
|
536
|
-
|
|
537
|
-
The reverted behavior broke the case where the `#accepts_nested_attributes_for` was defined in a concern and
|
|
538
|
-
where overridden in the class that included the concern.
|
|
539
|
-
|
|
540
|
-
*Rafael Mendonça França*
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
## Rails 7.1.0.rc1 (September 27, 2023) ##
|
|
544
|
-
|
|
545
|
-
* Better naming for unique constraints support.
|
|
546
|
-
|
|
547
|
-
Naming unique keys leads to misunderstanding it's a short-hand of unique indexes.
|
|
548
|
-
Just naming it unique constraints is not misleading.
|
|
549
|
-
|
|
550
|
-
In Rails 7.1.0.beta1 or before:
|
|
551
|
-
|
|
552
|
-
```ruby
|
|
553
|
-
add_unique_key :sections, [:position], deferrable: :deferred, name: "unique_section_position"
|
|
554
|
-
remove_unique_key :sections, name: "unique_section_position"
|
|
555
|
-
```
|
|
556
|
-
|
|
557
|
-
Now:
|
|
558
|
-
|
|
559
|
-
```ruby
|
|
560
|
-
add_unique_constraint :sections, [:position], deferrable: :deferred, name: "unique_section_position"
|
|
561
|
-
remove_unique_constraint :sections, name: "unique_section_position"
|
|
562
|
-
```
|
|
563
|
-
|
|
564
|
-
*Ryuta Kamizono*
|
|
565
|
-
|
|
566
|
-
* Fix duplicate quoting for check constraint expressions in schema dump when using MySQL
|
|
567
|
-
|
|
568
|
-
A check constraint with an expression, that already contains quotes, lead to an invalid schema
|
|
569
|
-
dump with the mysql2 adapter.
|
|
570
|
-
|
|
571
|
-
Fixes #42424.
|
|
572
|
-
|
|
573
|
-
*Felix Tscheulin*
|
|
574
|
-
|
|
575
|
-
* Performance tune the SQLite3 adapter connection configuration
|
|
576
|
-
|
|
577
|
-
For Rails applications, the Write-Ahead-Log in normal syncing mode with a capped journal size, a healthy shared memory buffer and a shared cache will perform, on average, 2× better.
|
|
578
|
-
|
|
579
|
-
*Stephen Margheim*
|
|
580
|
-
|
|
581
|
-
* Allow SQLite3 `busy_handler` to be configured with simple max number of `retries`
|
|
582
|
-
|
|
583
|
-
Retrying busy connections without delay is a preferred practice for performance-sensitive applications. Add support for a `database.yml` `retries` integer, which is used in a simple `busy_handler` function to retry busy connections without exponential backoff up to the max number of `retries`.
|
|
584
|
-
|
|
585
|
-
*Stephen Margheim*
|
|
586
|
-
|
|
587
|
-
* The SQLite3 adapter now supports `supports_insert_returning?`
|
|
588
|
-
|
|
589
|
-
Implementing the full `supports_insert_returning?` contract means the SQLite3 adapter supports auto-populated columns (#48241) as well as custom primary keys.
|
|
590
|
-
|
|
591
|
-
*Stephen Margheim*
|
|
592
|
-
|
|
593
|
-
* Ensure the SQLite3 adapter handles default functions with the `||` concatenation operator
|
|
594
|
-
|
|
595
|
-
Previously, this default function would produce the static string `"'Ruby ' || 'on ' || 'Rails'"`.
|
|
596
|
-
Now, the adapter will appropriately receive and use `"Ruby on Rails"`.
|
|
597
|
-
|
|
598
|
-
```ruby
|
|
599
|
-
change_column_default "test_models", "ruby_on_rails", -> { "('Ruby ' || 'on ' || 'Rails')" }
|
|
600
|
-
```
|
|
601
|
-
|
|
602
|
-
*Stephen Margheim*
|
|
603
|
-
|
|
604
|
-
* Dump PostgreSQL schemas as part of the schema dump.
|
|
605
|
-
|
|
606
|
-
*Lachlan Sylvester*
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
## Rails 7.1.0.beta1 (September 13, 2023) ##
|
|
610
|
-
|
|
611
|
-
* Encryption now supports `support_unencrypted_data` being set per-attribute.
|
|
612
|
-
|
|
613
|
-
You can now opt out of `support_unencrypted_data` on a specific encrypted attribute.
|
|
614
|
-
This only has an effect if `ActiveRecord::Encryption.config.support_unencrypted_data == true`.
|
|
615
|
-
|
|
616
|
-
```ruby
|
|
617
|
-
class User < ActiveRecord::Base
|
|
618
|
-
encrypts :name, deterministic: true, support_unencrypted_data: false
|
|
619
|
-
encrypts :email, deterministic: true
|
|
620
|
-
end
|
|
621
|
-
```
|
|
622
|
-
|
|
623
|
-
*Alex Ghiculescu*
|
|
624
|
-
|
|
625
|
-
* Add instrumentation for Active Record transactions
|
|
626
|
-
|
|
627
|
-
Allows subscribing to transaction events for tracking/instrumentation. The event payload contains the connection and the outcome (commit, rollback, restart, incomplete), as well as timing details.
|
|
628
|
-
|
|
629
|
-
```ruby
|
|
630
|
-
ActiveSupport::Notifications.subscribe("transaction.active_record") do |event|
|
|
631
|
-
puts "Transaction event occurred!"
|
|
632
|
-
connection = event.payload[:connection]
|
|
633
|
-
puts "Connection: #{connection.inspect}"
|
|
634
|
-
end
|
|
635
|
-
```
|
|
636
|
-
|
|
637
|
-
*Daniel Colson*, *Ian Candy*
|
|
638
|
-
|
|
639
|
-
* Support composite foreign keys via migration helpers.
|
|
640
|
-
|
|
641
|
-
```ruby
|
|
642
|
-
# Assuming "carts" table has "(shop_id, user_id)" as a primary key.
|
|
643
|
-
|
|
644
|
-
add_foreign_key(:orders, :carts, primary_key: [:shop_id, :user_id])
|
|
645
|
-
|
|
646
|
-
remove_foreign_key(:orders, :carts, primary_key: [:shop_id, :user_id])
|
|
647
|
-
foreign_key_exists?(:orders, :carts, primary_key: [:shop_id, :user_id])
|
|
648
|
-
```
|
|
649
|
-
|
|
650
|
-
*fatkodima*
|
|
651
|
-
|
|
652
|
-
* Adds support for `if_not_exists` when adding a check constraint.
|
|
653
|
-
|
|
654
|
-
```ruby
|
|
655
|
-
add_check_constraint :posts, "post_type IN ('blog', 'comment', 'share')", if_not_exists: true
|
|
656
|
-
```
|
|
657
|
-
|
|
658
|
-
*Cody Cutrer*
|
|
659
|
-
|
|
660
|
-
* Raise an `ArgumentError` when `#accepts_nested_attributes_for` is declared more than once for an association in
|
|
661
|
-
the same class. Previously, the last declaration would silently override the previous one. Overriding in a subclass
|
|
662
|
-
is still allowed.
|
|
663
|
-
|
|
664
|
-
*Joshua Young*
|
|
665
|
-
|
|
666
|
-
* Deprecate `rewhere` argument on `#merge`.
|
|
667
|
-
|
|
668
|
-
The `rewhere` argument on `#merge`is deprecated without replacement and
|
|
669
|
-
will be removed in Rails 7.2.
|
|
670
|
-
|
|
671
|
-
*Adam Hess*
|
|
672
|
-
|
|
673
|
-
* Deprecate aliasing non-attributes with `alias_attribute`.
|
|
674
|
-
|
|
675
|
-
*Ian Candy*
|
|
676
|
-
|
|
677
|
-
* Fix unscope is not working in specific case
|
|
678
|
-
|
|
679
|
-
Before:
|
|
680
|
-
```ruby
|
|
681
|
-
Post.where(id: 1...3).unscope(where: :id).to_sql # "SELECT `posts`.* FROM `posts` WHERE `posts`.`id` >= 1 AND `posts`.`id` < 3"
|
|
682
|
-
|
|
683
|
-
```
|
|
684
|
-
|
|
685
|
-
After:
|
|
686
|
-
```ruby
|
|
687
|
-
Post.where(id: 1...3).unscope(where: :id).to_sql # "SELECT `posts`.* FROM `posts`"
|
|
688
|
-
```
|
|
689
|
-
|
|
690
|
-
Fixes #48094.
|
|
691
|
-
|
|
692
|
-
*Kazuya Hatanaka*
|
|
693
|
-
|
|
694
|
-
* Change `has_secure_token` default to `on: :initialize`
|
|
695
|
-
|
|
696
|
-
Change the new default value from `on: :create` to `on: :initialize`
|
|
697
|
-
|
|
698
|
-
Can be controlled by the `config.active_record.generate_secure_token_on`
|
|
699
|
-
configuration:
|
|
700
|
-
|
|
701
|
-
```ruby
|
|
702
|
-
config.active_record.generate_secure_token_on = :create
|
|
703
|
-
```
|
|
704
|
-
|
|
705
|
-
*Sean Doyle*
|
|
706
|
-
|
|
707
|
-
* Fix `change_column` not setting `precision: 6` on `datetime` columns when
|
|
708
|
-
using 7.0+ Migrations and SQLite.
|
|
709
|
-
|
|
710
|
-
*Hartley McGuire*
|
|
711
|
-
|
|
712
|
-
* Support composite identifiers in `to_key`
|
|
713
|
-
|
|
714
|
-
`to_key` avoids wrapping `#id` value into an `Array` if `#id` already an array
|
|
715
|
-
|
|
716
|
-
*Nikita Vasilevsky*
|
|
717
|
-
|
|
718
|
-
* Add validation option for `enum`
|
|
719
|
-
|
|
720
|
-
```ruby
|
|
721
|
-
class Contract < ApplicationRecord
|
|
722
|
-
enum :status, %w[in_progress completed], validate: true
|
|
723
|
-
end
|
|
724
|
-
Contract.new(status: "unknown").valid? # => false
|
|
725
|
-
Contract.new(status: nil).valid? # => false
|
|
726
|
-
Contract.new(status: "completed").valid? # => true
|
|
727
|
-
|
|
728
|
-
class Contract < ApplicationRecord
|
|
729
|
-
enum :status, %w[in_progress completed], validate: { allow_nil: true }
|
|
730
|
-
end
|
|
731
|
-
Contract.new(status: "unknown").valid? # => false
|
|
732
|
-
Contract.new(status: nil).valid? # => true
|
|
733
|
-
Contract.new(status: "completed").valid? # => true
|
|
734
|
-
```
|
|
735
|
-
|
|
736
|
-
*Edem Topuzov*, *Ryuta Kamizono*
|
|
737
|
-
|
|
738
|
-
* Allow batching methods to use already loaded relation if available
|
|
739
|
-
|
|
740
|
-
Calling batch methods on already loaded relations will use the records previously loaded instead of retrieving
|
|
741
|
-
them from the database again.
|
|
742
|
-
|
|
743
|
-
*Adam Hess*
|
|
744
|
-
|
|
745
|
-
* Deprecate `read_attribute(:id)` returning the primary key if the primary key is not `:id`.
|
|
746
|
-
|
|
747
|
-
Starting in Rails 7.2, `read_attribute(:id)` will return the value of the id column, regardless of the model's
|
|
748
|
-
primary key. To retrieve the value of the primary key, use `#id` instead. `read_attribute(:id)` for composite
|
|
749
|
-
primary key models will now return the value of the id column.
|
|
750
|
-
|
|
751
|
-
*Adrianna Chang*
|
|
752
|
-
|
|
753
|
-
* Fix `change_table` setting datetime precision for 6.1 Migrations
|
|
754
|
-
|
|
755
|
-
*Hartley McGuire*
|
|
756
|
-
|
|
757
|
-
* Fix change_column setting datetime precision for 6.1 Migrations
|
|
758
|
-
|
|
759
|
-
*Hartley McGuire*
|
|
760
|
-
|
|
761
|
-
* Add `ActiveRecord::Base#id_value` alias to access the raw value of a record's id column.
|
|
762
|
-
|
|
763
|
-
This alias is only provided for models that declare an `:id` column.
|
|
764
|
-
|
|
765
|
-
*Adrianna Chang*
|
|
766
|
-
|
|
767
|
-
* Fix previous change tracking for `ActiveRecord::Store` when using a column with JSON structured database type
|
|
768
|
-
|
|
769
|
-
Before, the methods to access the changes made during the last save `#saved_change_to_key?`, `#saved_change_to_key`, and `#key_before_last_save` did not work if the store was defined as a `store_accessor` on a column with a JSON structured database type
|
|
770
|
-
|
|
771
|
-
*Robert DiMartino*
|
|
772
|
-
|
|
773
|
-
* Fully support `NULLS [NOT] DISTINCT` for PostgreSQL 15+ indexes.
|
|
774
|
-
|
|
775
|
-
Previous work was done to allow the index to be created in a migration, but it was not
|
|
776
|
-
supported in schema.rb. Additionally, the matching for `NULLS [NOT] DISTINCT` was not
|
|
777
|
-
in the correct order, which could have resulted in inconsistent schema detection.
|
|
778
|
-
|
|
779
|
-
*Gregory Jones*
|
|
780
|
-
|
|
781
|
-
* Allow escaping of literal colon characters in `sanitize_sql_*` methods when named bind variables are used
|
|
782
|
-
|
|
783
|
-
*Justin Bull*
|
|
784
|
-
|
|
785
|
-
* Fix `#previously_new_record?` to return true for destroyed records.
|
|
786
|
-
|
|
787
|
-
Before, if a record was created and then destroyed, `#previously_new_record?` would return true.
|
|
788
|
-
Now, any UPDATE or DELETE to a record is considered a change, and will result in `#previously_new_record?`
|
|
789
|
-
returning false.
|
|
790
|
-
|
|
791
|
-
*Adrianna Chang*
|
|
792
|
-
|
|
793
|
-
* Specify callback in `has_secure_token`
|
|
794
|
-
|
|
795
|
-
```ruby
|
|
796
|
-
class User < ApplicationRecord
|
|
797
|
-
has_secure_token on: :initialize
|
|
798
|
-
end
|
|
799
|
-
|
|
800
|
-
User.new.token # => "abc123...."
|
|
801
|
-
```
|
|
802
|
-
|
|
803
|
-
*Sean Doyle*
|
|
804
|
-
|
|
805
|
-
* Fix incrementation of in memory counter caches when associations overlap
|
|
806
|
-
|
|
807
|
-
When two associations had a similarly named counter cache column, Active Record
|
|
808
|
-
could sometime increment the wrong one.
|
|
809
|
-
|
|
810
|
-
*Jacopo Beschi*, *Jean Boussier*
|
|
811
|
-
|
|
812
|
-
* Don't show secrets for Active Record's `Cipher::Aes256Gcm#inspect`.
|
|
813
|
-
|
|
814
|
-
Before:
|
|
815
|
-
|
|
816
|
-
```ruby
|
|
817
|
-
ActiveRecord::Encryption::Cipher::Aes256Gcm.new(secret).inspect
|
|
818
|
-
"#<ActiveRecord::Encryption::Cipher::Aes256Gcm:0x0000000104888038 ... @secret=\"\\xAF\\bFh]LV}q\\nl\\xB2U\\xB3 ... >"
|
|
819
|
-
```
|
|
820
|
-
|
|
821
|
-
After:
|
|
822
|
-
|
|
823
|
-
```ruby
|
|
824
|
-
ActiveRecord::Encryption::Cipher::Aes256Gcm(secret).inspect
|
|
825
|
-
"#<ActiveRecord::Encryption::Cipher::Aes256Gcm:0x0000000104888038>"
|
|
826
|
-
```
|
|
827
|
-
|
|
828
|
-
*Petrik de Heus*
|
|
829
|
-
|
|
830
|
-
* Bring back the historical behavior of committing transaction on non-local return.
|
|
831
|
-
|
|
832
|
-
```ruby
|
|
833
|
-
Model.transaction do
|
|
834
|
-
model.save
|
|
835
|
-
return
|
|
836
|
-
other_model.save # not executed
|
|
837
|
-
end
|
|
838
|
-
```
|
|
839
|
-
|
|
840
|
-
Historically only raised errors would trigger a rollback, but in Ruby `2.3`, the `timeout` library
|
|
841
|
-
started using `throw` to interrupt execution which had the adverse effect of committing open transactions.
|
|
842
|
-
|
|
843
|
-
To solve this, in Active Record 6.1 the behavior was changed to instead rollback the transaction as it was safer
|
|
844
|
-
than to potentially commit an incomplete transaction.
|
|
845
|
-
|
|
846
|
-
Using `return`, `break` or `throw` inside a `transaction` block was essentially deprecated from Rails 6.1 onwards.
|
|
847
|
-
|
|
848
|
-
However with the release of `timeout 0.4.0`, `Timeout.timeout` now raises an error again, and Active Record is able
|
|
849
|
-
to return to its original, less surprising, behavior.
|
|
850
|
-
|
|
851
|
-
This historical behavior can now be opt-ed in via:
|
|
852
|
-
|
|
853
|
-
```
|
|
854
|
-
Rails.application.config.active_record.commit_transaction_on_non_local_return = true
|
|
855
|
-
```
|
|
856
|
-
|
|
857
|
-
And is the default for new applications created in Rails 7.1.
|
|
858
|
-
|
|
859
|
-
*Jean Boussier*
|
|
860
|
-
|
|
861
|
-
* Deprecate `name` argument on `#remove_connection`.
|
|
862
|
-
|
|
863
|
-
The `name` argument is deprecated on `#remove_connection` without replacement. `#remove_connection` should be called directly on the class that established the connection.
|
|
864
|
-
|
|
865
|
-
*Eileen M. Uchitelle*
|
|
866
|
-
|
|
867
|
-
* Fix has_one through singular building with inverse.
|
|
868
|
-
|
|
869
|
-
Allows building of records from an association with a has_one through a
|
|
870
|
-
singular association with inverse. For belongs_to through associations,
|
|
871
|
-
linking the foreign key to the primary key model isn't needed.
|
|
872
|
-
For has_one, we cannot build records due to the association not being mutable.
|
|
873
|
-
|
|
874
|
-
*Gannon McGibbon*
|
|
875
|
-
|
|
876
|
-
* Disable database prepared statements when query logs are enabled
|
|
877
|
-
|
|
878
|
-
Prepared Statements and Query Logs are incompatible features due to query logs making every query unique.
|
|
879
|
-
|
|
880
|
-
*zzak, Jean Boussier*
|
|
881
|
-
|
|
882
|
-
* Support decrypting data encrypted non-deterministically with a SHA1 hash digest.
|
|
883
|
-
|
|
884
|
-
This adds a new Active Record encryption option to support decrypting data encrypted
|
|
885
|
-
non-deterministically with a SHA1 hash digest:
|
|
886
|
-
|
|
887
|
-
```
|
|
888
|
-
Rails.application.config.active_record.encryption.support_sha1_for_non_deterministic_encryption = true
|
|
889
|
-
```
|
|
890
|
-
|
|
891
|
-
The new option addresses a problem when upgrading from 7.0 to 7.1. Due to a bug in how Active Record
|
|
892
|
-
Encryption was getting initialized, the key provider used for non-deterministic encryption were using
|
|
893
|
-
SHA-1 as its digest class, instead of the one configured globally by Rails via
|
|
894
|
-
`Rails.application.config.active_support.key_generator_hash_digest_class`.
|
|
895
|
-
|
|
896
|
-
*Cadu Ribeiro and Jorge Manrubia*
|
|
897
|
-
|
|
898
|
-
* Added PostgreSQL migration commands for enum rename, add value, and rename value.
|
|
899
|
-
|
|
900
|
-
`rename_enum` and `rename_enum_value` are reversible. Due to Postgres
|
|
901
|
-
limitation, `add_enum_value` is not reversible since you cannot delete enum
|
|
902
|
-
values. As an alternative you should drop and recreate the enum entirely.
|
|
903
|
-
|
|
904
|
-
```ruby
|
|
905
|
-
rename_enum :article_status, to: :article_state
|
|
906
|
-
```
|
|
907
|
-
|
|
908
|
-
```ruby
|
|
909
|
-
add_enum_value :article_state, "archived" # will be at the end of existing values
|
|
910
|
-
add_enum_value :article_state, "in review", before: "published"
|
|
911
|
-
add_enum_value :article_state, "approved", after: "in review"
|
|
912
|
-
```
|
|
913
|
-
|
|
914
|
-
```ruby
|
|
915
|
-
rename_enum_value :article_state, from: "archived", to: "deleted"
|
|
916
|
-
```
|
|
917
|
-
|
|
918
|
-
*Ray Faddis*
|
|
919
|
-
|
|
920
|
-
* Allow composite primary key to be derived from schema
|
|
921
|
-
|
|
922
|
-
Booting an application with a schema that contains composite primary keys
|
|
923
|
-
will not issue warning and won't `nil`ify the `ActiveRecord::Base#primary_key` value anymore.
|
|
924
|
-
|
|
925
|
-
Given a `travel_routes` table definition and a `TravelRoute` model like:
|
|
926
|
-
```ruby
|
|
927
|
-
create_table :travel_routes, primary_key: [:origin, :destination], force: true do |t|
|
|
928
|
-
t.string :origin
|
|
929
|
-
t.string :destination
|
|
930
|
-
end
|
|
931
|
-
|
|
932
|
-
class TravelRoute < ActiveRecord::Base; end
|
|
933
|
-
```
|
|
934
|
-
The `TravelRoute.primary_key` value will be automatically derived to `["origin", "destination"]`
|
|
935
|
-
|
|
936
|
-
*Nikita Vasilevsky*
|
|
937
|
-
|
|
938
|
-
* Include the `connection_pool` with exceptions raised from an adapter.
|
|
939
|
-
|
|
940
|
-
The `connection_pool` provides added context such as the connection used
|
|
941
|
-
that led to the exception as well as which role and shard.
|
|
942
|
-
|
|
943
|
-
*Luan Vieira*
|
|
944
|
-
|
|
945
|
-
* Support multiple column ordering for `find_each`, `find_in_batches` and `in_batches`.
|
|
946
|
-
|
|
947
|
-
When find_each/find_in_batches/in_batches are performed on a table with composite primary keys, ascending or descending order can be selected for each key.
|
|
948
|
-
|
|
949
|
-
```ruby
|
|
950
|
-
Person.find_each(order: [:desc, :asc]) do |person|
|
|
951
|
-
person.party_all_night!
|
|
952
|
-
end
|
|
953
|
-
```
|
|
954
|
-
|
|
955
|
-
*Takuya Kurimoto*
|
|
956
|
-
|
|
957
|
-
* Fix where on association with has_one/has_many polymorphic relations.
|
|
958
|
-
|
|
959
|
-
Before:
|
|
960
|
-
```ruby
|
|
961
|
-
Treasure.where(price_estimates: PriceEstimate.all)
|
|
962
|
-
#=> SELECT (...) WHERE "treasures"."id" IN (SELECT "price_estimates"."estimate_of_id" FROM "price_estimates")
|
|
963
|
-
```
|
|
964
|
-
|
|
965
|
-
Later:
|
|
966
|
-
```ruby
|
|
967
|
-
Treasure.where(price_estimates: PriceEstimate.all)
|
|
968
|
-
#=> SELECT (...) WHERE "treasures"."id" IN (SELECT "price_estimates"."estimate_of_id" FROM "price_estimates" WHERE "price_estimates"."estimate_of_type" = 'Treasure')
|
|
969
|
-
```
|
|
970
|
-
|
|
971
|
-
*Lázaro Nixon*
|
|
972
|
-
|
|
973
|
-
* Assign auto populated columns on Active Record record creation.
|
|
974
|
-
|
|
975
|
-
Changes record creation logic to allow for the `auto_increment` column to be assigned
|
|
976
|
-
immediately after creation regardless of it's relation to the model's primary key.
|
|
977
|
-
|
|
978
|
-
The PostgreSQL adapter benefits the most from the change allowing for any number of auto-populated
|
|
979
|
-
columns to be assigned on the object immediately after row insertion utilizing the `RETURNING` statement.
|
|
980
|
-
|
|
981
|
-
*Nikita Vasilevsky*
|
|
982
|
-
|
|
983
|
-
* Use the first key in the `shards` hash from `connected_to` for the `default_shard`.
|
|
984
|
-
|
|
985
|
-
Some applications may not want to use `:default` as a shard name in their connection model. Unfortunately Active Record expects there to be a `:default` shard because it must assume a shard to get the right connection from the pool manager. Rather than force applications to manually set this, `connects_to` can infer the default shard name from the hash of shards and will now assume that the first shard is your default.
|
|
986
|
-
|
|
987
|
-
For example if your model looked like this:
|
|
988
|
-
|
|
989
|
-
```ruby
|
|
990
|
-
class ShardRecord < ApplicationRecord
|
|
991
|
-
self.abstract_class = true
|
|
992
|
-
|
|
993
|
-
connects_to shards: {
|
|
994
|
-
shard_one: { writing: :shard_one },
|
|
995
|
-
shard_two: { writing: :shard_two }
|
|
996
|
-
}
|
|
997
|
-
```
|
|
998
|
-
|
|
999
|
-
Then the `default_shard` for this class would be set to `shard_one`.
|
|
1000
|
-
|
|
1001
|
-
Fixes: #45390
|
|
1002
|
-
|
|
1003
|
-
*Eileen M. Uchitelle*
|
|
1004
|
-
|
|
1005
|
-
* Fix mutation detection for serialized attributes backed by binary columns.
|
|
1006
|
-
|
|
1007
|
-
*Jean Boussier*
|
|
1008
|
-
|
|
1009
|
-
* Add `ActiveRecord.disconnect_all!` method to immediately close all connections from all pools.
|
|
1010
|
-
|
|
1011
|
-
*Jean Boussier*
|
|
1012
|
-
|
|
1013
|
-
* Discard connections which may have been left in a transaction.
|
|
1014
|
-
|
|
1015
|
-
There are cases where, due to an error, `within_new_transaction` may unexpectedly leave a connection in an open transaction. In these cases the connection may be reused, and the following may occur:
|
|
1016
|
-
- Writes appear to fail when they actually succeed.
|
|
1017
|
-
- Writes appear to succeed when they actually fail.
|
|
1018
|
-
- Reads return stale or uncommitted data.
|
|
1019
|
-
|
|
1020
|
-
Previously, the following case was detected:
|
|
1021
|
-
- An error is encountered during the transaction, then another error is encountered while attempting to roll it back.
|
|
1022
|
-
|
|
1023
|
-
Now, the following additional cases are detected:
|
|
1024
|
-
- An error is encountered just after successfully beginning a transaction.
|
|
1025
|
-
- An error is encountered while committing a transaction, then another error is encountered while attempting to roll it back.
|
|
1026
|
-
- An error is encountered while rolling back a transaction.
|
|
1027
|
-
|
|
1028
|
-
*Nick Dower*
|
|
1029
|
-
|
|
1030
|
-
* Active Record query cache now evicts least recently used entries
|
|
1031
|
-
|
|
1032
|
-
By default it only keeps the `100` most recently used queries.
|
|
1033
|
-
|
|
1034
|
-
The cache size can be configured via `database.yml`
|
|
1035
|
-
|
|
1036
|
-
```yaml
|
|
1037
|
-
development:
|
|
1038
|
-
adapter: mysql2
|
|
1039
|
-
query_cache: 200
|
|
1040
|
-
```
|
|
1041
|
-
|
|
1042
|
-
It can also be entirely disabled:
|
|
1043
|
-
|
|
1044
|
-
```yaml
|
|
1045
|
-
development:
|
|
1046
|
-
adapter: mysql2
|
|
1047
|
-
query_cache: false
|
|
1048
|
-
```
|
|
1049
|
-
|
|
1050
|
-
*Jean Boussier*
|
|
1051
|
-
|
|
1052
|
-
* Deprecate `check_pending!` in favor of `check_all_pending!`.
|
|
1053
|
-
|
|
1054
|
-
`check_pending!` will only check for pending migrations on the current database connection or the one passed in. This has been deprecated in favor of `check_all_pending!` which will find all pending migrations for the database configurations in a given environment.
|
|
1055
|
-
|
|
1056
|
-
*Eileen M. Uchitelle*
|
|
1057
|
-
|
|
1058
|
-
* Make `increment_counter`/`decrement_counter` accept an amount argument
|
|
1059
|
-
|
|
1060
|
-
```ruby
|
|
1061
|
-
Post.increment_counter(:comments_count, 5, by: 3)
|
|
1062
|
-
```
|
|
1063
|
-
|
|
1064
|
-
*fatkodima*
|
|
1065
|
-
|
|
1066
|
-
* Add support for `Array#intersect?` to `ActiveRecord::Relation`.
|
|
1067
|
-
|
|
1068
|
-
`Array#intersect?` is only available on Ruby 3.1 or later.
|
|
1069
|
-
|
|
1070
|
-
This allows the Rubocop `Style/ArrayIntersect` cop to work with `ActiveRecord::Relation` objects.
|
|
1071
|
-
|
|
1072
|
-
*John Harry Kelly*
|
|
1073
|
-
|
|
1074
|
-
* The deferrable foreign key can be passed to `t.references`.
|
|
1075
|
-
|
|
1076
|
-
*Hiroyuki Ishii*
|
|
1077
|
-
|
|
1078
|
-
* Deprecate `deferrable: true` option of `add_foreign_key`.
|
|
1079
|
-
|
|
1080
|
-
`deferrable: true` is deprecated in favor of `deferrable: :immediate`, and
|
|
1081
|
-
will be removed in Rails 7.2.
|
|
1082
|
-
|
|
1083
|
-
Because `deferrable: true` and `deferrable: :deferred` are hard to understand.
|
|
1084
|
-
Both true and :deferred are truthy values.
|
|
1085
|
-
This behavior is the same as the deferrable option of the add_unique_key method, added in #46192.
|
|
1086
|
-
|
|
1087
|
-
*Hiroyuki Ishii*
|
|
1088
|
-
|
|
1089
|
-
* `AbstractAdapter#execute` and `#exec_query` now clear the query cache
|
|
1090
|
-
|
|
1091
|
-
If you need to perform a read only SQL query without clearing the query
|
|
1092
|
-
cache, use `AbstractAdapter#select_all`.
|
|
1093
|
-
|
|
1094
|
-
*Jean Boussier*
|
|
1095
|
-
|
|
1096
|
-
* Make `.joins` / `.left_outer_joins` work with CTEs.
|
|
1097
|
-
|
|
1098
|
-
For example:
|
|
1099
|
-
|
|
1100
|
-
```ruby
|
|
1101
|
-
Post
|
|
1102
|
-
.with(commented_posts: Comment.select(:post_id).distinct)
|
|
1103
|
-
.joins(:commented_posts)
|
|
1104
|
-
#=> WITH (...) SELECT ... INNER JOIN commented_posts on posts.id = commented_posts.post_id
|
|
1105
|
-
```
|
|
1106
|
-
|
|
1107
|
-
*Vladimir Dementyev*
|
|
1108
|
-
|
|
1109
|
-
* Add a load hook for `ActiveRecord::ConnectionAdapters::Mysql2Adapter`
|
|
1110
|
-
(named `active_record_mysql2adapter`) to allow for overriding aspects of the
|
|
1111
|
-
`ActiveRecord::ConnectionAdapters::Mysql2Adapter` class. This makes `Mysql2Adapter`
|
|
1112
|
-
consistent with `PostgreSQLAdapter` and `SQLite3Adapter` that already have load hooks.
|
|
1113
|
-
|
|
1114
|
-
*fatkodima*
|
|
1115
|
-
|
|
1116
|
-
* Introduce adapter for Trilogy database client
|
|
1117
|
-
|
|
1118
|
-
Trilogy is a MySQL-compatible database client. Rails applications can use Trilogy
|
|
1119
|
-
by configuring their `config/database.yml`:
|
|
1120
|
-
|
|
1121
|
-
```yaml
|
|
1122
|
-
development:
|
|
1123
|
-
adapter: trilogy
|
|
1124
|
-
database: blog_development
|
|
1125
|
-
pool: 5
|
|
1126
|
-
```
|
|
1127
|
-
|
|
1128
|
-
Or by using the `DATABASE_URL` environment variable:
|
|
1129
|
-
|
|
1130
|
-
```ruby
|
|
1131
|
-
ENV['DATABASE_URL'] # => "trilogy://localhost/blog_development?pool=5"
|
|
1132
|
-
```
|
|
1133
|
-
|
|
1134
|
-
*Adrianna Chang*
|
|
1135
|
-
|
|
1136
|
-
* `after_commit` callbacks defined on models now execute in the correct order.
|
|
1137
|
-
|
|
1138
|
-
```ruby
|
|
1139
|
-
class User < ActiveRecord::Base
|
|
1140
|
-
after_commit { puts("this gets called first") }
|
|
1141
|
-
after_commit { puts("this gets called second") }
|
|
1142
|
-
end
|
|
1143
|
-
```
|
|
1144
|
-
|
|
1145
|
-
Previously, the callbacks executed in the reverse order. To opt in to the new behaviour:
|
|
1146
|
-
|
|
1147
|
-
```ruby
|
|
1148
|
-
config.active_record.run_after_transaction_callbacks_in_order_defined = true
|
|
1149
|
-
```
|
|
1150
|
-
|
|
1151
|
-
This is the default for new apps.
|
|
1152
|
-
|
|
1153
|
-
*Alex Ghiculescu*
|
|
1154
|
-
|
|
1155
|
-
* Infer `foreign_key` when `inverse_of` is present on `has_one` and `has_many` associations.
|
|
1156
|
-
|
|
1157
|
-
```ruby
|
|
1158
|
-
has_many :citations, foreign_key: "book1_id", inverse_of: :book
|
|
1159
|
-
```
|
|
1160
|
-
|
|
1161
|
-
can be simplified to
|
|
1162
|
-
|
|
1163
|
-
```ruby
|
|
1164
|
-
has_many :citations, inverse_of: :book
|
|
1165
|
-
```
|
|
1166
|
-
|
|
1167
|
-
and the foreign_key will be read from the corresponding `belongs_to` association.
|
|
1168
|
-
|
|
1169
|
-
*Daniel Whitney*
|
|
1170
|
-
|
|
1171
|
-
* Limit max length of auto generated index names
|
|
1172
|
-
|
|
1173
|
-
Auto generated index names are now limited to 62 bytes, which fits within
|
|
1174
|
-
the default index name length limits for MySQL, Postgres and SQLite.
|
|
1175
|
-
|
|
1176
|
-
Any index name over the limit will fallback to the new short format.
|
|
1177
|
-
|
|
1178
|
-
Before (too long):
|
|
1179
|
-
```
|
|
1180
|
-
index_testings_on_foo_and_bar_and_first_name_and_last_name_and_administrator
|
|
1181
|
-
```
|
|
1182
|
-
|
|
1183
|
-
After (short format):
|
|
1184
|
-
```
|
|
1185
|
-
idx_on_foo_bar_first_name_last_name_administrator_5939248142
|
|
1186
|
-
```
|
|
1187
|
-
|
|
1188
|
-
The short format includes a hash to ensure the name is unique database-wide.
|
|
1189
|
-
|
|
1190
|
-
*Mike Coutermarsh*
|
|
1191
|
-
|
|
1192
|
-
* Introduce a more stable and optimized Marshal serializer for Active Record models.
|
|
1193
|
-
|
|
1194
|
-
Can be enabled with `config.active_record.marshalling_format_version = 7.1`.
|
|
1195
|
-
|
|
1196
|
-
*Jean Boussier*
|
|
1197
|
-
|
|
1198
|
-
* Allow specifying where clauses with column-tuple syntax.
|
|
1199
|
-
|
|
1200
|
-
Querying through `#where` now accepts a new tuple-syntax which accepts, as
|
|
1201
|
-
a key, an array of columns and, as a value, an array of corresponding tuples.
|
|
1202
|
-
The key specifies a list of columns, while the value is an array of
|
|
1203
|
-
ordered-tuples that conform to the column list.
|
|
1204
|
-
|
|
1205
|
-
For instance:
|
|
1206
|
-
|
|
1207
|
-
```ruby
|
|
1208
|
-
# Cpk::Book => Cpk::Book(author_id: integer, number: integer, title: string, revision: integer)
|
|
1209
|
-
# Cpk::Book.primary_key => ["author_id", "number"]
|
|
1210
|
-
|
|
1211
|
-
book = Cpk::Book.create!(author_id: 1, number: 1)
|
|
1212
|
-
Cpk::Book.where(Cpk::Book.primary_key => [[1, 2]]) # => [book]
|
|
1213
|
-
|
|
1214
|
-
# Topic => Topic(id: integer, title: string, author_name: string...)
|
|
1215
|
-
|
|
1216
|
-
Topic.where([:title, :author_name] => [["The Alchemist", "Paulo Coelho"], ["Harry Potter", "J.K Rowling"]])
|
|
1217
|
-
```
|
|
1218
|
-
|
|
1219
|
-
*Paarth Madan*
|
|
1220
|
-
|
|
1221
|
-
* Allow warning codes to be ignore when reporting SQL warnings.
|
|
1222
|
-
|
|
1223
|
-
Active Record config that can ignore warning codes
|
|
1224
|
-
|
|
1225
|
-
```ruby
|
|
1226
|
-
# Configure allowlist of warnings that should always be ignored
|
|
1227
|
-
config.active_record.db_warnings_ignore = [
|
|
1228
|
-
"1062", # MySQL Error 1062: Duplicate entry
|
|
1229
|
-
]
|
|
1230
|
-
```
|
|
1231
|
-
|
|
1232
|
-
This is supported for the MySQL and PostgreSQL adapters.
|
|
1233
|
-
|
|
1234
|
-
*Nick Borromeo*
|
|
1235
|
-
|
|
1236
|
-
* Introduce `:active_record_fixtures` lazy load hook.
|
|
1237
|
-
|
|
1238
|
-
Hooks defined with this name will be run whenever `TestFixtures` is included
|
|
1239
|
-
in a class.
|
|
1240
|
-
|
|
1241
|
-
```ruby
|
|
1242
|
-
ActiveSupport.on_load(:active_record_fixtures) do
|
|
1243
|
-
self.fixture_paths << "test/fixtures"
|
|
1244
|
-
end
|
|
1245
|
-
|
|
1246
|
-
klass = Class.new
|
|
1247
|
-
klass.include(ActiveRecord::TestFixtures)
|
|
1248
|
-
|
|
1249
|
-
klass.fixture_paths # => ["test/fixtures"]
|
|
1250
|
-
```
|
|
1251
|
-
|
|
1252
|
-
*Andrew Novoselac*
|
|
1253
|
-
|
|
1254
|
-
* Introduce `TestFixtures#fixture_paths`.
|
|
1255
|
-
|
|
1256
|
-
Multiple fixture paths can now be specified using the `#fixture_paths` accessor.
|
|
1257
|
-
Apps will continue to have `test/fixtures` as their one fixture path by default,
|
|
1258
|
-
but additional fixture paths can be specified.
|
|
1259
|
-
|
|
1260
|
-
```ruby
|
|
1261
|
-
ActiveSupport::TestCase.fixture_paths << "component1/test/fixtures"
|
|
1262
|
-
ActiveSupport::TestCase.fixture_paths << "component2/test/fixtures"
|
|
1263
|
-
```
|
|
1264
|
-
|
|
1265
|
-
`TestFixtures#fixture_path` is now deprecated.
|
|
1266
|
-
|
|
1267
|
-
*Andrew Novoselac*
|
|
1268
|
-
|
|
1269
|
-
* Adds support for deferrable exclude constraints in PostgreSQL.
|
|
1270
|
-
|
|
1271
|
-
By default, exclude constraints in PostgreSQL are checked after each statement.
|
|
1272
|
-
This works for most use cases, but becomes a major limitation when replacing
|
|
1273
|
-
records with overlapping ranges by using multiple statements.
|
|
1274
|
-
|
|
1275
|
-
```ruby
|
|
1276
|
-
exclusion_constraint :users, "daterange(valid_from, valid_to) WITH &&", deferrable: :immediate
|
|
1277
|
-
```
|
|
1278
|
-
|
|
1279
|
-
Passing `deferrable: :immediate` checks constraint after each statement,
|
|
1280
|
-
but allows manually deferring the check using `SET CONSTRAINTS ALL DEFERRED`
|
|
1281
|
-
within a transaction. This will cause the excludes to be checked after the transaction.
|
|
1282
|
-
|
|
1283
|
-
It's also possible to change the default behavior from an immediate check
|
|
1284
|
-
(after the statement), to a deferred check (after the transaction):
|
|
1285
|
-
|
|
1286
|
-
```ruby
|
|
1287
|
-
exclusion_constraint :users, "daterange(valid_from, valid_to) WITH &&", deferrable: :deferred
|
|
1288
|
-
```
|
|
1289
|
-
|
|
1290
|
-
*Hiroyuki Ishii*
|
|
1291
|
-
|
|
1292
|
-
* Respect `foreign_type` option to `delegated_type` for `{role}_class` method.
|
|
1293
|
-
|
|
1294
|
-
Usage of `delegated_type` with non-conventional `{role}_type` column names can now be specified with `foreign_type` option.
|
|
1295
|
-
This option is the same as `foreign_type` as forwarded to the underlying `belongs_to` association that `delegated_type` wraps.
|
|
1296
|
-
|
|
1297
|
-
*Jason Karns*
|
|
1298
|
-
|
|
1299
|
-
* Add support for unique constraints (PostgreSQL-only).
|
|
1300
|
-
|
|
1301
|
-
```ruby
|
|
1302
|
-
add_unique_key :sections, [:position], deferrable: :deferred, name: "unique_section_position"
|
|
1303
|
-
remove_unique_key :sections, name: "unique_section_position"
|
|
1304
|
-
```
|
|
1305
|
-
|
|
1306
|
-
See PostgreSQL's [Unique Constraints](https://www.postgresql.org/docs/current/ddl-constraints.html#DDL-CONSTRAINTS-UNIQUE-CONSTRAINTS) documentation for more on unique constraints.
|
|
1307
|
-
|
|
1308
|
-
By default, unique constraints in PostgreSQL are checked after each statement.
|
|
1309
|
-
This works for most use cases, but becomes a major limitation when replacing
|
|
1310
|
-
records with unique column by using multiple statements.
|
|
1311
|
-
|
|
1312
|
-
An example of swapping unique columns between records.
|
|
1313
|
-
|
|
1314
|
-
```ruby
|
|
1315
|
-
# position is unique column
|
|
1316
|
-
old_item = Item.create!(position: 1)
|
|
1317
|
-
new_item = Item.create!(position: 2)
|
|
1318
|
-
|
|
1319
|
-
Item.transaction do
|
|
1320
|
-
old_item.update!(position: 2)
|
|
1321
|
-
new_item.update!(position: 1)
|
|
1322
|
-
end
|
|
1323
|
-
```
|
|
1324
|
-
|
|
1325
|
-
Using the default behavior, the transaction would fail when executing the
|
|
1326
|
-
first `UPDATE` statement.
|
|
1327
|
-
|
|
1328
|
-
By passing the `:deferrable` option to the `add_unique_key` statement in
|
|
1329
|
-
migrations, it's possible to defer this check.
|
|
1330
|
-
|
|
1331
|
-
```ruby
|
|
1332
|
-
add_unique_key :items, [:position], deferrable: :immediate
|
|
1333
|
-
```
|
|
1334
|
-
|
|
1335
|
-
Passing `deferrable: :immediate` does not change the behaviour of the previous example,
|
|
1336
|
-
but allows manually deferring the check using `SET CONSTRAINTS ALL DEFERRED` within a transaction.
|
|
1337
|
-
This will cause the unique constraints to be checked after the transaction.
|
|
1338
|
-
|
|
1339
|
-
It's also possible to adjust the default behavior from an immediate
|
|
1340
|
-
check (after the statement), to a deferred check (after the transaction):
|
|
1341
|
-
|
|
1342
|
-
```ruby
|
|
1343
|
-
add_unique_key :items, [:position], deferrable: :deferred
|
|
1344
|
-
```
|
|
1345
|
-
|
|
1346
|
-
If you want to change an existing unique index to deferrable, you can use :using_index
|
|
1347
|
-
to create deferrable unique constraints.
|
|
1348
|
-
|
|
1349
|
-
```ruby
|
|
1350
|
-
add_unique_key :items, deferrable: :deferred, using_index: "index_items_on_position"
|
|
1351
|
-
```
|
|
1352
|
-
|
|
1353
|
-
*Hiroyuki Ishii*
|
|
1354
|
-
|
|
1355
|
-
* Remove deprecated `Tasks::DatabaseTasks.schema_file_type`.
|
|
1356
|
-
|
|
1357
|
-
*Rafael Mendonça França*
|
|
1358
|
-
|
|
1359
|
-
* Remove deprecated `config.active_record.partial_writes`.
|
|
1360
|
-
|
|
1361
|
-
*Rafael Mendonça França*
|
|
1362
|
-
|
|
1363
|
-
* Remove deprecated `ActiveRecord::Base` config accessors.
|
|
1364
|
-
|
|
1365
|
-
*Rafael Mendonça França*
|
|
1366
|
-
|
|
1367
|
-
* Remove the `:include_replicas` argument from `configs_for`. Use `:include_hidden` argument instead.
|
|
1368
|
-
|
|
1369
|
-
*Eileen M. Uchitelle*
|
|
1370
|
-
|
|
1371
|
-
* Allow applications to lookup a config via a custom hash key.
|
|
1372
|
-
|
|
1373
|
-
If you have registered a custom config or want to find configs where the hash matches a specific key, now you can pass `config_key` to `configs_for`. For example if you have a `db_config` with the key `vitess` you can look up a database configuration hash by matching that key.
|
|
1374
|
-
|
|
1375
|
-
```ruby
|
|
1376
|
-
ActiveRecord::Base.configurations.configs_for(env_name: "development", name: "primary", config_key: :vitess)
|
|
1377
|
-
ActiveRecord::Base.configurations.configs_for(env_name: "development", config_key: :vitess)
|
|
1378
|
-
```
|
|
1379
|
-
|
|
1380
|
-
*Eileen M. Uchitelle*
|
|
1381
|
-
|
|
1382
|
-
* Allow applications to register a custom database configuration handler.
|
|
1383
|
-
|
|
1384
|
-
Adds a mechanism for registering a custom handler for cases where you want database configurations to respond to custom methods. This is useful for non-Rails database adapters or tools like Vitess that you may want to configure differently from a standard `HashConfig` or `UrlConfig`.
|
|
1385
|
-
|
|
1386
|
-
Given the following database YAML we want the `animals` db to create a `CustomConfig` object instead while the `primary` database will be a `UrlConfig`:
|
|
1387
|
-
|
|
1388
|
-
```yaml
|
|
1389
|
-
development:
|
|
1390
|
-
primary:
|
|
1391
|
-
url: postgres://localhost/primary
|
|
1392
|
-
animals:
|
|
1393
|
-
url: postgres://localhost/animals
|
|
1394
|
-
custom_config:
|
|
1395
|
-
sharded: 1
|
|
1396
|
-
```
|
|
1397
|
-
|
|
1398
|
-
To register a custom handler first make a class that has your custom methods:
|
|
1399
|
-
|
|
1400
|
-
```ruby
|
|
1401
|
-
class CustomConfig < ActiveRecord::DatabaseConfigurations::UrlConfig
|
|
1402
|
-
def sharded?
|
|
1403
|
-
custom_config.fetch("sharded", false)
|
|
1404
|
-
end
|
|
1405
|
-
|
|
1406
|
-
private
|
|
1407
|
-
def custom_config
|
|
1408
|
-
configuration_hash.fetch(:custom_config)
|
|
1409
|
-
end
|
|
1410
|
-
end
|
|
1411
|
-
```
|
|
1412
|
-
|
|
1413
|
-
Then register the config in an initializer:
|
|
1414
|
-
|
|
1415
|
-
```ruby
|
|
1416
|
-
ActiveRecord::DatabaseConfigurations.register_db_config_handler do |env_name, name, url, config|
|
|
1417
|
-
next unless config.key?(:custom_config)
|
|
1418
|
-
CustomConfig.new(env_name, name, url, config)
|
|
1419
|
-
end
|
|
1420
|
-
```
|
|
1421
|
-
|
|
1422
|
-
When the application is booted, configuration hashes with the `:custom_config` key will be `CustomConfig` objects and respond to `sharded?`. Applications must handle the condition in which Active Record should use their custom handler.
|
|
1423
|
-
|
|
1424
|
-
*Eileen M. Uchitelle and John Crepezzi*
|
|
1425
|
-
|
|
1426
|
-
* `ActiveRecord::Base.serialize` no longer uses YAML by default.
|
|
1427
|
-
|
|
1428
|
-
YAML isn't particularly performant and can lead to security issues
|
|
1429
|
-
if not used carefully.
|
|
1430
|
-
|
|
1431
|
-
Unfortunately there isn't really any good serializers in Ruby's stdlib
|
|
1432
|
-
to replace it.
|
|
1433
|
-
|
|
1434
|
-
The obvious choice would be JSON, which is a fine format for this use case,
|
|
1435
|
-
however the JSON serializer in Ruby's stdlib isn't strict enough, as it fallback
|
|
1436
|
-
to casting unknown types to strings, which could lead to corrupted data.
|
|
1437
|
-
|
|
1438
|
-
Some third party JSON libraries like `Oj` have a suitable strict mode.
|
|
1439
|
-
|
|
1440
|
-
So it's preferable that users choose a serializer based on their own constraints.
|
|
1441
|
-
|
|
1442
|
-
The original default can be restored by setting `config.active_record.default_column_serializer = YAML`.
|
|
1443
|
-
|
|
1444
|
-
*Jean Boussier*
|
|
1445
|
-
|
|
1446
|
-
* `ActiveRecord::Base.serialize` signature changed.
|
|
1447
|
-
|
|
1448
|
-
Rather than a single positional argument that accepts two possible
|
|
1449
|
-
types of values, `serialize` now accepts two distinct keyword arguments.
|
|
1450
|
-
|
|
1451
|
-
Before:
|
|
1452
|
-
|
|
1453
|
-
```ruby
|
|
1454
|
-
serialize :content, JSON
|
|
1455
|
-
serialize :backtrace, Array
|
|
1456
|
-
```
|
|
1457
|
-
|
|
1458
|
-
After:
|
|
1459
|
-
|
|
1460
|
-
```ruby
|
|
1461
|
-
serialize :content, coder: JSON
|
|
1462
|
-
serialize :backtrace, type: Array
|
|
1463
|
-
```
|
|
1464
|
-
|
|
1465
|
-
*Jean Boussier*
|
|
1466
|
-
|
|
1467
|
-
* YAML columns use `YAML.safe_dump` if available.
|
|
1468
|
-
|
|
1469
|
-
As of `psych 5.1.0`, `YAML.safe_dump` can now apply the same permitted
|
|
1470
|
-
types restrictions than `YAML.safe_load`.
|
|
1471
|
-
|
|
1472
|
-
It's preferable to ensure the payload only use allowed types when we first
|
|
1473
|
-
try to serialize it, otherwise you may end up with invalid records in the
|
|
1474
|
-
database.
|
|
1475
|
-
|
|
1476
|
-
*Jean Boussier*
|
|
1477
|
-
|
|
1478
|
-
* `ActiveRecord::QueryLogs` better handle broken encoding.
|
|
1479
|
-
|
|
1480
|
-
It's not uncommon when building queries with BLOB fields to contain
|
|
1481
|
-
binary data. Unless the call carefully encode the string in ASCII-8BIT
|
|
1482
|
-
it generally end up being encoded in `UTF-8`, and `QueryLogs` would
|
|
1483
|
-
end up failing on it.
|
|
1484
|
-
|
|
1485
|
-
`ActiveRecord::QueryLogs` no longer depend on the query to be properly encoded.
|
|
1486
|
-
|
|
1487
|
-
*Jean Boussier*
|
|
1488
|
-
|
|
1489
|
-
* Fix a bug where `ActiveRecord::Generators::ModelGenerator` would not respect create_table_migration template overrides.
|
|
1490
|
-
|
|
1491
|
-
```
|
|
1492
|
-
rails g model create_books title:string content:text
|
|
1493
|
-
```
|
|
1494
|
-
will now read from the create_table_migration.rb.tt template in the following locations in order:
|
|
1495
|
-
```
|
|
1496
|
-
lib/templates/active_record/model/create_table_migration.rb
|
|
1497
|
-
lib/templates/active_record/migration/create_table_migration.rb
|
|
1498
|
-
```
|
|
1499
|
-
|
|
1500
|
-
*Spencer Neste*
|
|
1501
|
-
|
|
1502
|
-
* `ActiveRecord::Relation#explain` now accepts options.
|
|
1503
|
-
|
|
1504
|
-
For databases and adapters which support them (currently PostgreSQL
|
|
1505
|
-
and MySQL), options can be passed to `explain` to provide more
|
|
1506
|
-
detailed query plan analysis:
|
|
1507
|
-
|
|
1508
|
-
```ruby
|
|
1509
|
-
Customer.where(id: 1).joins(:orders).explain(:analyze, :verbose)
|
|
1510
|
-
```
|
|
1511
|
-
|
|
1512
|
-
*Reid Lynch*
|
|
1513
|
-
|
|
1514
|
-
* Multiple `Arel::Nodes::SqlLiteral` nodes can now be added together to
|
|
1515
|
-
form `Arel::Nodes::Fragments` nodes. This allows joining several pieces
|
|
1516
|
-
of SQL.
|
|
1517
|
-
|
|
1518
|
-
*Matthew Draper*, *Ole Friis*
|
|
1519
|
-
|
|
1520
|
-
* `ActiveRecord::Base#signed_id` raises if called on a new record.
|
|
1521
|
-
|
|
1522
|
-
Previously it would return an ID that was not usable, since it was based on `id = nil`.
|
|
1523
|
-
|
|
1524
|
-
*Alex Ghiculescu*
|
|
1525
|
-
|
|
1526
|
-
* Allow SQL warnings to be reported.
|
|
1527
|
-
|
|
1528
|
-
Active Record configs can be set to enable SQL warning reporting.
|
|
1529
|
-
|
|
1530
|
-
```ruby
|
|
1531
|
-
# Configure action to take when SQL query produces warning
|
|
1532
|
-
config.active_record.db_warnings_action = :raise
|
|
1533
|
-
|
|
1534
|
-
# Configure allowlist of warnings that should always be ignored
|
|
1535
|
-
config.active_record.db_warnings_ignore = [
|
|
1536
|
-
/Invalid utf8mb4 character string/,
|
|
1537
|
-
"An exact warning message",
|
|
1538
|
-
]
|
|
1539
|
-
```
|
|
1540
|
-
|
|
1541
|
-
This is supported for the MySQL and PostgreSQL adapters.
|
|
1542
|
-
|
|
1543
|
-
*Adrianna Chang*, *Paarth Madan*
|
|
1544
|
-
|
|
1545
|
-
* Add `#regroup` query method as a short-hand for `.unscope(:group).group(fields)`
|
|
1546
|
-
|
|
1547
|
-
Example:
|
|
1548
|
-
|
|
1549
|
-
```ruby
|
|
1550
|
-
Post.group(:title).regroup(:author)
|
|
1551
|
-
# SELECT `posts`.`*` FROM `posts` GROUP BY `posts`.`author`
|
|
1552
|
-
```
|
|
1553
|
-
|
|
1554
|
-
*Danielius Visockas*
|
|
1555
|
-
|
|
1556
|
-
* PostgreSQL adapter method `enable_extension` now allows parameter to be `[schema_name.]<extension_name>`
|
|
1557
|
-
if the extension must be installed on another schema.
|
|
1558
|
-
|
|
1559
|
-
Example: `enable_extension('heroku_ext.hstore')`
|
|
1560
|
-
|
|
1561
|
-
*Leonardo Luarte*
|
|
1562
|
-
|
|
1563
|
-
* Add `:include` option to `add_index`.
|
|
1564
|
-
|
|
1565
|
-
Add support for including non-key columns in indexes for PostgreSQL
|
|
1566
|
-
with the `INCLUDE` parameter.
|
|
1567
|
-
|
|
1568
|
-
```ruby
|
|
1569
|
-
add_index(:users, :email, include: [:id, :created_at])
|
|
1570
|
-
```
|
|
1571
|
-
|
|
1572
|
-
will result in:
|
|
1573
|
-
|
|
1574
|
-
```sql
|
|
1575
|
-
CREATE INDEX index_users_on_email USING btree (email) INCLUDE (id, created_at)
|
|
1576
|
-
```
|
|
1577
|
-
|
|
1578
|
-
*Steve Abrams*
|
|
1579
|
-
|
|
1580
|
-
* `ActiveRecord::Relation`’s `#any?`, `#none?`, and `#one?` methods take an optional pattern
|
|
1581
|
-
argument, more closely matching their `Enumerable` equivalents.
|
|
1582
|
-
|
|
1583
|
-
*George Claghorn*
|
|
1584
|
-
|
|
1585
|
-
* Add `ActiveRecord::Base.normalizes` for declaring attribute normalizations.
|
|
1586
|
-
|
|
1587
|
-
An attribute normalization is applied when the attribute is assigned or
|
|
1588
|
-
updated, and the normalized value will be persisted to the database. The
|
|
1589
|
-
normalization is also applied to the corresponding keyword argument of query
|
|
1590
|
-
methods, allowing records to be queried using unnormalized values.
|
|
1591
|
-
|
|
1592
|
-
For example:
|
|
1593
|
-
|
|
1594
|
-
```ruby
|
|
1595
|
-
class User < ActiveRecord::Base
|
|
1596
|
-
normalizes :email, with: -> email { email.strip.downcase }
|
|
1597
|
-
normalizes :phone, with: -> phone { phone.delete("^0-9").delete_prefix("1") }
|
|
1598
|
-
end
|
|
1599
|
-
|
|
1600
|
-
user = User.create(email: " CRUISE-CONTROL@EXAMPLE.COM\n")
|
|
1601
|
-
user.email # => "cruise-control@example.com"
|
|
1602
|
-
|
|
1603
|
-
user = User.find_by(email: "\tCRUISE-CONTROL@EXAMPLE.COM ")
|
|
1604
|
-
user.email # => "cruise-control@example.com"
|
|
1605
|
-
user.email_before_type_cast # => "cruise-control@example.com"
|
|
1606
|
-
|
|
1607
|
-
User.where(email: "\tCRUISE-CONTROL@EXAMPLE.COM ").count # => 1
|
|
1608
|
-
User.where(["email = ?", "\tCRUISE-CONTROL@EXAMPLE.COM "]).count # => 0
|
|
1609
|
-
|
|
1610
|
-
User.exists?(email: "\tCRUISE-CONTROL@EXAMPLE.COM ") # => true
|
|
1611
|
-
User.exists?(["email = ?", "\tCRUISE-CONTROL@EXAMPLE.COM "]) # => false
|
|
1612
|
-
|
|
1613
|
-
User.normalize_value_for(:phone, "+1 (555) 867-5309") # => "5558675309"
|
|
1614
|
-
```
|
|
1615
|
-
|
|
1616
|
-
*Jonathan Hefner*
|
|
1617
|
-
|
|
1618
|
-
* Hide changes to before_committed! callback behaviour behind flag.
|
|
1619
|
-
|
|
1620
|
-
In #46525, behavior around before_committed! callbacks was changed so that callbacks
|
|
1621
|
-
would run on every enrolled record in a transaction, not just the first copy of a record.
|
|
1622
|
-
This change in behavior is now controlled by a configuration option,
|
|
1623
|
-
`config.active_record.before_committed_on_all_records`. It will be enabled by default on Rails 7.1.
|
|
1624
|
-
|
|
1625
|
-
*Adrianna Chang*
|
|
1626
|
-
|
|
1627
|
-
* The `namespaced_controller` Query Log tag now matches the `controller` format
|
|
1628
|
-
|
|
1629
|
-
For example, a request processed by `NameSpaced::UsersController` will now log as:
|
|
1630
|
-
|
|
1631
|
-
```
|
|
1632
|
-
:controller # "users"
|
|
1633
|
-
:namespaced_controller # "name_spaced/users"
|
|
1634
|
-
```
|
|
1635
|
-
|
|
1636
|
-
*Alex Ghiculescu*
|
|
1637
|
-
|
|
1638
|
-
* Return only unique ids from ActiveRecord::Calculations#ids
|
|
1639
|
-
|
|
1640
|
-
Updated ActiveRecord::Calculations#ids to only return the unique ids of the base model
|
|
1641
|
-
when using eager_load, preload and includes.
|
|
1642
|
-
|
|
1643
|
-
```ruby
|
|
1644
|
-
Post.find_by(id: 1).comments.count
|
|
1645
|
-
# => 5
|
|
1646
|
-
Post.includes(:comments).where(id: 1).pluck(:id)
|
|
1647
|
-
# => [1, 1, 1, 1, 1]
|
|
1648
|
-
Post.includes(:comments).where(id: 1).ids
|
|
1649
|
-
# => [1]
|
|
1650
|
-
```
|
|
1651
|
-
|
|
1652
|
-
*Joshua Young*
|
|
1653
|
-
|
|
1654
|
-
* Stop using `LOWER()` for case-insensitive queries on `citext` columns
|
|
1655
|
-
|
|
1656
|
-
Previously, `LOWER()` was added for e.g. uniqueness validations with
|
|
1657
|
-
`case_sensitive: false`.
|
|
1658
|
-
It wasn't mentioned in the documentation that the index without `LOWER()`
|
|
1659
|
-
wouldn't be used in this case.
|
|
1660
|
-
|
|
1661
|
-
*Phil Pirozhkov*
|
|
1662
|
-
|
|
1663
|
-
* Extract `#sync_timezone_changes` method in AbstractMysqlAdapter to enable subclasses
|
|
1664
|
-
to sync database timezone changes without overriding `#raw_execute`.
|
|
1665
|
-
|
|
1666
|
-
*Adrianna Chang*, *Paarth Madan*
|
|
1667
|
-
|
|
1668
|
-
* Do not write additional new lines when dumping sql migration versions
|
|
1669
|
-
|
|
1670
|
-
This change updates the `insert_versions_sql` function so that the database insert string containing the current database migration versions does not end with two additional new lines.
|
|
1671
|
-
|
|
1672
|
-
*Misha Schwartz*
|
|
1673
|
-
|
|
1674
|
-
* Fix `composed_of` value freezing and duplication.
|
|
3
|
+
* No changes.
|
|
1675
4
|
|
|
1676
|
-
Previously composite values exhibited two confusing behaviors:
|
|
1677
5
|
|
|
1678
|
-
|
|
1679
|
-
columns.
|
|
1680
|
-
- When writing a compositve value the argument would be frozen, potentially confusing the caller.
|
|
6
|
+
## Rails 8.1.2 (January 08, 2026) ##
|
|
1681
7
|
|
|
1682
|
-
|
|
1683
|
-
assigned compositve values are duplicated and the duplicate is frozen (addressing the second issue).
|
|
8
|
+
* Fix counting cached queries in `ActiveRecord::RuntimeRegistry`.
|
|
1684
9
|
|
|
1685
|
-
*
|
|
10
|
+
*fatkodima*
|
|
1686
11
|
|
|
1687
|
-
* Fix
|
|
12
|
+
* Fix merging relations with arel equality predicates with null relations.
|
|
1688
13
|
|
|
1689
|
-
|
|
1690
|
-
comparison.
|
|
14
|
+
*fatkodima*
|
|
1691
15
|
|
|
1692
|
-
|
|
16
|
+
* Fix SQLite3 schema dump for non-autoincrement integer primary keys.
|
|
1693
17
|
|
|
1694
|
-
|
|
18
|
+
Previously, `schema.rb` should incorrectly restore that table with an auto incrementing
|
|
19
|
+
primary key.
|
|
1695
20
|
|
|
1696
|
-
*
|
|
21
|
+
*Chris Hasiński*
|
|
1697
22
|
|
|
1698
|
-
*
|
|
23
|
+
* Fix PostgreSQL `schema_search_path` not being reapplied after `reset!` or `reconnect!`.
|
|
1699
24
|
|
|
1700
|
-
|
|
1701
|
-
|
|
25
|
+
The `schema_search_path` configured in `database.yml` is now correctly
|
|
26
|
+
reapplied instead of falling back to PostgreSQL defaults.
|
|
1702
27
|
|
|
1703
|
-
|
|
1704
|
-
this approach. To avoid this problem, you need to use a foreign key.
|
|
28
|
+
*Tobias Egli*
|
|
1705
29
|
|
|
1706
|
-
|
|
30
|
+
* Restore the ability of enum to be foats.
|
|
1707
31
|
|
|
1708
32
|
```ruby
|
|
1709
|
-
|
|
33
|
+
enum :rating, { low: 0.0, medium: 0.5, high: 1.0 },
|
|
1710
34
|
```
|
|
1711
35
|
|
|
1712
|
-
|
|
36
|
+
In Rails 8.1.0, enum values are eagerly validated, and floats weren't expected.
|
|
1713
37
|
|
|
1714
|
-
*
|
|
38
|
+
*Said Kaldybaev*
|
|
1715
39
|
|
|
1716
|
-
*
|
|
1717
|
-
on the owner model (where `association` is the name of the association). This
|
|
1718
|
-
method unloads the cached associate record, if any, and causes the next access
|
|
1719
|
-
to query it from the database.
|
|
40
|
+
* Ensure batched preloaded associations accounts for klass when grouping to avoid issues with STI.
|
|
1720
41
|
|
|
1721
|
-
*
|
|
42
|
+
*zzak*, *Stjepan Hadjic*
|
|
1722
43
|
|
|
1723
|
-
*
|
|
44
|
+
* Fix `ActiveRecord::SoleRecordExceeded#record` to return the relation.
|
|
1724
45
|
|
|
1725
|
-
|
|
46
|
+
This was the case until Rails 7.2, but starting from 8.0 it
|
|
47
|
+
started mistakenly returning the model class.
|
|
1726
48
|
|
|
1727
|
-
*
|
|
49
|
+
*Jean Boussier*
|
|
1728
50
|
|
|
1729
|
-
|
|
1730
|
-
ability to create multiple records from an array of hashes, using the
|
|
1731
|
-
same notation as the `build` method on associations.
|
|
51
|
+
* Improve PostgreSQLAdapter resilience to Timeout.timeout.
|
|
1732
52
|
|
|
1733
|
-
|
|
53
|
+
Better handle asynchronous exceptions being thrown inside
|
|
54
|
+
the `reconnect!` method.
|
|
1734
55
|
|
|
1735
|
-
|
|
56
|
+
This may fixes some deep errors such as:
|
|
1736
57
|
|
|
1737
|
-
```
|
|
1738
|
-
|
|
1739
|
-
|
|
1740
|
-
end
|
|
1741
|
-
Post.create!(content: "cannot be updated")
|
|
1742
|
-
post.content # "cannot be updated"
|
|
1743
|
-
post.content = "something else" # => ActiveRecord::ReadonlyAttributeError
|
|
58
|
+
```
|
|
59
|
+
undefined method `key?' for nil:NilClass (NoMethodError)
|
|
60
|
+
if !type_map.key?(oid)
|
|
1744
61
|
```
|
|
1745
62
|
|
|
1746
|
-
|
|
63
|
+
*Jean Boussier*
|
|
1747
64
|
|
|
1748
|
-
|
|
65
|
+
* Fix structured events for Active Record was not being emitted.
|
|
1749
66
|
|
|
1750
|
-
|
|
1751
|
-
config.active_record.raise_on_assign_to_attr_readonly = true
|
|
1752
|
-
```
|
|
67
|
+
*Yuji Yaginuma*
|
|
1753
68
|
|
|
1754
|
-
|
|
69
|
+
* Fix `eager_load` when loading `has_many` assocations with composite primary keys.
|
|
1755
70
|
|
|
1756
|
-
|
|
71
|
+
This would result in some records being loaded multiple times.
|
|
1757
72
|
|
|
1758
|
-
*
|
|
73
|
+
*Martin-Alexander*
|
|
1759
74
|
|
|
1760
|
-
Added the ability to unscope preload and eager_load associations just like
|
|
1761
|
-
includes, joins, etc. See ActiveRecord::QueryMethods::VALID_UNSCOPING_VALUES
|
|
1762
|
-
for the full list of supported unscopable scopes.
|
|
1763
75
|
|
|
1764
|
-
|
|
1765
|
-
query.unscope(:eager_load, :preload).group(:id).select(:id)
|
|
1766
|
-
```
|
|
76
|
+
## Rails 8.1.1 (October 28, 2025) ##
|
|
1767
77
|
|
|
1768
|
-
|
|
78
|
+
* No changes.
|
|
1769
79
|
|
|
1770
|
-
* Add automatic filtering of encrypted attributes on inspect
|
|
1771
80
|
|
|
1772
|
-
|
|
81
|
+
## Rails 8.1.0 (October 22, 2025) ##
|
|
1773
82
|
|
|
1774
|
-
|
|
1775
|
-
config.active_record.encryption.add_to_filter_parameters = false
|
|
1776
|
-
```
|
|
83
|
+
* Fix SQLite3 data loss during table alterations with CASCADE foreign keys.
|
|
1777
84
|
|
|
1778
|
-
|
|
85
|
+
When altering a table in SQLite3 that is referenced by child tables with
|
|
86
|
+
`ON DELETE CASCADE` foreign keys, ActiveRecord would silently delete all
|
|
87
|
+
data from the child tables. This occurred because SQLite requires table
|
|
88
|
+
recreation for schema changes, and during this process the original table
|
|
89
|
+
is temporarily dropped, triggering CASCADE deletes on child tables.
|
|
1779
90
|
|
|
1780
|
-
|
|
91
|
+
The root cause was incorrect ordering of operations. The original code
|
|
92
|
+
wrapped `disable_referential_integrity` inside a transaction, but
|
|
93
|
+
`PRAGMA foreign_keys` cannot be modified inside a transaction in SQLite -
|
|
94
|
+
attempting to do so simply has no effect. This meant foreign keys remained
|
|
95
|
+
enabled during table recreation, causing CASCADE deletes to fire.
|
|
1781
96
|
|
|
1782
|
-
|
|
97
|
+
The fix reverses the order to follow the official SQLite 12-step ALTER TABLE
|
|
98
|
+
procedure: `disable_referential_integrity` now wraps the transaction instead
|
|
99
|
+
of being wrapped by it. This ensures foreign keys are properly disabled
|
|
100
|
+
before the transaction starts and re-enabled after it commits, preventing
|
|
101
|
+
CASCADE deletes while maintaining data integrity through atomic transactions.
|
|
1783
102
|
|
|
1784
|
-
|
|
1785
|
-
car = Car.create!
|
|
1786
|
-
car.touch
|
|
1787
|
-
car.lock_version #=> 1
|
|
1788
|
-
car.dup.lock_version #=> 0
|
|
1789
|
-
```
|
|
103
|
+
*Ruy Rocha*
|
|
1790
104
|
|
|
1791
|
-
|
|
105
|
+
* Add replicas to test database parallelization setup.
|
|
1792
106
|
|
|
1793
|
-
|
|
107
|
+
Setup and configuration of databases for parallel testing now includes replicas.
|
|
1794
108
|
|
|
1795
|
-
|
|
1796
|
-
|
|
1797
|
-
|
|
1798
|
-
|
|
109
|
+
This fixes an issue when using a replica database, database selector middleware,
|
|
110
|
+
and non-transactional tests, where integration tests running in parallel would select
|
|
111
|
+
the base test database, i.e. `db_test`, instead of the numbered parallel worker database,
|
|
112
|
+
i.e. `db_test_{n}`.
|
|
1799
113
|
|
|
1800
|
-
*
|
|
114
|
+
*Adam Maas*
|
|
1801
115
|
|
|
1802
|
-
*
|
|
116
|
+
* Support virtual (not persisted) generated columns on PostgreSQL 18+
|
|
1803
117
|
|
|
1804
|
-
|
|
1805
|
-
|
|
118
|
+
PostgreSQL 18 introduces virtual (not persisted) generated columns,
|
|
119
|
+
which are now the default unless the `stored: true` option is explicitly specified on PostgreSQL 18+.
|
|
1806
120
|
|
|
1807
121
|
```ruby
|
|
1808
|
-
|
|
1809
|
-
|
|
122
|
+
create_table :users do |t|
|
|
123
|
+
t.string :name
|
|
124
|
+
t.virtual :lower_name, type: :string, as: "LOWER(name)", stored: false
|
|
125
|
+
t.virtual :name_length, type: :integer, as: "LENGTH(name)"
|
|
1810
126
|
end
|
|
1811
|
-
developer = Developer.first.update(name: "Bob")
|
|
1812
|
-
# => UPDATE "developers" SET "name" = 'Bob' WHERE "developers"."company_id" = 1 AND "developers"."id" = 1
|
|
1813
127
|
```
|
|
1814
128
|
|
|
1815
|
-
*
|
|
1816
|
-
|
|
1817
|
-
* Adds `validate` to foreign keys and check constraints in schema.rb
|
|
1818
|
-
|
|
1819
|
-
Previously, `schema.rb` would not record if `validate: false` had been used when adding a foreign key or check
|
|
1820
|
-
constraint, so restoring a database from the schema could result in foreign keys or check constraints being
|
|
1821
|
-
incorrectly validated.
|
|
1822
|
-
|
|
1823
|
-
*Tommy Graves*
|
|
1824
|
-
|
|
1825
|
-
* Adapter `#execute` methods now accept an `allow_retry` option. When set to `true`, the SQL statement will be
|
|
1826
|
-
retried, up to the database's configured `connection_retries` value, upon encountering connection-related errors.
|
|
1827
|
-
|
|
1828
|
-
*Adrianna Chang*
|
|
1829
|
-
|
|
1830
|
-
* Only trigger `after_commit :destroy` callbacks when a database row is deleted.
|
|
129
|
+
*Yasuo Honda*
|
|
1831
130
|
|
|
1832
|
-
|
|
1833
|
-
when `destroy` is called multiple times on the same record.
|
|
131
|
+
* Optimize schema dumping to prevent duplicate file generation.
|
|
1834
132
|
|
|
1835
|
-
|
|
133
|
+
`ActiveRecord::Tasks::DatabaseTasks.dump_all` now tracks which schema files
|
|
134
|
+
have already been dumped and skips dumping the same file multiple times.
|
|
135
|
+
This improves performance when multiple database configurations share the
|
|
136
|
+
same schema dump path.
|
|
1836
137
|
|
|
1837
|
-
*
|
|
138
|
+
*Mikey Gough*, *Hartley McGuire*
|
|
1838
139
|
|
|
1839
|
-
|
|
1840
|
-
|
|
140
|
+
* Add structured events for Active Record:
|
|
141
|
+
- `active_record.strict_loading_violation`
|
|
142
|
+
- `active_record.sql`
|
|
1841
143
|
|
|
1842
|
-
|
|
1843
|
-
Post.encrypts :body
|
|
1844
|
-
|
|
1845
|
-
post = Post.create!(body: "Hello")
|
|
1846
|
-
post.ciphertext_for(:body)
|
|
1847
|
-
# => "{\"p\":\"abc..."
|
|
1848
|
-
|
|
1849
|
-
post.body = "World"
|
|
1850
|
-
post.ciphertext_for(:body)
|
|
1851
|
-
# => "World"
|
|
1852
|
-
```
|
|
1853
|
-
|
|
1854
|
-
Now, `ciphertext_for` will always return the ciphertext of encrypted
|
|
1855
|
-
attributes:
|
|
1856
|
-
|
|
1857
|
-
```ruby
|
|
1858
|
-
Post.encrypts :body
|
|
1859
|
-
|
|
1860
|
-
post = Post.create!(body: "Hello")
|
|
1861
|
-
post.ciphertext_for(:body)
|
|
1862
|
-
# => "{\"p\":\"abc..."
|
|
1863
|
-
|
|
1864
|
-
post.body = "World"
|
|
1865
|
-
post.ciphertext_for(:body)
|
|
1866
|
-
# => "{\"p\":\"xyz..."
|
|
1867
|
-
```
|
|
1868
|
-
|
|
1869
|
-
*Jonathan Hefner*
|
|
1870
|
-
|
|
1871
|
-
* Fix a bug where using groups and counts with long table names would return incorrect results.
|
|
1872
|
-
|
|
1873
|
-
*Shota Toguchi*, *Yusaku Ono*
|
|
1874
|
-
|
|
1875
|
-
* Fix encryption of column default values.
|
|
1876
|
-
|
|
1877
|
-
Previously, encrypted attributes that used column default values appeared to
|
|
1878
|
-
be encrypted on create, but were not:
|
|
144
|
+
*Gannon McGibbon*
|
|
1879
145
|
|
|
1880
|
-
|
|
1881
|
-
|
|
1882
|
-
|
|
1883
|
-
|
|
1884
|
-
|
|
1885
|
-
|
|
1886
|
-
|
|
1887
|
-
# => "{\"p\":\"abc..."
|
|
1888
|
-
book.reload.name_before_type_cast
|
|
1889
|
-
# => "<untitled>"
|
|
1890
|
-
```
|
|
146
|
+
* Add support for integer shard keys.
|
|
147
|
+
```ruby
|
|
148
|
+
# Now accepts symbols as shard keys.
|
|
149
|
+
ActiveRecord::Base.connects_to(shards: {
|
|
150
|
+
1: { writing: :primary_shard_one, reading: :primary_shard_one },
|
|
151
|
+
2: { writing: :primary_shard_two, reading: :primary_shard_two},
|
|
152
|
+
})
|
|
1891
153
|
|
|
1892
|
-
|
|
154
|
+
ActiveRecord::Base.connected_to(shard: 1) do
|
|
155
|
+
# ..
|
|
156
|
+
end
|
|
157
|
+
```
|
|
1893
158
|
|
|
1894
|
-
|
|
1895
|
-
Book.encrypts :name
|
|
1896
|
-
|
|
1897
|
-
book = Book.create!
|
|
1898
|
-
book.name
|
|
1899
|
-
# => "<untitled>"
|
|
1900
|
-
book.name_before_type_cast
|
|
1901
|
-
# => "{\"p\":\"abc..."
|
|
1902
|
-
book.reload.name_before_type_cast
|
|
1903
|
-
# => "{\"p\":\"abc..."
|
|
1904
|
-
```
|
|
159
|
+
*Nony Dutton*
|
|
1905
160
|
|
|
1906
|
-
|
|
161
|
+
* Add `ActiveRecord::Base.only_columns`
|
|
1907
162
|
|
|
1908
|
-
|
|
163
|
+
Similar in use case to `ignored_columns` but listing columns to consider rather than the ones
|
|
164
|
+
to ignore.
|
|
1909
165
|
|
|
1910
|
-
|
|
166
|
+
Can be useful when working with a legacy or shared database schema, or to make safe schema change
|
|
167
|
+
in two deploys rather than three.
|
|
1911
168
|
|
|
1912
|
-
*
|
|
169
|
+
*Anton Kandratski*
|
|
1913
170
|
|
|
1914
|
-
*
|
|
171
|
+
* Use `PG::Connection#close_prepared` (protocol level Close) to deallocate
|
|
172
|
+
prepared statements when available.
|
|
1915
173
|
|
|
1916
|
-
|
|
174
|
+
To enable its use, you must have pg >= 1.6.0, libpq >= 17, and a PostgreSQL
|
|
175
|
+
database version >= 17.
|
|
1917
176
|
|
|
1918
|
-
*
|
|
177
|
+
*Hartley McGuire*, *Andrew Jackson*
|
|
1919
178
|
|
|
1920
|
-
|
|
1921
|
-
instead of the option being silently ignored. Validation of the options will only be applied for new migrations
|
|
1922
|
-
that are created.
|
|
179
|
+
* Fix query cache for pinned connections in multi threaded transactional tests
|
|
1923
180
|
|
|
1924
|
-
|
|
181
|
+
When a pinned connection is used across separate threads, they now use a separate cache store
|
|
182
|
+
for each thread.
|
|
1925
183
|
|
|
1926
|
-
|
|
184
|
+
This improve accuracy of system tests, and any test using multiple threads.
|
|
1927
185
|
|
|
1928
|
-
|
|
186
|
+
*Heinrich Lee Yu*, *Jean Boussier*
|
|
1929
187
|
|
|
1930
|
-
|
|
188
|
+
* Fix time attribute dirty tracking with timezone conversions.
|
|
1931
189
|
|
|
1932
|
-
|
|
190
|
+
Time-only attributes now maintain a fixed date of 2000-01-01 during timezone conversions,
|
|
191
|
+
preventing them from being incorrectly marked as changed due to date shifts.
|
|
1933
192
|
|
|
1934
|
-
|
|
1935
|
-
|
|
193
|
+
This fixes an issue where time attributes would be marked as changed when setting the same time value
|
|
194
|
+
due to timezone conversion causing internal date shifts.
|
|
1936
195
|
|
|
1937
|
-
|
|
196
|
+
*Prateek Choudhary*
|
|
1938
197
|
|
|
1939
|
-
|
|
198
|
+
* Skip calling `PG::Connection#cancel` in `cancel_any_running_query`
|
|
199
|
+
when using libpq >= 18 with pg < 1.6.0, due to incompatibility.
|
|
200
|
+
Rollback still runs, but may take longer.
|
|
1940
201
|
|
|
1941
|
-
*
|
|
202
|
+
*Yasuo Honda*, *Lars Kanis*
|
|
1942
203
|
|
|
1943
|
-
|
|
1944
|
-
shows which table it concerns.
|
|
204
|
+
* Don't add `id_value` attribute alias when attribute/column with that name already exists.
|
|
1945
205
|
|
|
1946
|
-
*
|
|
206
|
+
*Rob Lewis*
|
|
1947
207
|
|
|
1948
|
-
*
|
|
208
|
+
* Remove deprecated `:unsigned_float` and `:unsigned_decimal` column methods for MySQL.
|
|
1949
209
|
|
|
1950
|
-
|
|
1951
|
-
default precision as regular datetime columns, resulting in the following
|
|
1952
|
-
being erroneously equivalent:
|
|
210
|
+
*Rafael Mendonça França*
|
|
1953
211
|
|
|
1954
|
-
|
|
1955
|
-
t.virtual :name, type: datetime, precision: nil, as: "expression"
|
|
212
|
+
* Remove deprecated `:retries` option for the SQLite3 adapter.
|
|
1956
213
|
|
|
1957
|
-
|
|
1958
|
-
datetime column default precisions match.
|
|
214
|
+
*Rafael Mendonça França*
|
|
1959
215
|
|
|
1960
|
-
|
|
216
|
+
* Introduce new database configuration options `keepalive`, `max_age`, and
|
|
217
|
+
`min_connections` -- and rename `pool` to `max_connections` to match.
|
|
1961
218
|
|
|
1962
|
-
|
|
219
|
+
There are no changes to default behavior, but these allow for more specific
|
|
220
|
+
control over pool behavior.
|
|
1963
221
|
|
|
1964
|
-
|
|
1965
|
-
that `#with_raw_connection` offers.
|
|
222
|
+
*Matthew Draper*, *Chris AtLee*, *Rachael Wright-Munn*
|
|
1966
223
|
|
|
1967
|
-
|
|
224
|
+
* Move `LIMIT` validation from query generation to when `limit()` is called.
|
|
1968
225
|
|
|
1969
|
-
*
|
|
226
|
+
*Hartley McGuire*, *Shuyang*
|
|
1970
227
|
|
|
1971
|
-
|
|
228
|
+
* Add `ActiveRecord::CheckViolation` error class for check constraint violations.
|
|
1972
229
|
|
|
1973
|
-
*
|
|
230
|
+
*Ryuta Kamizono*
|
|
1974
231
|
|
|
1975
|
-
|
|
1976
|
-
reconnects database connections to take into account a timeout limit. We won't retry
|
|
1977
|
-
a query if a given amount of time has elapsed since the query was first attempted. This
|
|
1978
|
-
value defaults to nil, meaning that all retryable queries are retried regardless of time elapsed,
|
|
1979
|
-
but this can be changed via the `retry_deadline` option in the database config.
|
|
232
|
+
* Add `ActiveRecord::ExclusionViolation` error class for exclusion constraint violations.
|
|
1980
233
|
|
|
1981
|
-
|
|
234
|
+
When an exclusion constraint is violated in PostgreSQL, the error will now be raised
|
|
235
|
+
as `ActiveRecord::ExclusionViolation` instead of the generic `ActiveRecord::StatementInvalid`,
|
|
236
|
+
making it easier to handle these specific constraint violations in application code.
|
|
1982
237
|
|
|
1983
|
-
|
|
238
|
+
This follows the same pattern as other constraint violation error classes like
|
|
239
|
+
`RecordNotUnique` for unique constraint violations and `InvalidForeignKey` for
|
|
240
|
+
foreign key constraint violations.
|
|
1984
241
|
|
|
1985
|
-
*
|
|
242
|
+
*Ryuta Kamizono*
|
|
1986
243
|
|
|
1987
|
-
*
|
|
244
|
+
* Attributes filtered by `filter_attributes` will now also be filtered by `filter_parameters`
|
|
245
|
+
so sensitive information is not leaked.
|
|
1988
246
|
|
|
1989
|
-
|
|
1990
|
-
option to VERIFY_CA or VERIFY_IDENTITY. This option was previously ignored
|
|
1991
|
-
for MySQL database tasks like creating a database and dumping the structure.
|
|
247
|
+
*Jill Klang*
|
|
1992
248
|
|
|
1993
|
-
|
|
249
|
+
* Add `connection.current_transaction.isolation` API to check current transaction's isolation level.
|
|
1994
250
|
|
|
1995
|
-
|
|
251
|
+
Returns the isolation level if it was explicitly set via the `isolation:` parameter
|
|
252
|
+
or through `ActiveRecord.with_transaction_isolation_level`, otherwise returns `nil`.
|
|
253
|
+
Nested transactions return the parent transaction's isolation level.
|
|
1996
254
|
|
|
1997
|
-
|
|
255
|
+
```ruby
|
|
256
|
+
# Returns nil when no transaction
|
|
257
|
+
User.connection.current_transaction.isolation # => nil
|
|
1998
258
|
|
|
1999
|
-
|
|
259
|
+
# Returns explicitly set isolation level
|
|
260
|
+
User.transaction(isolation: :serializable) do
|
|
261
|
+
User.connection.current_transaction.isolation # => :serializable
|
|
262
|
+
end
|
|
2000
263
|
|
|
2001
|
-
|
|
264
|
+
# Returns nil when isolation not explicitly set
|
|
265
|
+
User.transaction do
|
|
266
|
+
User.connection.current_transaction.isolation # => nil
|
|
267
|
+
end
|
|
2002
268
|
|
|
2003
|
-
|
|
2004
|
-
|
|
2005
|
-
|
|
2006
|
-
|
|
2007
|
-
|
|
2008
|
-
|
|
2009
|
-
```
|
|
2010
|
-
If you want to use a duration as an ISO 8601 string:
|
|
2011
|
-
```
|
|
2012
|
-
Record.where("duration = ?", 1.hour.iso8601)
|
|
269
|
+
# Nested transactions inherit parent's isolation
|
|
270
|
+
User.transaction(isolation: :read_committed) do
|
|
271
|
+
User.transaction do
|
|
272
|
+
User.connection.current_transaction.isolation # => :read_committed
|
|
273
|
+
end
|
|
274
|
+
end
|
|
2013
275
|
```
|
|
2014
276
|
|
|
2015
|
-
*
|
|
277
|
+
*Kir Shatrov*
|
|
2016
278
|
|
|
2017
|
-
*
|
|
279
|
+
* Fix `#merge` with `#or` or `#and` and a mixture of attributes and SQL strings resulting in an incorrect query.
|
|
2018
280
|
|
|
2019
281
|
```ruby
|
|
2020
|
-
|
|
2021
|
-
|
|
282
|
+
base = Comment.joins(:post).where(user_id: 1).where("recent = 1")
|
|
283
|
+
puts base.merge(base.where(draft: true).or(Post.where(archived: true))).to_sql
|
|
2022
284
|
```
|
|
2023
285
|
|
|
2024
|
-
|
|
2025
|
-
|
|
2026
|
-
* Move `ActiveRecord::SchemaMigration` to an independent object.
|
|
2027
|
-
|
|
2028
|
-
`ActiveRecord::SchemaMigration` no longer inherits from `ActiveRecord::Base` and is now an independent object that should be instantiated with a `connection`. This class is private and should not be used by applications directly. If you want to interact with the schema migrations table, please access it on the connection directly, for example: `ActiveRecord::Base.connection.schema_migration`.
|
|
2029
|
-
|
|
2030
|
-
*Eileen M. Uchitelle*
|
|
2031
|
-
|
|
2032
|
-
* Deprecate `all_connection_pools` and make `connection_pool_list` more explicit.
|
|
2033
|
-
|
|
2034
|
-
Following on #45924 `all_connection_pools` is now deprecated. `connection_pool_list` will either take an explicit role or applications can opt into the new behavior by passing `:all`.
|
|
2035
|
-
|
|
2036
|
-
*Eileen M. Uchitelle*
|
|
2037
|
-
|
|
2038
|
-
* Fix connection handler methods to operate on all pools.
|
|
2039
|
-
|
|
2040
|
-
`active_connections?`, `clear_active_connections!`, `clear_reloadable_connections!`, `clear_all_connections!`, and `flush_idle_connections!` now operate on all pools by default. Previously they would default to using the `current_role` or `:writing` role unless specified.
|
|
2041
|
-
|
|
2042
|
-
*Eileen M. Uchitelle*
|
|
2043
|
-
|
|
2044
|
-
|
|
2045
|
-
* Allow ActiveRecord::QueryMethods#select to receive hash values.
|
|
2046
|
-
|
|
2047
|
-
Currently, `select` might receive only raw sql and symbols to define columns and aliases to select.
|
|
2048
|
-
|
|
2049
|
-
With this change we can provide `hash` as argument, for example:
|
|
2050
|
-
|
|
2051
|
-
```ruby
|
|
2052
|
-
Post.joins(:comments).select(posts: [:id, :title, :created_at], comments: [:id, :body, :author_id])
|
|
2053
|
-
#=> "SELECT \"posts\".\"id\", \"posts\".\"title\", \"posts\".\"created_at\", \"comments\".\"id\", \"comments\".\"body\", \"comments\".\"author_id\"
|
|
2054
|
-
# FROM \"posts\" INNER JOIN \"comments\" ON \"comments\".\"post_id\" = \"posts\".\"id\""
|
|
286
|
+
Before:
|
|
2055
287
|
|
|
2056
|
-
|
|
2057
|
-
|
|
2058
|
-
|
|
288
|
+
```SQL
|
|
289
|
+
SELECT "comments".* FROM "comments"
|
|
290
|
+
INNER JOIN "posts" ON "posts"."id" = "comments"."post_id"
|
|
291
|
+
WHERE (recent = 1)
|
|
292
|
+
AND (
|
|
293
|
+
"comments"."user_id" = 1
|
|
294
|
+
AND (recent = 1)
|
|
295
|
+
AND "comments"."draft" = 1
|
|
296
|
+
OR "posts"."archived" = 1
|
|
297
|
+
)
|
|
2059
298
|
```
|
|
2060
|
-
*Oleksandr Holubenko*, *Josef Šimánek*, *Jean Boussier*
|
|
2061
299
|
|
|
2062
|
-
|
|
2063
|
-
|
|
2064
|
-
When source and target classes have a different set of attributes adapts
|
|
2065
|
-
attributes such that the extra attributes from target are added.
|
|
2066
|
-
|
|
2067
|
-
```ruby
|
|
2068
|
-
class Person < ApplicationRecord
|
|
2069
|
-
end
|
|
2070
|
-
|
|
2071
|
-
class WebUser < Person
|
|
2072
|
-
attribute :is_admin, :boolean
|
|
2073
|
-
after_initialize :set_admin
|
|
2074
|
-
|
|
2075
|
-
def set_admin
|
|
2076
|
-
write_attribute(:is_admin, email =~ /@ourcompany\.com$/)
|
|
2077
|
-
end
|
|
2078
|
-
end
|
|
300
|
+
After:
|
|
2079
301
|
|
|
2080
|
-
|
|
2081
|
-
|
|
2082
|
-
|
|
2083
|
-
|
|
2084
|
-
|
|
302
|
+
```SQL
|
|
303
|
+
SELECT "comments".* FROM "comments"
|
|
304
|
+
INNER JOIN "posts" ON "posts"."id" = "comments"."post_id"
|
|
305
|
+
WHERE "comments"."user_id" = 1
|
|
306
|
+
AND (recent = 1)
|
|
307
|
+
AND (
|
|
308
|
+
"comments"."user_id" = 1
|
|
309
|
+
AND (recent = 1)
|
|
310
|
+
AND "comments"."draft" = 1
|
|
311
|
+
OR "posts"."archived" = 1
|
|
312
|
+
)
|
|
2085
313
|
```
|
|
2086
314
|
|
|
2087
|
-
*
|
|
2088
|
-
|
|
2089
|
-
* Fix `ActiveRecord::QueryMethods#in_order_of` to include `nil`s, to match the
|
|
2090
|
-
behavior of `Enumerable#in_order_of`.
|
|
315
|
+
*Joshua Young*
|
|
2091
316
|
|
|
2092
|
-
|
|
2093
|
-
with `nil` titles, the same as `Post.all.to_a.in_order_of(:title, [nil, "foo"])`.
|
|
317
|
+
* Make schema dumper to account for `ActiveRecord.dump_schemas` when dumping in `:ruby` format.
|
|
2094
318
|
|
|
2095
319
|
*fatkodima*
|
|
2096
320
|
|
|
2097
|
-
*
|
|
321
|
+
* Add `:touch` option to `update_column`/`update_columns` methods.
|
|
2098
322
|
|
|
2099
323
|
```ruby
|
|
2100
|
-
|
|
2101
|
-
|
|
324
|
+
# Will update :updated_at/:updated_on alongside :nice column.
|
|
325
|
+
user.update_column(:nice, true, touch: true)
|
|
2102
326
|
|
|
2103
|
-
|
|
2104
|
-
|
|
2105
|
-
```sql
|
|
2106
|
-
ALTER TABLE "my_table" ADD COLUMN "created_at" datetime(6) NOT NULL, ADD COLUMN "updated_at" datetime(6) NOT NULL
|
|
327
|
+
# Will update :updated_at/:updated_on alongside :last_ip column
|
|
328
|
+
user.update_columns(last_ip: request.remote_ip, touch: true)
|
|
2107
329
|
```
|
|
2108
330
|
|
|
2109
|
-
*
|
|
2110
|
-
|
|
2111
|
-
* Add `drop_enum` migration command for PostgreSQL
|
|
331
|
+
*Dmitrii Ivliev*
|
|
2112
332
|
|
|
2113
|
-
|
|
2114
|
-
dropped columns that depend on it.
|
|
333
|
+
* Optimize Active Record batching further when using ranges.
|
|
2115
334
|
|
|
2116
|
-
|
|
335
|
+
Tested on a PostgreSQL table with 10M records and batches of 10k records, the generation
|
|
336
|
+
of relations for the 1000 batches was `4.8x` faster (`6.8s` vs. `1.4s`), used `900x`
|
|
337
|
+
less bandwidth (`180MB` vs. `0.2MB`) and allocated `45x` less memory (`490MB` vs. `11MB`).
|
|
2117
338
|
|
|
2118
|
-
*
|
|
339
|
+
*Maxime Réty*, *fatkodima*
|
|
2119
340
|
|
|
2120
|
-
|
|
2121
|
-
to true an error won't be raised if the check constraint doesn't exist.
|
|
341
|
+
* Include current character length in error messages for index and table name length validations.
|
|
2122
342
|
|
|
2123
|
-
*
|
|
343
|
+
*Joshua Young*
|
|
2124
344
|
|
|
2125
|
-
* `
|
|
345
|
+
* Add `rename_schema` method for PostgreSQL.
|
|
2126
346
|
|
|
2127
|
-
|
|
2128
|
-
duplicate records or failing with `ActiveRecord::RecordNotUnique` depending on
|
|
2129
|
-
whether a proper unicity constraint was set.
|
|
347
|
+
*T S Vallender*
|
|
2130
348
|
|
|
2131
|
-
|
|
2132
|
-
when the record is expected to exist most of the time, as INSERT require to send
|
|
2133
|
-
more data than SELECT and require more work from the database. Also on some
|
|
2134
|
-
databases it can actually consume a primary key increment which is undesirable.
|
|
349
|
+
* Implement support for deprecating associations:
|
|
2135
350
|
|
|
2136
|
-
|
|
2137
|
-
|
|
2138
|
-
|
|
2139
|
-
unicity constraints, if not, `find_or_create_by` will still lead to duplicated records.
|
|
351
|
+
```ruby
|
|
352
|
+
has_many :posts, deprecated: true
|
|
353
|
+
```
|
|
2140
354
|
|
|
2141
|
-
|
|
355
|
+
With that, Active Record will report any usage of the `posts` association.
|
|
2142
356
|
|
|
2143
|
-
|
|
357
|
+
Three reporting modes are supported (`:warn`, `:raise`, and `:notify`), and
|
|
358
|
+
backtraces can be enabled or disabled. Defaults are `:warn` mode and
|
|
359
|
+
disabled backtraces.
|
|
2144
360
|
|
|
2145
|
-
|
|
2146
|
-
support reconnect, but also expected to be passed an initial already-
|
|
2147
|
-
established connection.
|
|
361
|
+
Please, check the docs for further details.
|
|
2148
362
|
|
|
2149
|
-
|
|
2150
|
-
config hash, and only establish the real connection on demand.
|
|
363
|
+
*Xavier Noria*
|
|
2151
364
|
|
|
2152
|
-
|
|
365
|
+
* PostgreSQL adapter create DB now supports `locale_provider` and `locale`.
|
|
2153
366
|
|
|
2154
|
-
*
|
|
2155
|
-
checkout when possible.
|
|
367
|
+
*Bengt-Ove Hollaender*
|
|
2156
368
|
|
|
2157
|
-
|
|
2158
|
-
used directly to validate the connection, saving a network round-trip.
|
|
369
|
+
* Use ntuples to populate row_count instead of count for Postgres
|
|
2159
370
|
|
|
2160
|
-
*
|
|
371
|
+
*Jonathan Calvert*
|
|
2161
372
|
|
|
2162
|
-
*
|
|
2163
|
-
|
|
373
|
+
* Fix checking whether an unpersisted record is `include?`d in a strictly
|
|
374
|
+
loaded `has_and_belongs_to_many` association.
|
|
2164
375
|
|
|
2165
|
-
|
|
2166
|
-
not inside a transaction, it is safe to immediately reconnect to the
|
|
2167
|
-
database server and try again, so this is now the default behavior.
|
|
376
|
+
*Hartley McGuire*
|
|
2168
377
|
|
|
2169
|
-
|
|
2170
|
-
conservative about which queries are considered idempotent -- but if
|
|
2171
|
-
necessary it can be disabled by setting the `connection_retries` connection
|
|
2172
|
-
option to `0`.
|
|
378
|
+
* Add ability to change transaction isolation for all pools within a block.
|
|
2173
379
|
|
|
2174
|
-
|
|
380
|
+
This functionality is useful if your application needs to change the database
|
|
381
|
+
transaction isolation for a request or action.
|
|
2175
382
|
|
|
2176
|
-
|
|
383
|
+
Calling `ActiveRecord.with_transaction_isolation_level(level) {}` in an around filter or
|
|
384
|
+
middleware will set the transaction isolation for all pools accessed within the block,
|
|
385
|
+
but not for the pools that aren't.
|
|
2177
386
|
|
|
2178
|
-
|
|
387
|
+
This works with explicit and implicit transactions:
|
|
2179
388
|
|
|
2180
|
-
|
|
389
|
+
```ruby
|
|
390
|
+
ActiveRecord.with_transaction_isolation_level(:read_committed) do
|
|
391
|
+
Tag.transaction do # opens a transaction explicitly
|
|
392
|
+
Tag.create!
|
|
393
|
+
end
|
|
394
|
+
end
|
|
395
|
+
```
|
|
2181
396
|
|
|
2182
397
|
```ruby
|
|
2183
|
-
|
|
398
|
+
ActiveRecord.with_transaction_isolation_level(:read_committed) do
|
|
399
|
+
Tag.create! # opens a transaction implicitly
|
|
400
|
+
end
|
|
2184
401
|
```
|
|
2185
402
|
|
|
2186
|
-
|
|
403
|
+
*Eileen M. Uchitelle*
|
|
2187
404
|
|
|
2188
|
-
|
|
405
|
+
* Raise `ActiveRecord::MissingRequiredOrderError` when order dependent finder methods (e.g. `#first`, `#last`) are
|
|
406
|
+
called without `order` values on the relation, and the model does not have any order columns (`implicit_order_column`,
|
|
407
|
+
`query_constraints`, or `primary_key`) to fall back on.
|
|
2189
408
|
|
|
2190
|
-
|
|
409
|
+
This change will be introduced with a new framework default for Rails 8.1, and the current behavior of not raising
|
|
410
|
+
an error has been deprecated with the aim of removing the configuration option in Rails 8.2.
|
|
2191
411
|
|
|
2192
|
-
|
|
412
|
+
```ruby
|
|
413
|
+
config.active_record.raise_on_missing_required_finder_order_columns = true
|
|
414
|
+
```
|
|
2193
415
|
|
|
2194
|
-
*
|
|
416
|
+
*Joshua Young*
|
|
2195
417
|
|
|
2196
|
-
|
|
2197
|
-
and moves the configuration of `ActiveRecord::DestroyAssociationAsyncJob`
|
|
2198
|
-
from ActiveJob to ActiveRecord.
|
|
418
|
+
* `:class_name` is now invalid in polymorphic `belongs_to` associations.
|
|
2199
419
|
|
|
2200
|
-
|
|
2201
|
-
|
|
2202
|
-
`dependent: :destroy_async` is declared on an association but there is no job
|
|
2203
|
-
class configured.
|
|
420
|
+
Reason is `:class_name` does not make sense in those associations because
|
|
421
|
+
the class name of target records is dynamic and stored in the type column.
|
|
2204
422
|
|
|
2205
|
-
|
|
423
|
+
Existing polymorphic associations setting this option can just delete it.
|
|
424
|
+
While it did not raise, it had no effect anyway.
|
|
2206
425
|
|
|
2207
|
-
*
|
|
426
|
+
*Xavier Noria*
|
|
2208
427
|
|
|
2209
|
-
|
|
2210
|
-
which is wasteful and cause problem with YAML safe_load.
|
|
428
|
+
* Add support for multiple databases to `db:migrate:reset`.
|
|
2211
429
|
|
|
2212
|
-
*
|
|
430
|
+
*Joé Dupuis*
|
|
2213
431
|
|
|
2214
|
-
* Add `
|
|
432
|
+
* Add `affected_rows` to `ActiveRecord::Result`.
|
|
2215
433
|
|
|
2216
|
-
|
|
434
|
+
*Jenny Shen*
|
|
2217
435
|
|
|
2218
|
-
|
|
436
|
+
* Enable passing retryable SqlLiterals to `#where`.
|
|
2219
437
|
|
|
2220
|
-
|
|
2221
|
-
ActiveRecord::Base.time_zone_aware_types -= [:timestamptz]
|
|
2222
|
-
```
|
|
438
|
+
*Hartley McGuire*
|
|
2223
439
|
|
|
2224
|
-
|
|
440
|
+
* Set default for primary keys in `insert_all`/`upsert_all`.
|
|
2225
441
|
|
|
2226
|
-
|
|
442
|
+
Previously in Postgres, updating and inserting new records in one upsert wasn't possible
|
|
443
|
+
due to null primary key values. `nil` primary key values passed into `insert_all`/`upsert_all`
|
|
444
|
+
are now implicitly set to the default insert value specified by adapter.
|
|
2227
445
|
|
|
2228
|
-
|
|
2229
|
-
resetting a password. However, signed IDs cannot reflect record state, so
|
|
2230
|
-
if a token is intended to be single-use, it must be tracked in a database at
|
|
2231
|
-
least until it expires.
|
|
446
|
+
*Jenny Shen*
|
|
2232
447
|
|
|
2233
|
-
|
|
2234
|
-
using the token to fetch the record, the data from the token and the current
|
|
2235
|
-
data from the record will be compared. If the two do not match, the token
|
|
2236
|
-
will be treated as invalid, the same as if it had expired. For example:
|
|
448
|
+
* Add a load hook `active_record_database_configurations` for `ActiveRecord::DatabaseConfigurations`
|
|
2237
449
|
|
|
2238
|
-
|
|
2239
|
-
class User < ActiveRecord::Base
|
|
2240
|
-
has_secure_password
|
|
450
|
+
*Mike Dalessio*
|
|
2241
451
|
|
|
2242
|
-
|
|
2243
|
-
# A password's BCrypt salt changes when the password is updated.
|
|
2244
|
-
# By embedding (part of) the salt in a token, the token will
|
|
2245
|
-
# expire when the password is updated.
|
|
2246
|
-
BCrypt::Password.new(password_digest).salt[-10..]
|
|
2247
|
-
end
|
|
2248
|
-
end
|
|
452
|
+
* Use `TRUE` and `FALSE` for SQLite queries with boolean columns.
|
|
2249
453
|
|
|
2250
|
-
|
|
2251
|
-
token = user.generate_token_for(:password_reset)
|
|
454
|
+
*Hartley McGuire*
|
|
2252
455
|
|
|
2253
|
-
|
|
456
|
+
* Bump minimum supported SQLite to 3.23.0.
|
|
2254
457
|
|
|
2255
|
-
|
|
2256
|
-
User.find_by_token_for(:password_reset, token) # => nil
|
|
2257
|
-
```
|
|
458
|
+
*Hartley McGuire*
|
|
2258
459
|
|
|
2259
|
-
|
|
460
|
+
* Allow allocated Active Records to lookup associations.
|
|
2260
461
|
|
|
2261
|
-
|
|
462
|
+
Previously, the association cache isn't setup on allocated record objects, so association
|
|
463
|
+
lookups will crash. Test frameworks like mocha use allocate to check for stubbable instance
|
|
464
|
+
methods, which can trigger an association lookup.
|
|
2262
465
|
|
|
2263
|
-
|
|
2264
|
-
When iterating over the whole tables, this approach is not optimal as it loads unneeded ids and
|
|
2265
|
-
`IN` queries with lots of items are slow.
|
|
466
|
+
*Gannon McGibbon*
|
|
2266
467
|
|
|
2267
|
-
|
|
2268
|
-
several times faster. E.g., tested on a PostgreSQL table with 10 million records: querying (`253s` vs `30s`),
|
|
2269
|
-
updating (`288s` vs `124s`), deleting (`268s` vs `83s`).
|
|
468
|
+
* Encryption now supports `support_unencrypted_data: true` being set per-attribute.
|
|
2270
469
|
|
|
2271
|
-
|
|
2272
|
-
|
|
2273
|
-
of the records are archived), it makes sense to opt in to this approach:
|
|
470
|
+
Previously this only worked if `ActiveRecord::Encryption.config.support_unencrypted_data == true`.
|
|
471
|
+
Now, if the global config is turned off, you can still opt in for a specific attribute.
|
|
2274
472
|
|
|
2275
473
|
```ruby
|
|
2276
|
-
|
|
2277
|
-
|
|
474
|
+
# ActiveRecord::Encryption.config.support_unencrypted_data = true
|
|
475
|
+
class User < ActiveRecord::Base
|
|
476
|
+
encrypts :name, support_unencrypted_data: false # only supports encrypted data
|
|
477
|
+
encrypts :email # supports encrypted or unencrypted data
|
|
2278
478
|
end
|
|
2279
479
|
```
|
|
2280
480
|
|
|
2281
|
-
See #45414 for more details.
|
|
2282
|
-
|
|
2283
|
-
*fatkodima*
|
|
2284
|
-
|
|
2285
|
-
* `.with` query method added. Construct common table expressions with ease and get `ActiveRecord::Relation` back.
|
|
2286
|
-
|
|
2287
481
|
```ruby
|
|
2288
|
-
|
|
2289
|
-
|
|
2290
|
-
|
|
482
|
+
# ActiveRecord::Encryption.config.support_unencrypted_data = false
|
|
483
|
+
class User < ActiveRecord::Base
|
|
484
|
+
encrypts :name, support_unencrypted_data: true # supports encrypted or unencrypted data
|
|
485
|
+
encrypts :email # only supports encrypted data
|
|
486
|
+
end
|
|
2291
487
|
```
|
|
2292
488
|
|
|
2293
|
-
*
|
|
2294
|
-
|
|
2295
|
-
* Don't establish a new connection if an identical pool exists already.
|
|
2296
|
-
|
|
2297
|
-
Previously, if `establish_connection` was called on a class that already had an established connection, the existing connection would be removed regardless of whether it was the same config. Now if a pool is found with the same values as the new connection, the existing connection will be returned instead of creating a new one.
|
|
489
|
+
*Alex Ghiculescu*
|
|
2298
490
|
|
|
2299
|
-
|
|
491
|
+
* Model generator no longer needs a database connection to validate column types.
|
|
2300
492
|
|
|
2301
|
-
*
|
|
493
|
+
*Mike Dalessio*
|
|
2302
494
|
|
|
2303
|
-
*
|
|
495
|
+
* Allow signed ID verifiers to be configurable via `Rails.application.message_verifiers`
|
|
2304
496
|
|
|
2305
|
-
|
|
497
|
+
Prior to this change, the primary way to configure signed ID verifiers was
|
|
498
|
+
to set `signed_id_verifier` on each model class:
|
|
2306
499
|
|
|
2307
|
-
|
|
500
|
+
```ruby
|
|
501
|
+
Post.signed_id_verifier = ActiveSupport::MessageVerifier.new(...)
|
|
502
|
+
Comment.signed_id_verifier = ActiveSupport::MessageVerifier.new(...)
|
|
503
|
+
```
|
|
2308
504
|
|
|
2309
|
-
|
|
2310
|
-
|
|
2311
|
-
|
|
2312
|
-
# In app config
|
|
2313
|
-
ActiveRecord::Base.time_zone_aware_types += [:tsrange]
|
|
2314
|
-
# In the code times are properly converted to app time zone
|
|
2315
|
-
Shop.create!(open_hours: [Time.current..8.hour.from_now])
|
|
2316
|
-
```
|
|
505
|
+
And if the developer did not set `signed_id_verifier`, a verifier would be
|
|
506
|
+
instantiated with a secret derived from `secret_key_base` and the following
|
|
507
|
+
options:
|
|
2317
508
|
|
|
2318
|
-
|
|
509
|
+
```ruby
|
|
510
|
+
{ digest: "SHA256", serializer: JSON, url_safe: true }
|
|
511
|
+
```
|
|
2319
512
|
|
|
2320
|
-
|
|
513
|
+
Thus it was cumbersome to rotate configuration for all verifiers.
|
|
2321
514
|
|
|
2322
|
-
|
|
2323
|
-
|
|
2324
|
-
to
|
|
515
|
+
This change defines a new Rails config: [`config.active_record.use_legacy_signed_id_verifier`][].
|
|
516
|
+
The default value is `:generate_and_verify`, which preserves the previous
|
|
517
|
+
behavior. However, when set to `:verify`, signed ID verifiers will use
|
|
518
|
+
configuration from `Rails.application.message_verifiers` (specifically,
|
|
519
|
+
`Rails.application.message_verifiers["active_record/signed_id"]`) to
|
|
520
|
+
generate and verify signed IDs, but will also verify signed IDs using the
|
|
521
|
+
older configuration.
|
|
2325
522
|
|
|
2326
|
-
|
|
523
|
+
To avoid complication, the new behavior only applies when `signed_id_verifier_secret`
|
|
524
|
+
is not set on a model class or any of its ancestors. Additionally,
|
|
525
|
+
`signed_id_verifier_secret` is now deprecated. If you are currently setting
|
|
526
|
+
`signed_id_verifier_secret` on a model class, you can set `signed_id_verifier`
|
|
527
|
+
instead:
|
|
2327
528
|
|
|
2328
|
-
|
|
529
|
+
```ruby
|
|
530
|
+
# BEFORE
|
|
531
|
+
Post.signed_id_verifier_secret = "my secret"
|
|
2329
532
|
|
|
2330
|
-
|
|
2331
|
-
|
|
533
|
+
# AFTER
|
|
534
|
+
Post.signed_id_verifier = ActiveSupport::MessageVerifier.new("my secret", digest: "SHA256", serializer: JSON, url_safe: true)
|
|
535
|
+
```
|
|
2332
536
|
|
|
2333
|
-
|
|
2334
|
-
|
|
2335
|
-
|
|
2336
|
-
<<: *default
|
|
2337
|
-
database: storage/development.sqlite3
|
|
2338
|
-
foreign_keys: false
|
|
2339
|
-
```
|
|
537
|
+
To ease migration, `signed_id_verifier` has also been changed to behave as a
|
|
538
|
+
`class_attribute` (i.e. inheritable), but _only when `signed_id_verifier_secret`
|
|
539
|
+
is not set_:
|
|
2340
540
|
|
|
2341
|
-
|
|
541
|
+
```ruby
|
|
542
|
+
# BEFORE
|
|
543
|
+
ActiveRecord::Base.signed_id_verifier = ActiveSupport::MessageVerifier.new(...)
|
|
544
|
+
Post.signed_id_verifier == ActiveRecord::Base.signed_id_verifier # => false
|
|
2342
545
|
|
|
2343
|
-
|
|
546
|
+
# AFTER
|
|
547
|
+
ActiveRecord::Base.signed_id_verifier = ActiveSupport::MessageVerifier.new(...)
|
|
548
|
+
Post.signed_id_verifier == ActiveRecord::Base.signed_id_verifier # => true
|
|
2344
549
|
|
|
2345
|
-
|
|
2346
|
-
|
|
550
|
+
Post.signed_id_verifier_secret = "my secret" # => deprecation warning
|
|
551
|
+
Post.signed_id_verifier == ActiveRecord::Base.signed_id_verifier # => false
|
|
552
|
+
```
|
|
2347
553
|
|
|
2348
|
-
|
|
554
|
+
Note, however, that it is recommended to eventually migrate from
|
|
555
|
+
model-specific verifiers to a unified configuration managed by
|
|
556
|
+
`Rails.application.message_verifiers`. `ActiveSupport::MessageVerifier#rotate`
|
|
557
|
+
can facilitate that transition. For example:
|
|
2349
558
|
|
|
2350
|
-
|
|
2351
|
-
|
|
559
|
+
```ruby
|
|
560
|
+
# BEFORE
|
|
561
|
+
# Generate and verify signed Post IDs using Post-specific configuration
|
|
562
|
+
Post.signed_id_verifier = ActiveSupport::MessageVerifier.new("post secret", ...)
|
|
563
|
+
|
|
564
|
+
# AFTER
|
|
565
|
+
# Generate and verify signed Post IDs using the unified configuration
|
|
566
|
+
Post.signed_id_verifier = Post.signed_id_verifier.dup
|
|
567
|
+
# Fall back to Post-specific configuration when verifying signed IDs
|
|
568
|
+
Post.signed_id_verifier.rotate("post secret", ...)
|
|
569
|
+
```
|
|
2352
570
|
|
|
2353
|
-
|
|
2354
|
-
transaction, Rails runs `after_commit` or `after_rollback` callbacks for
|
|
2355
|
-
only one of them. `config.active_record.run_commit_callbacks_on_first_saved_instances_in_transaction`
|
|
2356
|
-
was added to specify how Rails chooses which instance receives the
|
|
2357
|
-
callbacks. The framework defaults were changed to use the new logic.
|
|
571
|
+
[`config.active_record.use_legacy_signed_id_verifier`]: https://guides.rubyonrails.org/v8.1/configuring.html#config-active-record-use-legacy-signed-id-verifier
|
|
2358
572
|
|
|
2359
|
-
|
|
2360
|
-
is `true`, transactional callbacks are run on the first instance to save,
|
|
2361
|
-
even though its instance state may be stale.
|
|
573
|
+
*Ali Sepehri*, *Jonathan Hefner*
|
|
2362
574
|
|
|
2363
|
-
|
|
2364
|
-
7.1, transactional callbacks are run on the instances with the freshest
|
|
2365
|
-
instance state. Those instances are chosen as follows:
|
|
575
|
+
* Prepend `extra_flags` in postgres' `structure_load`
|
|
2366
576
|
|
|
2367
|
-
|
|
2368
|
-
|
|
2369
|
-
|
|
2370
|
-
- If the record is created within the transaction, then updated by
|
|
2371
|
-
another instance, `after_create_commit` callbacks will be run on the
|
|
2372
|
-
second instance. This is instead of the `after_update_commit`
|
|
2373
|
-
callbacks that would naively be run based on that instance’s state.
|
|
2374
|
-
- If the record is destroyed within the transaction, then
|
|
2375
|
-
`after_destroy_commit` callbacks will be fired on the last destroyed
|
|
2376
|
-
instance, even if a stale instance subsequently performed an update
|
|
2377
|
-
(which will have affected 0 rows).
|
|
577
|
+
When specifying `structure_load_flags` with a postgres adapter, the flags
|
|
578
|
+
were appended to the default flags, instead of prepended.
|
|
579
|
+
This caused issues with flags not being taken into account by postgres.
|
|
2378
580
|
|
|
2379
|
-
*
|
|
581
|
+
*Alice Loeser*
|
|
2380
582
|
|
|
2381
|
-
*
|
|
583
|
+
* Allow bypassing primary key/constraint addition in `implicit_order_column`
|
|
2382
584
|
|
|
2383
|
-
|
|
585
|
+
When specifying multiple columns in an array for `implicit_order_column`, adding
|
|
586
|
+
`nil` as the last element will prevent appending the primary key to order
|
|
587
|
+
conditions. This allows more precise control of indexes used by
|
|
588
|
+
generated queries. It should be noted that this feature does introduce the risk
|
|
589
|
+
of API misbehavior if the specified columns are not fully unique.
|
|
2384
590
|
|
|
2385
|
-
|
|
2386
|
-
It first tries to consider double-quoted strings as identifier names, but if they don't exist
|
|
2387
|
-
it then considers them as string literals. Because of this, typos can silently go unnoticed.
|
|
2388
|
-
For example, it is possible to create an index for a non existing column.
|
|
2389
|
-
See [SQLite documentation](https://www.sqlite.org/quirks.html#double_quoted_string_literals_are_accepted) for more details.
|
|
591
|
+
*Issy Long*
|
|
2390
592
|
|
|
2391
|
-
|
|
593
|
+
* Allow setting the `schema_format` via database configuration.
|
|
2392
594
|
|
|
2393
|
-
```ruby
|
|
2394
|
-
# config/application.rb
|
|
2395
|
-
config.active_record.sqlite3_adapter_strict_strings_by_default = false
|
|
2396
595
|
```
|
|
596
|
+
primary:
|
|
597
|
+
schema_format: ruby
|
|
598
|
+
```
|
|
599
|
+
|
|
600
|
+
Useful for multi-database setups when apps require different formats per-database.
|
|
2397
601
|
|
|
2398
|
-
|
|
602
|
+
*T S Vallender*
|
|
2399
603
|
|
|
2400
|
-
|
|
604
|
+
* Support disabling indexes for MySQL v8.0.0+ and MariaDB v10.6.0+
|
|
2401
605
|
|
|
2402
|
-
|
|
606
|
+
MySQL 8.0.0 added an option to disable indexes from being used by the query
|
|
607
|
+
optimizer by making them "invisible". This allows the index to still be maintained
|
|
608
|
+
and updated but no queries will be permitted to use it. This can be useful for adding
|
|
609
|
+
new invisible indexes or making existing indexes invisible before dropping them
|
|
610
|
+
to ensure queries are not negatively affected.
|
|
611
|
+
See https://dev.mysql.com/blog-archive/mysql-8-0-invisible-indexes/ for more details.
|
|
2403
612
|
|
|
2404
|
-
|
|
2405
|
-
|
|
2406
|
-
still reported a stale cache_version.
|
|
613
|
+
MariaDB 10.6.0 also added support for this feature by allowing indexes to be "ignored"
|
|
614
|
+
in queries. See https://mariadb.com/kb/en/ignored-indexes/ for more details.
|
|
2407
615
|
|
|
2408
|
-
|
|
616
|
+
Active Record now supports this option for MySQL 8.0.0+ and MariaDB 10.6.0+ for
|
|
617
|
+
index creation and alteration where the new index option `enabled: true/false` can be
|
|
618
|
+
passed to column and index methods as below:
|
|
2409
619
|
|
|
2410
620
|
```ruby
|
|
2411
|
-
|
|
2412
|
-
|
|
621
|
+
add_index :users, :email, enabled: false
|
|
622
|
+
enable_index :users, :email
|
|
623
|
+
add_column :users, :dob, :string, index: { enabled: false }
|
|
2413
624
|
|
|
2414
|
-
|
|
625
|
+
change_table :users do |t|
|
|
626
|
+
t.index :name, enabled: false
|
|
627
|
+
t.index :dob
|
|
628
|
+
t.disable_index :dob
|
|
629
|
+
t.column :username, :string, index: { enabled: false }
|
|
630
|
+
t.references :account, index: { enabled: false }
|
|
631
|
+
end
|
|
2415
632
|
|
|
2416
|
-
|
|
2417
|
-
|
|
2418
|
-
|
|
633
|
+
create_table :users do |t|
|
|
634
|
+
t.string :name, index: { enabled: false }
|
|
635
|
+
t.string :email
|
|
636
|
+
t.index :email, enabled: false
|
|
637
|
+
end
|
|
2419
638
|
```
|
|
2420
639
|
|
|
2421
|
-
|
|
640
|
+
*Merve Taner*
|
|
2422
641
|
|
|
2423
|
-
|
|
642
|
+
* Respect `implicit_order_column` in `ActiveRecord::Relation#reverse_order`.
|
|
2424
643
|
|
|
2425
|
-
*
|
|
644
|
+
*Joshua Young*
|
|
2426
645
|
|
|
2427
|
-
|
|
2428
|
-
add_exclusion_constraint :invoices, "daterange(start_date, end_date) WITH &&", using: :gist, name: "invoices_date_overlap"
|
|
2429
|
-
remove_exclusion_constraint :invoices, name: "invoices_date_overlap"
|
|
2430
|
-
```
|
|
646
|
+
* Add column types to `ActiveRecord::Result` for SQLite3.
|
|
2431
647
|
|
|
2432
|
-
|
|
648
|
+
*Andrew Kane*
|
|
2433
649
|
|
|
2434
|
-
|
|
650
|
+
* Raise `ActiveRecord::ReadOnlyError` when pessimistically locking with a readonly role.
|
|
2435
651
|
|
|
2436
|
-
*
|
|
652
|
+
*Joshua Young*
|
|
2437
653
|
|
|
2438
|
-
|
|
2439
|
-
treat it as truthy and make your column nullable. This could be surprising, so now
|
|
2440
|
-
the input must be either `true` or `false`.
|
|
654
|
+
* Fix using the `SQLite3Adapter`'s `dbconsole` method outside of a Rails application.
|
|
2441
655
|
|
|
2442
|
-
|
|
2443
|
-
change_column_null :table, :column, true # good
|
|
2444
|
-
change_column_null :table, :column, false # good
|
|
2445
|
-
change_column_null :table, :column, from: true, to: false # raises (previously this made the column nullable)
|
|
2446
|
-
```
|
|
656
|
+
*Hartley McGuire*
|
|
2447
657
|
|
|
2448
|
-
|
|
658
|
+
* Fix migrating multiple databases with `ActiveRecord::PendingMigration` action.
|
|
2449
659
|
|
|
2450
|
-
*
|
|
660
|
+
*Gannon McGibbon*
|
|
2451
661
|
|
|
2452
|
-
|
|
662
|
+
* Enable automatically retrying idempotent association queries on connection
|
|
663
|
+
errors.
|
|
2453
664
|
|
|
2454
|
-
*
|
|
665
|
+
*Hartley McGuire*
|
|
2455
666
|
|
|
2456
|
-
*
|
|
667
|
+
* Add `allow_retry` to `sql.active_record` instrumentation.
|
|
2457
668
|
|
|
2458
|
-
|
|
669
|
+
This enables identifying queries which queries are automatically retryable on connection errors.
|
|
2459
670
|
|
|
2460
|
-
*
|
|
671
|
+
*Hartley McGuire*
|
|
2461
672
|
|
|
2462
|
-
|
|
673
|
+
* Better support UPDATE with JOIN for Postgresql and SQLite3
|
|
2463
674
|
|
|
2464
|
-
|
|
675
|
+
Previously when generating update queries with one or more JOIN clauses,
|
|
676
|
+
Active Record would use a sub query which would prevent to reference the joined
|
|
677
|
+
tables in the `SET` clause, for instance:
|
|
2465
678
|
|
|
2466
679
|
```ruby
|
|
2467
|
-
|
|
2468
|
-
connection.indexes(:users).select(&:valid?)
|
|
680
|
+
Comment.joins(:post).update_all("title = posts.title")
|
|
2469
681
|
```
|
|
2470
682
|
|
|
2471
|
-
|
|
2472
|
-
|
|
2473
|
-
* Fix eager loading for models without primary keys.
|
|
683
|
+
This is now supported as long as the relation doesn't also use a `LIMIT`, `ORDER` or
|
|
684
|
+
`GROUP BY` clause. This was supported by the MySQL adapter for a long time.
|
|
2474
685
|
|
|
2475
|
-
*
|
|
2476
|
-
|
|
2477
|
-
* Avoid validating a unique field if it has not changed and is backed by a unique index.
|
|
2478
|
-
|
|
2479
|
-
Previously, when saving a record, Active Record will perform an extra query to check for the
|
|
2480
|
-
uniqueness of each attribute having a `uniqueness` validation, even if that attribute hasn't changed.
|
|
2481
|
-
If the database has the corresponding unique index, then this validation can never fail for persisted
|
|
2482
|
-
records, and we could safely skip it.
|
|
686
|
+
*Jean Boussier*
|
|
2483
687
|
|
|
2484
|
-
|
|
688
|
+
* Introduce a before-fork hook in `ActiveSupport::Testing::Parallelization` to clear existing
|
|
689
|
+
connections, to avoid fork-safety issues with the mysql2 adapter.
|
|
2485
690
|
|
|
2486
|
-
|
|
691
|
+
Fixes #41776
|
|
2487
692
|
|
|
2488
|
-
|
|
693
|
+
*Mike Dalessio*, *Donal McBreen*
|
|
2489
694
|
|
|
2490
|
-
|
|
695
|
+
* PoolConfig no longer keeps a reference to the connection class.
|
|
2491
696
|
|
|
2492
|
-
|
|
697
|
+
Keeping a reference to the class caused subtle issues when combined with reloading in
|
|
698
|
+
development. Fixes #54343.
|
|
2493
699
|
|
|
2494
|
-
*
|
|
700
|
+
*Mike Dalessio*
|
|
2495
701
|
|
|
2496
|
-
*
|
|
702
|
+
* Fix SQL notifications sometimes not sent when using async queries.
|
|
2497
703
|
|
|
2498
704
|
```ruby
|
|
2499
|
-
|
|
705
|
+
Post.async_count
|
|
706
|
+
ActiveSupport::Notifications.subscribed(->(*) { "Will never reach here" }) do
|
|
707
|
+
Post.count
|
|
708
|
+
end
|
|
2500
709
|
```
|
|
2501
710
|
|
|
2502
|
-
|
|
711
|
+
In rare circumstances and under the right race condition, Active Support notifications
|
|
712
|
+
would no longer be dispatched after using an asynchronous query.
|
|
713
|
+
This is now fixed.
|
|
2503
714
|
|
|
2504
|
-
*
|
|
715
|
+
*Edouard Chin*
|
|
2505
716
|
|
|
2506
|
-
|
|
2507
|
-
contradiction, such as `User.where(id: []).count`. We no longer perform a
|
|
2508
|
-
query in that scenario.
|
|
717
|
+
* Eliminate queries loading dumped schema cache on Postgres
|
|
2509
718
|
|
|
2510
|
-
|
|
2511
|
-
|
|
719
|
+
Improve resiliency by avoiding needing to open a database connection to load the
|
|
720
|
+
type map while defining attribute methods at boot when a schema cache file is
|
|
721
|
+
configured on PostgreSQL databases.
|
|
2512
722
|
|
|
2513
|
-
*
|
|
723
|
+
*James Coleman*
|
|
2514
724
|
|
|
2515
|
-
*
|
|
725
|
+
* `ActiveRecord::Coder::JSON` can be instantiated
|
|
2516
726
|
|
|
727
|
+
Options can now be passed to `ActiveRecord::Coder::JSON` when instantiating the coder. This allows:
|
|
2517
728
|
```ruby
|
|
2518
|
-
|
|
2519
|
-
alias_attribute :title, :name
|
|
2520
|
-
end
|
|
2521
|
-
|
|
2522
|
-
Book.insert_all [{ title: "Remote", author_id: 1 }], returning: :title
|
|
729
|
+
serialize :config, coder: ActiveRecord::Coder::JSON.new(symbolize_names: true)
|
|
2523
730
|
```
|
|
731
|
+
*matthaigh27*
|
|
2524
732
|
|
|
2525
|
-
|
|
733
|
+
* Deprecate using `insert_all`/`upsert_all` with unpersisted records in associations.
|
|
2526
734
|
|
|
2527
|
-
|
|
735
|
+
Using these methods on associations containing unpersisted records will now
|
|
736
|
+
show a deprecation warning, as the unpersisted records will be lost after
|
|
737
|
+
the operation.
|
|
2528
738
|
|
|
2529
|
-
|
|
2530
|
-
It will encrypt those values at creation time. Before, it would raise an
|
|
2531
|
-
error unless `config.active_record.encryption.support_unencrypted_data` was true.
|
|
739
|
+
*Nick Schwaderer*
|
|
2532
740
|
|
|
2533
|
-
|
|
741
|
+
* Make column name optional for `index_exists?`.
|
|
2534
742
|
|
|
2535
|
-
|
|
743
|
+
This aligns well with `remove_index` signature as well, where
|
|
744
|
+
index name doesn't need to be derived from the column names.
|
|
2536
745
|
|
|
2537
|
-
|
|
2538
|
-
but you can now change it to anything you like. If the method returns true,
|
|
2539
|
-
`Resolver#read` gets called meaning the request could be served by the
|
|
2540
|
-
replica database.
|
|
746
|
+
*Ali Ismayiliov*
|
|
2541
747
|
|
|
2542
|
-
|
|
748
|
+
* Change the payload name of `sql.active_record` notification for eager
|
|
749
|
+
loading from "SQL" to "#{model.name} Eager Load".
|
|
2543
750
|
|
|
2544
|
-
*
|
|
751
|
+
*zzak*
|
|
2545
752
|
|
|
2546
|
-
|
|
753
|
+
* Enable automatically retrying idempotent `#exists?` queries on connection
|
|
754
|
+
errors.
|
|
2547
755
|
|
|
2548
|
-
*
|
|
756
|
+
*Hartley McGuire*, *classidied*
|
|
2549
757
|
|
|
2550
|
-
|
|
2551
|
-
way to dump a schema to both SQL and Ruby formats. You can now do this with
|
|
2552
|
-
an environment variable. For example:
|
|
758
|
+
* Deprecate usage of unsupported methods in conjunction with `update_all`:
|
|
2553
759
|
|
|
2554
|
-
|
|
2555
|
-
|
|
2556
|
-
|
|
760
|
+
`update_all` will now print a deprecation message if a query includes either `WITH`,
|
|
761
|
+
`WITH RECURSIVE` or `DISTINCT` statements. Those were never supported and were ignored
|
|
762
|
+
when generating the SQL query.
|
|
2557
763
|
|
|
2558
|
-
|
|
764
|
+
An error will be raised in a future Rails release. This behavior will be consistent
|
|
765
|
+
with `delete_all` which currently raises an error for unsupported statements.
|
|
2559
766
|
|
|
2560
|
-
*
|
|
767
|
+
*Edouard Chin*
|
|
2561
768
|
|
|
2562
|
-
|
|
2563
|
-
if using `db:schema:load`. Further more the function name would be
|
|
2564
|
-
added as string content when saving new records.
|
|
769
|
+
* The table columns inside `schema.rb` are now sorted alphabetically.
|
|
2565
770
|
|
|
2566
|
-
|
|
771
|
+
Previously they'd be sorted by creation order, which can cause merge conflicts when two
|
|
772
|
+
branches modify the same table concurrently.
|
|
2567
773
|
|
|
2568
|
-
*
|
|
774
|
+
*John Duff*
|
|
2569
775
|
|
|
2570
|
-
|
|
2571
|
-
be destroyed in a single background job by the `dependent: :destroy_async`
|
|
2572
|
-
association option. By default, the current behavior will remain the same:
|
|
2573
|
-
when a parent record is destroyed, all dependent records will be destroyed
|
|
2574
|
-
in a single background job. If the number of dependent records is greater
|
|
2575
|
-
than this configuration, the records will be destroyed in multiple
|
|
2576
|
-
background jobs.
|
|
776
|
+
* Introduce versions formatter for the schema dumper.
|
|
2577
777
|
|
|
2578
|
-
|
|
778
|
+
It is now possible to override how schema dumper formats versions information inside the
|
|
779
|
+
`structure.sql` file. Currently, the versions are simply sorted in the decreasing order.
|
|
780
|
+
Within large teams, this can potentially cause many merge conflicts near the top of the list.
|
|
2579
781
|
|
|
2580
|
-
|
|
782
|
+
Now, the custom formatter can be provided with a custom sorting logic (e.g. by hash values
|
|
783
|
+
of the versions), which can greatly reduce the number of conflicts.
|
|
2581
784
|
|
|
2582
785
|
*fatkodima*
|
|
2583
786
|
|
|
2584
|
-
*
|
|
2585
|
-
|
|
2586
|
-
This broke some apps that used custom schema comments. If you don't want
|
|
2587
|
-
comments in your structure dump, you can use:
|
|
2588
|
-
|
|
2589
|
-
```ruby
|
|
2590
|
-
ActiveRecord::Tasks::DatabaseTasks.structure_dump_flags = ['--no-comments']
|
|
2591
|
-
```
|
|
787
|
+
* Serialized attributes can now be marked as comparable.
|
|
2592
788
|
|
|
2593
|
-
|
|
789
|
+
A not rare issue when working with serialized attributes is that the serialized representation of an object
|
|
790
|
+
can change over time. Either because you are migrating from one serializer to the other (e.g. YAML to JSON or to msgpack),
|
|
791
|
+
or because the serializer used subtly changed its output.
|
|
2594
792
|
|
|
2595
|
-
|
|
793
|
+
One example is libyaml that used to have some extra trailing whitespaces, and recently fixed that.
|
|
794
|
+
When this sorts of thing happen, you end up with lots of records that report being changed even though
|
|
795
|
+
they aren't, which in the best case leads to a lot more writes to the database and in the worst case lead to nasty bugs.
|
|
2596
796
|
|
|
2597
|
-
|
|
2598
|
-
|
|
2599
|
-
test suites.
|
|
797
|
+
The solution is to instead compare the deserialized representation of the object, however Active Record
|
|
798
|
+
can't assume the deserialized object has a working `==` method. Hence why this new functionality is opt-in.
|
|
2600
799
|
|
|
2601
|
-
|
|
2602
|
-
|
|
800
|
+
```ruby
|
|
801
|
+
serialize :config, type: Hash, coder: JSON, comparable: true
|
|
802
|
+
```
|
|
2603
803
|
|
|
2604
804
|
*Jean Boussier*
|
|
2605
805
|
|
|
2606
|
-
* Fix
|
|
2607
|
-
|
|
2608
|
-
`config.active_record.destroy_association_async_job` should allow
|
|
2609
|
-
applications to specify the job that will be used to destroy associated
|
|
2610
|
-
records in the background for `has_many` associations with the
|
|
2611
|
-
`dependent: :destroy_async` option. Previously, that was ignored, which
|
|
2612
|
-
meant the default `ActiveRecord::DestroyAssociationAsyncJob` always
|
|
2613
|
-
destroyed records in the background.
|
|
2614
|
-
|
|
2615
|
-
*Nick Holden*
|
|
2616
|
-
|
|
2617
|
-
* Fix `change_column_comment` to preserve column's AUTO_INCREMENT in the MySQL adapter
|
|
2618
|
-
|
|
2619
|
-
*fatkodima*
|
|
2620
|
-
|
|
2621
|
-
* Fix quoting of `ActiveSupport::Duration` and `Rational` numbers in the MySQL adapter.
|
|
2622
|
-
|
|
2623
|
-
*Kevin McPhillips*
|
|
2624
|
-
|
|
2625
|
-
* Allow column name with COLLATE (e.g., title COLLATE "C") as safe SQL string
|
|
2626
|
-
|
|
2627
|
-
*Shugo Maeda*
|
|
2628
|
-
|
|
2629
|
-
* Permit underscores in the VERSION argument to database rake tasks.
|
|
2630
|
-
|
|
2631
|
-
*Eddie Lebow*
|
|
2632
|
-
|
|
2633
|
-
* Reversed the order of `INSERT` statements in `structure.sql` dumps
|
|
2634
|
-
|
|
2635
|
-
This should decrease the likelihood of merge conflicts. New migrations
|
|
2636
|
-
will now be added at the top of the list.
|
|
2637
|
-
|
|
2638
|
-
For existing apps, there will be a large diff the next time `structure.sql`
|
|
2639
|
-
is generated.
|
|
2640
|
-
|
|
2641
|
-
*Alex Ghiculescu*, *Matt Larraz*
|
|
2642
|
-
|
|
2643
|
-
* Fix PG.connect keyword arguments deprecation warning on ruby 2.7
|
|
2644
|
-
|
|
2645
|
-
Fixes #44307.
|
|
2646
|
-
|
|
2647
|
-
*Nikita Vasilevsky*
|
|
2648
|
-
|
|
2649
|
-
* Fix dropping DB connections after serialization failures and deadlocks.
|
|
2650
|
-
|
|
2651
|
-
Prior to 6.1.4, serialization failures and deadlocks caused rollbacks to be
|
|
2652
|
-
issued for both real transactions and savepoints. This breaks MySQL which
|
|
2653
|
-
disallows rollbacks of savepoints following a deadlock.
|
|
2654
|
-
|
|
2655
|
-
6.1.4 removed these rollbacks, for both transactions and savepoints, causing
|
|
2656
|
-
the DB connection to be left in an unknown state and thus discarded.
|
|
806
|
+
* Fix MySQL default functions getting dropped when changing a column's nullability.
|
|
2657
807
|
|
|
2658
|
-
|
|
808
|
+
*Bastian Bartmann*
|
|
2659
809
|
|
|
2660
|
-
|
|
810
|
+
* SQLite extensions can be configured in `config/database.yml`.
|
|
2661
811
|
|
|
2662
|
-
|
|
812
|
+
The database configuration option `extensions:` allows an application to load SQLite extensions
|
|
813
|
+
when using `sqlite3` >= v2.4.0. The array members may be filesystem paths or the names of
|
|
814
|
+
modules that respond to `.to_path`:
|
|
2663
815
|
|
|
2664
|
-
|
|
2665
|
-
|
|
2666
|
-
|
|
2667
|
-
|
|
2668
|
-
|
|
816
|
+
``` yaml
|
|
817
|
+
development:
|
|
818
|
+
adapter: sqlite3
|
|
819
|
+
extensions:
|
|
820
|
+
- SQLean::UUID # module name responding to `.to_path`
|
|
821
|
+
- .sqlpkg/nalgeon/crypto/crypto.so # or a filesystem path
|
|
822
|
+
- <%= AppExtensions.location %> # or ruby code returning a path
|
|
823
|
+
```
|
|
2669
824
|
|
|
2670
|
-
*
|
|
825
|
+
*Mike Dalessio*
|
|
2671
826
|
|
|
2672
|
-
|
|
827
|
+
* `ActiveRecord::Middleware::ShardSelector` supports granular database connection switching.
|
|
2673
828
|
|
|
2674
|
-
|
|
2675
|
-
|
|
2676
|
-
|
|
829
|
+
A new configuration option, `class_name:`, is introduced to
|
|
830
|
+
`config.active_record.shard_selector` to allow an application to specify the abstract connection
|
|
831
|
+
class to be switched by the shard selection middleware. The default class is
|
|
832
|
+
`ActiveRecord::Base`.
|
|
2677
833
|
|
|
2678
|
-
|
|
2679
|
-
|
|
2680
|
-
end
|
|
2681
|
-
end
|
|
834
|
+
For example, this configuration tells `ShardSelector` to switch shards using
|
|
835
|
+
`AnimalsRecord.connected_to`:
|
|
2682
836
|
|
|
2683
|
-
topic = Topic.create(title: "Test Title")
|
|
2684
|
-
# #=> #<Topic title: "Test Title">
|
|
2685
|
-
topic.update_attribute!(:title, "Another Title")
|
|
2686
|
-
# #=> #<Topic title: "Another Title">
|
|
2687
|
-
topic.update_attribute!(:title, "abort")
|
|
2688
|
-
# raises ActiveRecord::RecordNotSaved
|
|
2689
837
|
```
|
|
2690
|
-
|
|
2691
|
-
*Drew Tempelmeyer*
|
|
2692
|
-
|
|
2693
|
-
* Avoid loading every record in `ActiveRecord::Relation#pretty_print`
|
|
2694
|
-
|
|
2695
|
-
```ruby
|
|
2696
|
-
# Before
|
|
2697
|
-
pp Foo.all # Loads the whole table.
|
|
2698
|
-
|
|
2699
|
-
# After
|
|
2700
|
-
pp Foo.all # Shows 10 items and an ellipsis.
|
|
838
|
+
config.active_record.shard_selector = { class_name: "AnimalsRecord" }
|
|
2701
839
|
```
|
|
2702
840
|
|
|
2703
|
-
*
|
|
841
|
+
*Mike Dalessio*
|
|
2704
842
|
|
|
2705
|
-
*
|
|
843
|
+
* Reset relations after `insert_all`/`upsert_all`.
|
|
2706
844
|
|
|
2707
|
-
|
|
845
|
+
Bulk insert/upsert methods will now call `reset` if used on a relation, matching the behavior of `update_all`.
|
|
2708
846
|
|
|
2709
|
-
*
|
|
847
|
+
*Milo Winningham*
|
|
2710
848
|
|
|
2711
|
-
*
|
|
849
|
+
* Use `_N` as a parallel tests databases suffixes
|
|
2712
850
|
|
|
2713
|
-
|
|
851
|
+
Peviously, `-N` was used as a suffix. This can cause problems for RDBMSes
|
|
852
|
+
which do not support dashes in database names.
|
|
2714
853
|
|
|
2715
|
-
|
|
2716
|
-
add_index(:settings, "(data->'property')", using: :gin, name: :index_settings_data_property)
|
|
2717
|
-
```
|
|
854
|
+
*fatkodima*
|
|
2718
855
|
|
|
2719
|
-
|
|
856
|
+
* Remember when a database connection has recently been verified (for
|
|
857
|
+
two seconds, by default), to avoid repeated reverifications during a
|
|
858
|
+
single request.
|
|
2720
859
|
|
|
2721
|
-
|
|
860
|
+
This should recreate a similar rate of verification as in Rails 7.1,
|
|
861
|
+
where connections are leased for the duration of a request, and thus
|
|
862
|
+
only verified once.
|
|
2722
863
|
|
|
2723
|
-
*
|
|
864
|
+
*Matthew Draper*
|
|
2724
865
|
|
|
2725
|
-
|
|
866
|
+
* Allow to reset cache counters for multiple records.
|
|
2726
867
|
|
|
2727
|
-
|
|
868
|
+
```
|
|
869
|
+
Aircraft.reset_counters([1, 2, 3], :wheels_count)
|
|
870
|
+
```
|
|
2728
871
|
|
|
2729
|
-
|
|
872
|
+
It produces much fewer queries compared to the custom implementation using looping over ids.
|
|
873
|
+
Previously: `O(ids.size * counters.size)` queries, now: `O(ids.size + counters.size)` queries.
|
|
2730
874
|
|
|
2731
|
-
|
|
2732
|
-
bigint instead of integer for the SQLite Adapter.
|
|
875
|
+
*fatkodima*
|
|
2733
876
|
|
|
2734
|
-
|
|
877
|
+
* Add `affected_rows` to `sql.active_record` Notification.
|
|
2735
878
|
|
|
2736
|
-
*
|
|
879
|
+
*Hartley McGuire*
|
|
2737
880
|
|
|
2738
|
-
|
|
2739
|
-
Post.in_order_of(:id, []).to_a
|
|
2740
|
-
```
|
|
881
|
+
* Fix `sum` when performing a grouped calculation.
|
|
2741
882
|
|
|
2742
|
-
|
|
2743
|
-
value is still ordered.
|
|
883
|
+
`User.group(:friendly).sum` no longer worked. This is fixed.
|
|
2744
884
|
|
|
2745
|
-
*
|
|
885
|
+
*Edouard Chin*
|
|
2746
886
|
|
|
2747
|
-
*
|
|
887
|
+
* Add support for enabling or disabling transactional tests per database.
|
|
2748
888
|
|
|
2749
|
-
|
|
2750
|
-
|
|
889
|
+
A test class can now override the default `use_transactional_tests` setting
|
|
890
|
+
for individual databases, which can be useful if some databases need their
|
|
891
|
+
current state to be accessible to an external process while tests are running.
|
|
2751
892
|
|
|
2752
893
|
```ruby
|
|
2753
|
-
class
|
|
2754
|
-
self.
|
|
894
|
+
class MostlyTransactionalTest < ActiveSupport::TestCase
|
|
895
|
+
self.use_transactional_tests = true
|
|
896
|
+
skip_transactional_tests_for_database :shared
|
|
2755
897
|
end
|
|
2756
|
-
Test.group(:id).count
|
|
2757
|
-
# syntax error at or near "1" (ActiveRecord::StatementInvalid)
|
|
2758
|
-
# LINE 1: SELECT COUNT(*) AS count_all, "1abc"."id" AS 1abc_id FROM "1...
|
|
2759
898
|
```
|
|
2760
899
|
|
|
2761
|
-
*
|
|
2762
|
-
|
|
2763
|
-
* Add `authenticate_by` when using `has_secure_password`.
|
|
900
|
+
*Matthew Cheetham*, *Morgan Mareve*
|
|
2764
901
|
|
|
2765
|
-
|
|
2766
|
-
returns early when a user with a matching email is not found:
|
|
2767
|
-
|
|
2768
|
-
```ruby
|
|
2769
|
-
User.find_by(email: "...")&.authenticate("...")
|
|
2770
|
-
```
|
|
902
|
+
* Cast `query_cache` value when using URL configuration.
|
|
2771
903
|
|
|
2772
|
-
|
|
2773
|
-
attacker can determine if a user account with a given email exists. After
|
|
2774
|
-
confirming that an account exists, the attacker can try passwords associated
|
|
2775
|
-
with that email address from other leaked databases, in case the user
|
|
2776
|
-
re-used a password across multiple sites (a common practice). Additionally,
|
|
2777
|
-
knowing an account email address allows the attacker to attempt a targeted
|
|
2778
|
-
phishing ("spear phishing") attack.
|
|
904
|
+
*zzak*
|
|
2779
905
|
|
|
2780
|
-
|
|
2781
|
-
time regardless of whether a user with a matching email is found:
|
|
906
|
+
* NULLS NOT DISTINCT works with UNIQUE CONSTRAINT as well as UNIQUE INDEX.
|
|
2782
907
|
|
|
2783
|
-
|
|
2784
|
-
User.authenticate_by(email: "...", password: "...")
|
|
2785
|
-
```
|
|
908
|
+
*Ryuta Kamizono*
|
|
2786
909
|
|
|
2787
|
-
|
|
910
|
+
* `PG::UnableToSend: no connection to the server` is now retryable as a connection-related exception
|
|
2788
911
|
|
|
912
|
+
*Kazuma Watanabe*
|
|
2789
913
|
|
|
2790
|
-
Please check [
|
|
914
|
+
Please check [8-0-stable](https://github.com/rails/rails/blob/8-0-stable/activerecord/CHANGELOG.md) for previous changes.
|