activerecord 7.1.3.3 → 7.2.0.beta1
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 +507 -2128
- data/README.rdoc +15 -15
- data/examples/performance.rb +2 -2
- data/lib/active_record/association_relation.rb +1 -1
- data/lib/active_record/associations/alias_tracker.rb +25 -19
- data/lib/active_record/associations/association.rb +9 -8
- data/lib/active_record/associations/belongs_to_association.rb +18 -11
- data/lib/active_record/associations/belongs_to_polymorphic_association.rb +3 -2
- data/lib/active_record/associations/builder/belongs_to.rb +1 -0
- 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/collection_association.rb +4 -2
- data/lib/active_record/associations/collection_proxy.rb +14 -1
- data/lib/active_record/associations/has_many_association.rb +3 -3
- data/lib/active_record/associations/has_one_association.rb +2 -2
- data/lib/active_record/associations/join_dependency/join_association.rb +27 -25
- data/lib/active_record/associations/join_dependency.rb +5 -7
- data/lib/active_record/associations/nested_error.rb +47 -0
- data/lib/active_record/associations/preloader/association.rb +2 -1
- data/lib/active_record/associations/preloader/branch.rb +7 -1
- data/lib/active_record/associations/preloader/through_association.rb +1 -3
- data/lib/active_record/associations/singular_association.rb +6 -0
- data/lib/active_record/associations/through_association.rb +1 -1
- data/lib/active_record/associations.rb +34 -11
- data/lib/active_record/attribute_assignment.rb +1 -11
- data/lib/active_record/attribute_methods/composite_primary_key.rb +84 -0
- data/lib/active_record/attribute_methods/dirty.rb +1 -1
- data/lib/active_record/attribute_methods/primary_key.rb +23 -55
- data/lib/active_record/attribute_methods/read.rb +1 -13
- data/lib/active_record/attribute_methods/serialization.rb +4 -24
- data/lib/active_record/attribute_methods/time_zone_conversion.rb +7 -6
- data/lib/active_record/attribute_methods.rb +87 -58
- data/lib/active_record/attributes.rb +55 -42
- data/lib/active_record/autosave_association.rb +14 -30
- data/lib/active_record/base.rb +2 -3
- data/lib/active_record/connection_adapters/abstract/connection_handler.rb +24 -107
- data/lib/active_record/connection_adapters/abstract/connection_pool/reaper.rb +1 -0
- data/lib/active_record/connection_adapters/abstract/connection_pool.rb +248 -58
- data/lib/active_record/connection_adapters/abstract/database_statements.rb +35 -18
- data/lib/active_record/connection_adapters/abstract/query_cache.rb +160 -75
- data/lib/active_record/connection_adapters/abstract/quoting.rb +65 -91
- data/lib/active_record/connection_adapters/abstract/schema_definitions.rb +1 -1
- data/lib/active_record/connection_adapters/abstract/schema_statements.rb +22 -9
- data/lib/active_record/connection_adapters/abstract/transaction.rb +60 -57
- data/lib/active_record/connection_adapters/abstract_adapter.rb +32 -61
- data/lib/active_record/connection_adapters/abstract_mysql_adapter.rb +69 -19
- data/lib/active_record/connection_adapters/mysql/database_statements.rb +9 -1
- data/lib/active_record/connection_adapters/mysql/quoting.rb +43 -48
- data/lib/active_record/connection_adapters/mysql/schema_statements.rb +7 -0
- data/lib/active_record/connection_adapters/mysql2/database_statements.rb +11 -5
- data/lib/active_record/connection_adapters/mysql2_adapter.rb +20 -32
- data/lib/active_record/connection_adapters/pool_config.rb +7 -6
- data/lib/active_record/connection_adapters/postgresql/database_statements.rb +27 -4
- data/lib/active_record/connection_adapters/postgresql/oid/cidr.rb +6 -0
- data/lib/active_record/connection_adapters/postgresql/oid/interval.rb +1 -1
- data/lib/active_record/connection_adapters/postgresql/oid/uuid.rb +14 -4
- data/lib/active_record/connection_adapters/postgresql/quoting.rb +58 -58
- data/lib/active_record/connection_adapters/postgresql/schema_definitions.rb +20 -0
- data/lib/active_record/connection_adapters/postgresql/schema_statements.rb +16 -12
- data/lib/active_record/connection_adapters/postgresql_adapter.rb +26 -21
- data/lib/active_record/connection_adapters/schema_cache.rb +123 -128
- data/lib/active_record/connection_adapters/sqlite3/column.rb +14 -1
- data/lib/active_record/connection_adapters/sqlite3/database_statements.rb +10 -6
- data/lib/active_record/connection_adapters/sqlite3/quoting.rb +44 -46
- data/lib/active_record/connection_adapters/sqlite3/schema_creation.rb +22 -0
- data/lib/active_record/connection_adapters/sqlite3/schema_definitions.rb +13 -0
- data/lib/active_record/connection_adapters/sqlite3/schema_dumper.rb +16 -0
- data/lib/active_record/connection_adapters/sqlite3/schema_statements.rb +25 -2
- data/lib/active_record/connection_adapters/sqlite3_adapter.rb +109 -77
- data/lib/active_record/connection_adapters/trilogy/database_statements.rb +12 -6
- data/lib/active_record/connection_adapters/trilogy_adapter.rb +32 -65
- data/lib/active_record/connection_adapters.rb +121 -0
- data/lib/active_record/connection_handling.rb +56 -41
- data/lib/active_record/core.rb +59 -38
- data/lib/active_record/counter_cache.rb +23 -10
- data/lib/active_record/database_configurations/connection_url_resolver.rb +7 -2
- data/lib/active_record/database_configurations/database_config.rb +15 -4
- data/lib/active_record/database_configurations/hash_config.rb +44 -36
- data/lib/active_record/database_configurations/url_config.rb +20 -1
- data/lib/active_record/database_configurations.rb +1 -1
- data/lib/active_record/delegated_type.rb +30 -6
- data/lib/active_record/destroy_association_async_job.rb +1 -1
- data/lib/active_record/dynamic_matchers.rb +2 -2
- data/lib/active_record/encryption/encryptable_record.rb +2 -2
- data/lib/active_record/encryption/encrypted_attribute_type.rb +24 -4
- data/lib/active_record/encryption/encryptor.rb +17 -2
- 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 +8 -4
- data/lib/active_record/enum.rb +11 -2
- data/lib/active_record/errors.rb +16 -11
- data/lib/active_record/explain.rb +13 -24
- data/lib/active_record/fixtures.rb +37 -31
- data/lib/active_record/future_result.rb +17 -4
- data/lib/active_record/gem_version.rb +3 -3
- data/lib/active_record/inheritance.rb +4 -2
- data/lib/active_record/insert_all.rb +18 -15
- data/lib/active_record/integration.rb +4 -1
- data/lib/active_record/internal_metadata.rb +48 -34
- data/lib/active_record/locking/optimistic.rb +8 -7
- data/lib/active_record/log_subscriber.rb +0 -21
- data/lib/active_record/marshalling.rb +1 -1
- data/lib/active_record/message_pack.rb +2 -2
- data/lib/active_record/migration/command_recorder.rb +2 -3
- data/lib/active_record/migration/compatibility.rb +11 -3
- 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 +85 -76
- data/lib/active_record/model_schema.rb +34 -69
- data/lib/active_record/nested_attributes.rb +11 -3
- data/lib/active_record/normalization.rb +3 -7
- data/lib/active_record/persistence.rb +32 -354
- data/lib/active_record/query_cache.rb +18 -6
- data/lib/active_record/query_logs.rb +15 -0
- data/lib/active_record/query_logs_formatter.rb +1 -1
- data/lib/active_record/querying.rb +21 -9
- data/lib/active_record/railtie.rb +52 -64
- data/lib/active_record/railties/controller_runtime.rb +13 -4
- data/lib/active_record/railties/databases.rake +41 -44
- data/lib/active_record/reflection.rb +98 -37
- data/lib/active_record/relation/batches/batch_enumerator.rb +15 -2
- data/lib/active_record/relation/batches.rb +3 -3
- data/lib/active_record/relation/calculations.rb +94 -61
- data/lib/active_record/relation/delegation.rb +8 -11
- data/lib/active_record/relation/finder_methods.rb +16 -2
- data/lib/active_record/relation/merger.rb +4 -6
- data/lib/active_record/relation/predicate_builder/array_handler.rb +2 -2
- data/lib/active_record/relation/predicate_builder/polymorphic_array_value.rb +6 -1
- data/lib/active_record/relation/predicate_builder.rb +3 -3
- data/lib/active_record/relation/query_methods.rb +196 -43
- data/lib/active_record/relation/record_fetch_warning.rb +3 -0
- data/lib/active_record/relation/spawn_methods.rb +2 -18
- data/lib/active_record/relation/where_clause.rb +7 -19
- data/lib/active_record/relation.rb +500 -66
- data/lib/active_record/result.rb +32 -45
- data/lib/active_record/runtime_registry.rb +39 -0
- data/lib/active_record/sanitization.rb +24 -19
- data/lib/active_record/schema.rb +8 -6
- data/lib/active_record/schema_dumper.rb +19 -9
- data/lib/active_record/schema_migration.rb +30 -14
- data/lib/active_record/signed_id.rb +11 -1
- data/lib/active_record/statement_cache.rb +7 -7
- data/lib/active_record/table_metadata.rb +1 -10
- data/lib/active_record/tasks/database_tasks.rb +70 -42
- data/lib/active_record/tasks/mysql_database_tasks.rb +1 -1
- data/lib/active_record/tasks/postgresql_database_tasks.rb +1 -1
- data/lib/active_record/tasks/sqlite_database_tasks.rb +2 -1
- data/lib/active_record/test_fixtures.rb +82 -91
- data/lib/active_record/testing/query_assertions.rb +121 -0
- data/lib/active_record/timestamp.rb +4 -2
- data/lib/active_record/token_for.rb +22 -12
- data/lib/active_record/touch_later.rb +1 -1
- data/lib/active_record/transaction.rb +68 -0
- data/lib/active_record/transactions.rb +43 -14
- data/lib/active_record/translation.rb +0 -2
- data/lib/active_record/type/serialized.rb +1 -3
- data/lib/active_record/type_caster/connection.rb +4 -4
- data/lib/active_record/validations/associated.rb +9 -3
- data/lib/active_record/validations/uniqueness.rb +14 -10
- data/lib/active_record/validations.rb +4 -1
- data/lib/active_record.rb +149 -40
- data/lib/arel/alias_predication.rb +1 -1
- data/lib/arel/collectors/bind.rb +2 -0
- data/lib/arel/collectors/composite.rb +7 -0
- data/lib/arel/collectors/sql_string.rb +1 -1
- data/lib/arel/collectors/substitute_binds.rb +1 -1
- data/lib/arel/nodes/binary.rb +0 -6
- data/lib/arel/nodes/bound_sql_literal.rb +9 -5
- data/lib/arel/nodes/{and.rb → nary.rb} +5 -2
- data/lib/arel/nodes/node.rb +4 -3
- data/lib/arel/nodes/sql_literal.rb +7 -0
- data/lib/arel/nodes.rb +2 -2
- data/lib/arel/predications.rb +1 -1
- data/lib/arel/select_manager.rb +1 -1
- data/lib/arel/tree_manager.rb +8 -3
- data/lib/arel/update_manager.rb +2 -1
- data/lib/arel/visitors/dot.rb +1 -0
- data/lib/arel/visitors/mysql.rb +9 -4
- data/lib/arel/visitors/postgresql.rb +1 -12
- data/lib/arel/visitors/to_sql.rb +31 -17
- data/lib/arel.rb +7 -3
- metadata +16 -11
data/CHANGELOG.md
CHANGED
@@ -1,2473 +1,852 @@
|
|
1
|
-
## Rails 7.
|
1
|
+
## Rails 7.2.0.beta1 (May 29, 2024) ##
|
2
2
|
|
3
|
-
*
|
3
|
+
* Fix inference of association model on nested models with the same demodularized name.
|
4
4
|
|
5
|
-
|
6
|
-
## Rails 7.1.3.2 (February 21, 2024) ##
|
7
|
-
|
8
|
-
* No changes.
|
9
|
-
|
10
|
-
|
11
|
-
## Rails 7.1.3.1 (February 21, 2024) ##
|
12
|
-
|
13
|
-
* No changes.
|
14
|
-
|
15
|
-
|
16
|
-
## Rails 7.1.3 (January 16, 2024) ##
|
17
|
-
|
18
|
-
* Fix Migrations with versions older than 7.1 validating options given to
|
19
|
-
`add_reference`.
|
20
|
-
|
21
|
-
*Hartley McGuire*
|
22
|
-
|
23
|
-
* Ensure `reload` sets correct owner for each association.
|
24
|
-
|
25
|
-
*Dmytro Savochkin*
|
26
|
-
|
27
|
-
* Fix view runtime for controllers with async queries.
|
28
|
-
|
29
|
-
*fatkodima*
|
30
|
-
|
31
|
-
* Fix `load_async` to work with query cache.
|
32
|
-
|
33
|
-
*fatkodima*
|
34
|
-
|
35
|
-
* Fix polymorphic `belongs_to` to correctly use parent's `query_constraints`.
|
36
|
-
|
37
|
-
*fatkodima*
|
38
|
-
|
39
|
-
* Fix `Preloader` to not generate a query for already loaded association with `query_constraints`.
|
40
|
-
|
41
|
-
*fatkodima*
|
42
|
-
|
43
|
-
* Fix multi-database polymorphic preloading with equivalent table names.
|
44
|
-
|
45
|
-
When preloading polymorphic associations, if two models pointed to two
|
46
|
-
tables with the same name but located in different databases, the
|
47
|
-
preloader would only load one.
|
48
|
-
|
49
|
-
*Ari Summer*
|
50
|
-
|
51
|
-
* Fix `encrypted_attribute?` to take into account context properties passed to `encrypts`.
|
52
|
-
|
53
|
-
*Maxime Réty*
|
54
|
-
|
55
|
-
* Fix `find_by` to work correctly in presence of composite primary keys.
|
56
|
-
|
57
|
-
*fatkodima*
|
58
|
-
|
59
|
-
* Fix async queries sometimes returning a raw result if they hit the query cache.
|
60
|
-
|
61
|
-
`ShipPart.async_count` could return a raw integer rather than a Promise
|
62
|
-
if it found the result in the query cache.
|
63
|
-
|
64
|
-
*fatkodima*
|
65
|
-
|
66
|
-
* Fix `Relation#transaction` to not apply a default scope.
|
67
|
-
|
68
|
-
The method was incorrectly setting a default scope around its block:
|
69
|
-
|
70
|
-
```ruby
|
71
|
-
Post.where(published: true).transaction do
|
72
|
-
Post.count # SELECT COUNT(*) FROM posts WHERE published = FALSE;
|
73
|
-
end
|
74
|
-
```
|
75
|
-
|
76
|
-
*Jean Boussier*
|
77
|
-
|
78
|
-
* Fix calling `async_pluck` on a `none` relation.
|
79
|
-
|
80
|
-
`Model.none.async_pluck(:id)` was returning a naked value
|
81
|
-
instead of a promise.
|
82
|
-
|
83
|
-
*Jean Boussier*
|
84
|
-
|
85
|
-
* Fix calling `load_async` on a `none` relation.
|
86
|
-
|
87
|
-
`Model.none.load_async` was returning a broken result.
|
88
|
-
|
89
|
-
*Lucas Mazza*
|
90
|
-
|
91
|
-
* TrilogyAdapter: ignore `host` if `socket` parameter is set.
|
92
|
-
|
93
|
-
This allows to configure a connection on a UNIX socket via DATABASE_URL:
|
94
|
-
|
95
|
-
```
|
96
|
-
DATABASE_URL=trilogy://does-not-matter/my_db_production?socket=/var/run/mysql.sock
|
97
|
-
```
|
98
|
-
|
99
|
-
*Jean Boussier*
|
100
|
-
|
101
|
-
* Fix `has_secure_token` calls the setter method on initialize.
|
102
|
-
|
103
|
-
*Abeid Ahmed*
|
104
|
-
|
105
|
-
* Allow using `object_id` as a database column name.
|
106
|
-
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.
|
107
|
-
|
108
|
-
*Mikhail Doronin*
|
109
|
-
|
110
|
-
* Fix `rails db:create:all` to not touch databases before they are created.
|
111
|
-
|
112
|
-
*fatkodima*
|
113
|
-
|
114
|
-
|
115
|
-
## Rails 7.1.2 (November 10, 2023) ##
|
116
|
-
|
117
|
-
* Fix renaming primary key index when renaming a table with a UUID primary key
|
118
|
-
in PostgreSQL.
|
119
|
-
|
120
|
-
*fatkodima*
|
121
|
-
|
122
|
-
* Fix `where(field: values)` queries when `field` is a serialized attribute
|
123
|
-
(for example, when `field` uses `ActiveRecord::Base.serialize` or is a JSON
|
124
|
-
column).
|
125
|
-
|
126
|
-
*João Alves*
|
127
|
-
|
128
|
-
* Prevent marking broken connections as verified.
|
129
|
-
|
130
|
-
*Daniel Colson*
|
131
|
-
|
132
|
-
* Don't mark Float::INFINITY as changed when reassigning it
|
133
|
-
|
134
|
-
When saving a record with a float infinite value, it shouldn't mark as changed
|
135
|
-
|
136
|
-
*Maicol Bentancor*
|
137
|
-
|
138
|
-
* `ActiveRecord::Base.table_name` now returns `nil` instead of raising
|
139
|
-
"undefined method `abstract_class?` for Object:Class".
|
140
|
-
|
141
|
-
*a5-stable*
|
142
|
-
|
143
|
-
* Fix upserting for custom `:on_duplicate` and `:unique_by` consisting of all
|
144
|
-
inserts keys.
|
145
|
-
|
146
|
-
*fatkodima*
|
147
|
-
|
148
|
-
* Fixed an [issue](https://github.com/rails/rails/issues/49809) where saving a
|
149
|
-
record could innappropriately `dup` its attributes.
|
150
|
-
|
151
|
-
*Jonathan Hefner*
|
152
|
-
|
153
|
-
* Dump schema only for a specific db for rollback/up/down tasks for multiple dbs.
|
154
|
-
|
155
|
-
*fatkodima*
|
156
|
-
|
157
|
-
* Fix `NoMethodError` when casting a PostgreSQL `money` value that uses a
|
158
|
-
comma as its radix point and has no leading currency symbol. For example,
|
159
|
-
when casting `"3,50"`.
|
160
|
-
|
161
|
-
*Andreas Reischuck* and *Jonathan Hefner*
|
162
|
-
|
163
|
-
* Re-enable support for using `enum` with non-column-backed attributes.
|
164
|
-
Non-column-backed attributes must be previously declared with an explicit
|
165
|
-
type. For example:
|
166
|
-
|
167
|
-
```ruby
|
168
|
-
class Post < ActiveRecord::Base
|
169
|
-
attribute :topic, :string
|
170
|
-
enum topic: %i[science tech engineering math]
|
171
|
-
end
|
172
|
-
```
|
173
|
-
|
174
|
-
*Jonathan Hefner*
|
175
|
-
|
176
|
-
* Raise on `foreign_key:` being passed as an array in associations
|
177
|
-
|
178
|
-
*Nikita Vasilevsky*
|
179
|
-
|
180
|
-
* Return back maximum allowed PostgreSQL table name to 63 characters.
|
181
|
-
|
182
|
-
*fatkodima*
|
183
|
-
|
184
|
-
* Fix detecting `IDENTITY` columns for PostgreSQL < 10.
|
185
|
-
|
186
|
-
*fatkodima*
|
187
|
-
|
188
|
-
|
189
|
-
## Rails 7.1.1 (October 11, 2023) ##
|
190
|
-
|
191
|
-
* Fix auto populating IDENTITY columns for PostgreSQL.
|
192
|
-
|
193
|
-
*fatkodima*
|
194
|
-
|
195
|
-
* Fix "ArgumentError: wrong number of arguments (given 3, expected 2)" when
|
196
|
-
down migrating `rename_table` in older migrations.
|
197
|
-
|
198
|
-
*fatkodima*
|
199
|
-
|
200
|
-
* Do not require the Action Text, Active Storage and Action Mailbox tables
|
201
|
-
to be present when running when running test on CI.
|
202
|
-
|
203
|
-
*Rafael Mendonça França*
|
204
|
-
|
205
|
-
|
206
|
-
## Rails 7.1.0 (October 05, 2023) ##
|
207
|
-
|
208
|
-
* No changes.
|
209
|
-
|
210
|
-
|
211
|
-
## Rails 7.1.0.rc2 (October 01, 2023) ##
|
212
|
-
|
213
|
-
* Remove -shm and -wal SQLite files when `rails db:drop` is run.
|
214
|
-
|
215
|
-
*Niklas Häusele*
|
216
|
-
|
217
|
-
* Revert the change to raise an `ArgumentError` when `#accepts_nested_attributes_for` is declared more than once for
|
218
|
-
an association in the same class.
|
219
|
-
|
220
|
-
The reverted behavior broke the case where the `#accepts_nested_attributes_for` was defined in a concern and
|
221
|
-
where overridden in the class that included the concern.
|
222
|
-
|
223
|
-
*Rafael Mendonça França*
|
224
|
-
|
225
|
-
|
226
|
-
## Rails 7.1.0.rc1 (September 27, 2023) ##
|
227
|
-
|
228
|
-
* Better naming for unique constraints support.
|
229
|
-
|
230
|
-
Naming unique keys leads to misunderstanding it's a short-hand of unique indexes.
|
231
|
-
Just naming it unique constraints is not misleading.
|
232
|
-
|
233
|
-
In Rails 7.1.0.beta1 or before:
|
234
|
-
|
235
|
-
```ruby
|
236
|
-
add_unique_key :sections, [:position], deferrable: :deferred, name: "unique_section_position"
|
237
|
-
remove_unique_key :sections, name: "unique_section_position"
|
238
|
-
```
|
239
|
-
|
240
|
-
Now:
|
241
|
-
|
242
|
-
```ruby
|
243
|
-
add_unique_constraint :sections, [:position], deferrable: :deferred, name: "unique_section_position"
|
244
|
-
remove_unique_constraint :sections, name: "unique_section_position"
|
245
|
-
```
|
246
|
-
|
247
|
-
*Ryuta Kamizono*
|
248
|
-
|
249
|
-
* Fix duplicate quoting for check constraint expressions in schema dump when using MySQL
|
250
|
-
|
251
|
-
A check constraint with an expression, that already contains quotes, lead to an invalid schema
|
252
|
-
dump with the mysql2 adapter.
|
253
|
-
|
254
|
-
Fixes #42424.
|
255
|
-
|
256
|
-
*Felix Tscheulin*
|
257
|
-
|
258
|
-
* Performance tune the SQLite3 adapter connection configuration
|
259
|
-
|
260
|
-
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.
|
261
|
-
|
262
|
-
*Stephen Margheim*
|
263
|
-
|
264
|
-
* Allow SQLite3 `busy_handler` to be configured with simple max number of `retries`
|
265
|
-
|
266
|
-
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`.
|
267
|
-
|
268
|
-
*Stephen Margheim*
|
269
|
-
|
270
|
-
* The SQLite3 adapter now supports `supports_insert_returning?`
|
271
|
-
|
272
|
-
Implementing the full `supports_insert_returning?` contract means the SQLite3 adapter supports auto-populated columns (#48241) as well as custom primary keys.
|
273
|
-
|
274
|
-
*Stephen Margheim*
|
275
|
-
|
276
|
-
* Ensure the SQLite3 adapter handles default functions with the `||` concatenation operator
|
277
|
-
|
278
|
-
Previously, this default function would produce the static string `"'Ruby ' || 'on ' || 'Rails'"`.
|
279
|
-
Now, the adapter will appropriately receive and use `"Ruby on Rails"`.
|
280
|
-
|
281
|
-
```ruby
|
282
|
-
change_column_default "test_models", "ruby_on_rails", -> { "('Ruby ' || 'on ' || 'Rails')" }
|
283
|
-
```
|
284
|
-
|
285
|
-
*Stephen Margheim*
|
286
|
-
|
287
|
-
* Dump PostgreSQL schemas as part of the schema dump.
|
288
|
-
|
289
|
-
*Lachlan Sylvester*
|
290
|
-
|
291
|
-
|
292
|
-
## Rails 7.1.0.beta1 (September 13, 2023) ##
|
293
|
-
|
294
|
-
* Encryption now supports `support_unencrypted_data` being set per-attribute.
|
295
|
-
|
296
|
-
You can now opt out of `support_unencrypted_data` on a specific encrypted attribute.
|
297
|
-
This only has an effect if `ActiveRecord::Encryption.config.support_unencrypted_data == true`.
|
298
|
-
|
299
|
-
```ruby
|
300
|
-
class User < ActiveRecord::Base
|
301
|
-
encrypts :name, deterministic: true, support_unencrypted_data: false
|
302
|
-
encrypts :email, deterministic: true
|
303
|
-
end
|
304
|
-
```
|
305
|
-
|
306
|
-
*Alex Ghiculescu*
|
307
|
-
|
308
|
-
* Add instrumentation for Active Record transactions
|
309
|
-
|
310
|
-
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.
|
311
|
-
|
312
|
-
```ruby
|
313
|
-
ActiveSupport::Notifications.subscribe("transaction.active_record") do |event|
|
314
|
-
puts "Transaction event occurred!"
|
315
|
-
connection = event.payload[:connection]
|
316
|
-
puts "Connection: #{connection.inspect}"
|
317
|
-
end
|
318
|
-
```
|
319
|
-
|
320
|
-
*Daniel Colson*, *Ian Candy*
|
321
|
-
|
322
|
-
* Support composite foreign keys via migration helpers.
|
323
|
-
|
324
|
-
```ruby
|
325
|
-
# Assuming "carts" table has "(shop_id, user_id)" as a primary key.
|
326
|
-
|
327
|
-
add_foreign_key(:orders, :carts, primary_key: [:shop_id, :user_id])
|
328
|
-
|
329
|
-
remove_foreign_key(:orders, :carts, primary_key: [:shop_id, :user_id])
|
330
|
-
foreign_key_exists?(:orders, :carts, primary_key: [:shop_id, :user_id])
|
331
|
-
```
|
332
|
-
|
333
|
-
*fatkodima*
|
334
|
-
|
335
|
-
* Adds support for `if_not_exists` when adding a check constraint.
|
336
|
-
|
337
|
-
```ruby
|
338
|
-
add_check_constraint :posts, "post_type IN ('blog', 'comment', 'share')", if_not_exists: true
|
339
|
-
```
|
340
|
-
|
341
|
-
*Cody Cutrer*
|
342
|
-
|
343
|
-
* Raise an `ArgumentError` when `#accepts_nested_attributes_for` is declared more than once for an association in
|
344
|
-
the same class. Previously, the last declaration would silently override the previous one. Overriding in a subclass
|
345
|
-
is still allowed.
|
346
|
-
|
347
|
-
*Joshua Young*
|
348
|
-
|
349
|
-
* Deprecate `rewhere` argument on `#merge`.
|
350
|
-
|
351
|
-
The `rewhere` argument on `#merge`is deprecated without replacement and
|
352
|
-
will be removed in Rails 7.2.
|
353
|
-
|
354
|
-
*Adam Hess*
|
355
|
-
|
356
|
-
* Deprecate aliasing non-attributes with `alias_attribute`.
|
357
|
-
|
358
|
-
*Ian Candy*
|
359
|
-
|
360
|
-
* Fix unscope is not working in specific case
|
361
|
-
|
362
|
-
Before:
|
363
|
-
```ruby
|
364
|
-
Post.where(id: 1...3).unscope(where: :id).to_sql # "SELECT `posts`.* FROM `posts` WHERE `posts`.`id` >= 1 AND `posts`.`id` < 3"
|
365
|
-
|
366
|
-
```
|
367
|
-
|
368
|
-
After:
|
369
|
-
```ruby
|
370
|
-
Post.where(id: 1...3).unscope(where: :id).to_sql # "SELECT `posts`.* FROM `posts`"
|
371
|
-
```
|
372
|
-
|
373
|
-
Fixes #48094.
|
374
|
-
|
375
|
-
*Kazuya Hatanaka*
|
376
|
-
|
377
|
-
* Change `has_secure_token` default to `on: :initialize`
|
378
|
-
|
379
|
-
Change the new default value from `on: :create` to `on: :initialize`
|
380
|
-
|
381
|
-
Can be controlled by the `config.active_record.generate_secure_token_on`
|
382
|
-
configuration:
|
383
|
-
|
384
|
-
```ruby
|
385
|
-
config.active_record.generate_secure_token_on = :create
|
386
|
-
```
|
387
|
-
|
388
|
-
*Sean Doyle*
|
389
|
-
|
390
|
-
* Fix `change_column` not setting `precision: 6` on `datetime` columns when
|
391
|
-
using 7.0+ Migrations and SQLite.
|
392
|
-
|
393
|
-
*Hartley McGuire*
|
394
|
-
|
395
|
-
* Support composite identifiers in `to_key`
|
396
|
-
|
397
|
-
`to_key` avoids wrapping `#id` value into an `Array` if `#id` already an array
|
398
|
-
|
399
|
-
*Nikita Vasilevsky*
|
400
|
-
|
401
|
-
* Add validation option for `enum`
|
402
|
-
|
403
|
-
```ruby
|
404
|
-
class Contract < ApplicationRecord
|
405
|
-
enum :status, %w[in_progress completed], validate: true
|
406
|
-
end
|
407
|
-
Contract.new(status: "unknown").valid? # => false
|
408
|
-
Contract.new(status: nil).valid? # => false
|
409
|
-
Contract.new(status: "completed").valid? # => true
|
410
|
-
|
411
|
-
class Contract < ApplicationRecord
|
412
|
-
enum :status, %w[in_progress completed], validate: { allow_nil: true }
|
413
|
-
end
|
414
|
-
Contract.new(status: "unknown").valid? # => false
|
415
|
-
Contract.new(status: nil).valid? # => true
|
416
|
-
Contract.new(status: "completed").valid? # => true
|
417
|
-
```
|
418
|
-
|
419
|
-
*Edem Topuzov*, *Ryuta Kamizono*
|
420
|
-
|
421
|
-
* Allow batching methods to use already loaded relation if available
|
422
|
-
|
423
|
-
Calling batch methods on already loaded relations will use the records previously loaded instead of retrieving
|
424
|
-
them from the database again.
|
425
|
-
|
426
|
-
*Adam Hess*
|
427
|
-
|
428
|
-
* Deprecate `read_attribute(:id)` returning the primary key if the primary key is not `:id`.
|
429
|
-
|
430
|
-
Starting in Rails 7.2, `read_attribute(:id)` will return the value of the id column, regardless of the model's
|
431
|
-
primary key. To retrieve the value of the primary key, use `#id` instead. `read_attribute(:id)` for composite
|
432
|
-
primary key models will now return the value of the id column.
|
433
|
-
|
434
|
-
*Adrianna Chang*
|
435
|
-
|
436
|
-
* Fix `change_table` setting datetime precision for 6.1 Migrations
|
437
|
-
|
438
|
-
*Hartley McGuire*
|
439
|
-
|
440
|
-
* Fix change_column setting datetime precision for 6.1 Migrations
|
441
|
-
|
442
|
-
*Hartley McGuire*
|
443
|
-
|
444
|
-
* Add `ActiveRecord::Base#id_value` alias to access the raw value of a record's id column.
|
445
|
-
|
446
|
-
This alias is only provided for models that declare an `:id` column.
|
447
|
-
|
448
|
-
*Adrianna Chang*
|
449
|
-
|
450
|
-
* Fix previous change tracking for `ActiveRecord::Store` when using a column with JSON structured database type
|
451
|
-
|
452
|
-
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
|
453
|
-
|
454
|
-
*Robert DiMartino*
|
455
|
-
|
456
|
-
* Fully support `NULLS [NOT] DISTINCT` for PostgreSQL 15+ indexes.
|
457
|
-
|
458
|
-
Previous work was done to allow the index to be created in a migration, but it was not
|
459
|
-
supported in schema.rb. Additionally, the matching for `NULLS [NOT] DISTINCT` was not
|
460
|
-
in the correct order, which could have resulted in inconsistent schema detection.
|
461
|
-
|
462
|
-
*Gregory Jones*
|
463
|
-
|
464
|
-
* Allow escaping of literal colon characters in `sanitize_sql_*` methods when named bind variables are used
|
465
|
-
|
466
|
-
*Justin Bull*
|
467
|
-
|
468
|
-
* Fix `#previously_new_record?` to return true for destroyed records.
|
469
|
-
|
470
|
-
Before, if a record was created and then destroyed, `#previously_new_record?` would return true.
|
471
|
-
Now, any UPDATE or DELETE to a record is considered a change, and will result in `#previously_new_record?`
|
472
|
-
returning false.
|
473
|
-
|
474
|
-
*Adrianna Chang*
|
475
|
-
|
476
|
-
* Specify callback in `has_secure_token`
|
477
|
-
|
478
|
-
```ruby
|
479
|
-
class User < ApplicationRecord
|
480
|
-
has_secure_token on: :initialize
|
481
|
-
end
|
482
|
-
|
483
|
-
User.new.token # => "abc123...."
|
484
|
-
```
|
485
|
-
|
486
|
-
*Sean Doyle*
|
487
|
-
|
488
|
-
* Fix incrementation of in memory counter caches when associations overlap
|
489
|
-
|
490
|
-
When two associations had a similarly named counter cache column, Active Record
|
491
|
-
could sometime increment the wrong one.
|
492
|
-
|
493
|
-
*Jacopo Beschi*, *Jean Boussier*
|
494
|
-
|
495
|
-
* Don't show secrets for Active Record's `Cipher::Aes256Gcm#inspect`.
|
496
|
-
|
497
|
-
Before:
|
498
|
-
|
499
|
-
```ruby
|
500
|
-
ActiveRecord::Encryption::Cipher::Aes256Gcm.new(secret).inspect
|
501
|
-
"#<ActiveRecord::Encryption::Cipher::Aes256Gcm:0x0000000104888038 ... @secret=\"\\xAF\\bFh]LV}q\\nl\\xB2U\\xB3 ... >"
|
502
|
-
```
|
503
|
-
|
504
|
-
After:
|
505
|
-
|
506
|
-
```ruby
|
507
|
-
ActiveRecord::Encryption::Cipher::Aes256Gcm(secret).inspect
|
508
|
-
"#<ActiveRecord::Encryption::Cipher::Aes256Gcm:0x0000000104888038>"
|
509
|
-
```
|
510
|
-
|
511
|
-
*Petrik de Heus*
|
512
|
-
|
513
|
-
* Bring back the historical behavior of committing transaction on non-local return.
|
514
|
-
|
515
|
-
```ruby
|
516
|
-
Model.transaction do
|
517
|
-
model.save
|
518
|
-
return
|
519
|
-
other_model.save # not executed
|
520
|
-
end
|
521
|
-
```
|
522
|
-
|
523
|
-
Historically only raised errors would trigger a rollback, but in Ruby `2.3`, the `timeout` library
|
524
|
-
started using `throw` to interrupt execution which had the adverse effect of committing open transactions.
|
525
|
-
|
526
|
-
To solve this, in Active Record 6.1 the behavior was changed to instead rollback the transaction as it was safer
|
527
|
-
than to potentially commit an incomplete transaction.
|
528
|
-
|
529
|
-
Using `return`, `break` or `throw` inside a `transaction` block was essentially deprecated from Rails 6.1 onwards.
|
530
|
-
|
531
|
-
However with the release of `timeout 0.4.0`, `Timeout.timeout` now raises an error again, and Active Record is able
|
532
|
-
to return to its original, less surprising, behavior.
|
533
|
-
|
534
|
-
This historical behavior can now be opt-ed in via:
|
535
|
-
|
536
|
-
```
|
537
|
-
Rails.application.config.active_record.commit_transaction_on_non_local_return = true
|
538
|
-
```
|
539
|
-
|
540
|
-
And is the default for new applications created in Rails 7.1.
|
541
|
-
|
542
|
-
*Jean Boussier*
|
543
|
-
|
544
|
-
* Deprecate `name` argument on `#remove_connection`.
|
545
|
-
|
546
|
-
The `name` argument is deprecated on `#remove_connection` without replacement. `#remove_connection` should be called directly on the class that established the connection.
|
547
|
-
|
548
|
-
*Eileen M. Uchitelle*
|
549
|
-
|
550
|
-
* Fix has_one through singular building with inverse.
|
551
|
-
|
552
|
-
Allows building of records from an association with a has_one through a
|
553
|
-
singular association with inverse. For belongs_to through associations,
|
554
|
-
linking the foreign key to the primary key model isn't needed.
|
555
|
-
For has_one, we cannot build records due to the association not being mutable.
|
556
|
-
|
557
|
-
*Gannon McGibbon*
|
558
|
-
|
559
|
-
* Disable database prepared statements when query logs are enabled
|
560
|
-
|
561
|
-
Prepared Statements and Query Logs are incompatible features due to query logs making every query unique.
|
562
|
-
|
563
|
-
*zzak, Jean Boussier*
|
564
|
-
|
565
|
-
* Support decrypting data encrypted non-deterministically with a SHA1 hash digest.
|
566
|
-
|
567
|
-
This adds a new Active Record encryption option to support decrypting data encrypted
|
568
|
-
non-deterministically with a SHA1 hash digest:
|
569
|
-
|
570
|
-
```
|
571
|
-
Rails.application.config.active_record.encryption.support_sha1_for_non_deterministic_encryption = true
|
572
|
-
```
|
573
|
-
|
574
|
-
The new option addresses a problem when upgrading from 7.0 to 7.1. Due to a bug in how Active Record
|
575
|
-
Encryption was getting initialized, the key provider used for non-deterministic encryption were using
|
576
|
-
SHA-1 as its digest class, instead of the one configured globally by Rails via
|
577
|
-
`Rails.application.config.active_support.key_generator_hash_digest_class`.
|
578
|
-
|
579
|
-
*Cadu Ribeiro and Jorge Manrubia*
|
580
|
-
|
581
|
-
* Added PostgreSQL migration commands for enum rename, add value, and rename value.
|
582
|
-
|
583
|
-
`rename_enum` and `rename_enum_value` are reversible. Due to Postgres
|
584
|
-
limitation, `add_enum_value` is not reversible since you cannot delete enum
|
585
|
-
values. As an alternative you should drop and recreate the enum entirely.
|
586
|
-
|
587
|
-
```ruby
|
588
|
-
rename_enum :article_status, to: :article_state
|
589
|
-
```
|
590
|
-
|
591
|
-
```ruby
|
592
|
-
add_enum_value :article_state, "archived" # will be at the end of existing values
|
593
|
-
add_enum_value :article_state, "in review", before: "published"
|
594
|
-
add_enum_value :article_state, "approved", after: "in review"
|
595
|
-
```
|
596
|
-
|
597
|
-
```ruby
|
598
|
-
rename_enum_value :article_state, from: "archived", to: "deleted"
|
599
|
-
```
|
600
|
-
|
601
|
-
*Ray Faddis*
|
602
|
-
|
603
|
-
* Allow composite primary key to be derived from schema
|
604
|
-
|
605
|
-
Booting an application with a schema that contains composite primary keys
|
606
|
-
will not issue warning and won't `nil`ify the `ActiveRecord::Base#primary_key` value anymore.
|
607
|
-
|
608
|
-
Given a `travel_routes` table definition and a `TravelRoute` model like:
|
609
|
-
```ruby
|
610
|
-
create_table :travel_routes, primary_key: [:origin, :destination], force: true do |t|
|
611
|
-
t.string :origin
|
612
|
-
t.string :destination
|
613
|
-
end
|
614
|
-
|
615
|
-
class TravelRoute < ActiveRecord::Base; end
|
616
|
-
```
|
617
|
-
The `TravelRoute.primary_key` value will be automatically derived to `["origin", "destination"]`
|
618
|
-
|
619
|
-
*Nikita Vasilevsky*
|
620
|
-
|
621
|
-
* Include the `connection_pool` with exceptions raised from an adapter.
|
622
|
-
|
623
|
-
The `connection_pool` provides added context such as the connection used
|
624
|
-
that led to the exception as well as which role and shard.
|
625
|
-
|
626
|
-
*Luan Vieira*
|
627
|
-
|
628
|
-
* Support multiple column ordering for `find_each`, `find_in_batches` and `in_batches`.
|
629
|
-
|
630
|
-
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.
|
631
|
-
|
632
|
-
```ruby
|
633
|
-
Person.find_each(order: [:desc, :asc]) do |person|
|
634
|
-
person.party_all_night!
|
635
|
-
end
|
636
|
-
```
|
637
|
-
|
638
|
-
*Takuya Kurimoto*
|
639
|
-
|
640
|
-
* Fix where on association with has_one/has_many polymorphic relations.
|
641
|
-
|
642
|
-
Before:
|
643
|
-
```ruby
|
644
|
-
Treasure.where(price_estimates: PriceEstimate.all)
|
645
|
-
#=> SELECT (...) WHERE "treasures"."id" IN (SELECT "price_estimates"."estimate_of_id" FROM "price_estimates")
|
646
|
-
```
|
647
|
-
|
648
|
-
Later:
|
649
|
-
```ruby
|
650
|
-
Treasure.where(price_estimates: PriceEstimate.all)
|
651
|
-
#=> SELECT (...) WHERE "treasures"."id" IN (SELECT "price_estimates"."estimate_of_id" FROM "price_estimates" WHERE "price_estimates"."estimate_of_type" = 'Treasure')
|
652
|
-
```
|
653
|
-
|
654
|
-
*Lázaro Nixon*
|
655
|
-
|
656
|
-
* Assign auto populated columns on Active Record record creation.
|
657
|
-
|
658
|
-
Changes record creation logic to allow for the `auto_increment` column to be assigned
|
659
|
-
immediately after creation regardless of it's relation to the model's primary key.
|
660
|
-
|
661
|
-
The PostgreSQL adapter benefits the most from the change allowing for any number of auto-populated
|
662
|
-
columns to be assigned on the object immediately after row insertion utilizing the `RETURNING` statement.
|
663
|
-
|
664
|
-
*Nikita Vasilevsky*
|
665
|
-
|
666
|
-
* Use the first key in the `shards` hash from `connected_to` for the `default_shard`.
|
667
|
-
|
668
|
-
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.
|
669
|
-
|
670
|
-
For example if your model looked like this:
|
671
|
-
|
672
|
-
```ruby
|
673
|
-
class ShardRecord < ApplicationRecord
|
674
|
-
self.abstract_class = true
|
675
|
-
|
676
|
-
connects_to shards: {
|
677
|
-
shard_one: { writing: :shard_one },
|
678
|
-
shard_two: { writing: :shard_two }
|
679
|
-
}
|
680
|
-
```
|
681
|
-
|
682
|
-
Then the `default_shard` for this class would be set to `shard_one`.
|
683
|
-
|
684
|
-
Fixes: #45390
|
685
|
-
|
686
|
-
*Eileen M. Uchitelle*
|
687
|
-
|
688
|
-
* Fix mutation detection for serialized attributes backed by binary columns.
|
689
|
-
|
690
|
-
*Jean Boussier*
|
691
|
-
|
692
|
-
* Add `ActiveRecord.disconnect_all!` method to immediately close all connections from all pools.
|
693
|
-
|
694
|
-
*Jean Boussier*
|
695
|
-
|
696
|
-
* Discard connections which may have been left in a transaction.
|
697
|
-
|
698
|
-
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:
|
699
|
-
- Writes appear to fail when they actually succeed.
|
700
|
-
- Writes appear to succeed when they actually fail.
|
701
|
-
- Reads return stale or uncommitted data.
|
702
|
-
|
703
|
-
Previously, the following case was detected:
|
704
|
-
- An error is encountered during the transaction, then another error is encountered while attempting to roll it back.
|
705
|
-
|
706
|
-
Now, the following additional cases are detected:
|
707
|
-
- An error is encountered just after successfully beginning a transaction.
|
708
|
-
- An error is encountered while committing a transaction, then another error is encountered while attempting to roll it back.
|
709
|
-
- An error is encountered while rolling back a transaction.
|
710
|
-
|
711
|
-
*Nick Dower*
|
712
|
-
|
713
|
-
* Active Record query cache now evicts least recently used entries
|
714
|
-
|
715
|
-
By default it only keeps the `100` most recently used queries.
|
716
|
-
|
717
|
-
The cache size can be configured via `database.yml`
|
718
|
-
|
719
|
-
```yaml
|
720
|
-
development:
|
721
|
-
adapter: mysql2
|
722
|
-
query_cache: 200
|
723
|
-
```
|
724
|
-
|
725
|
-
It can also be entirely disabled:
|
726
|
-
|
727
|
-
```yaml
|
728
|
-
development:
|
729
|
-
adapter: mysql2
|
730
|
-
query_cache: false
|
731
|
-
```
|
732
|
-
|
733
|
-
*Jean Boussier*
|
734
|
-
|
735
|
-
* Deprecate `check_pending!` in favor of `check_all_pending!`.
|
736
|
-
|
737
|
-
`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.
|
738
|
-
|
739
|
-
*Eileen M. Uchitelle*
|
740
|
-
|
741
|
-
* Make `increment_counter`/`decrement_counter` accept an amount argument
|
742
|
-
|
743
|
-
```ruby
|
744
|
-
Post.increment_counter(:comments_count, 5, by: 3)
|
745
|
-
```
|
746
|
-
|
747
|
-
*fatkodima*
|
748
|
-
|
749
|
-
* Add support for `Array#intersect?` to `ActiveRecord::Relation`.
|
750
|
-
|
751
|
-
`Array#intersect?` is only available on Ruby 3.1 or later.
|
752
|
-
|
753
|
-
This allows the Rubocop `Style/ArrayIntersect` cop to work with `ActiveRecord::Relation` objects.
|
754
|
-
|
755
|
-
*John Harry Kelly*
|
756
|
-
|
757
|
-
* The deferrable foreign key can be passed to `t.references`.
|
758
|
-
|
759
|
-
*Hiroyuki Ishii*
|
760
|
-
|
761
|
-
* Deprecate `deferrable: true` option of `add_foreign_key`.
|
762
|
-
|
763
|
-
`deferrable: true` is deprecated in favor of `deferrable: :immediate`, and
|
764
|
-
will be removed in Rails 7.2.
|
765
|
-
|
766
|
-
Because `deferrable: true` and `deferrable: :deferred` are hard to understand.
|
767
|
-
Both true and :deferred are truthy values.
|
768
|
-
This behavior is the same as the deferrable option of the add_unique_key method, added in #46192.
|
769
|
-
|
770
|
-
*Hiroyuki Ishii*
|
771
|
-
|
772
|
-
* `AbstractAdapter#execute` and `#exec_query` now clear the query cache
|
773
|
-
|
774
|
-
If you need to perform a read only SQL query without clearing the query
|
775
|
-
cache, use `AbstractAdapter#select_all`.
|
776
|
-
|
777
|
-
*Jean Boussier*
|
778
|
-
|
779
|
-
* Make `.joins` / `.left_outer_joins` work with CTEs.
|
780
|
-
|
781
|
-
For example:
|
782
|
-
|
783
|
-
```ruby
|
784
|
-
Post
|
785
|
-
.with(commented_posts: Comment.select(:post_id).distinct)
|
786
|
-
.joins(:commented_posts)
|
787
|
-
#=> WITH (...) SELECT ... INNER JOIN commented_posts on posts.id = commented_posts.post_id
|
788
|
-
```
|
789
|
-
|
790
|
-
*Vladimir Dementyev*
|
791
|
-
|
792
|
-
* Add a load hook for `ActiveRecord::ConnectionAdapters::Mysql2Adapter`
|
793
|
-
(named `active_record_mysql2adapter`) to allow for overriding aspects of the
|
794
|
-
`ActiveRecord::ConnectionAdapters::Mysql2Adapter` class. This makes `Mysql2Adapter`
|
795
|
-
consistent with `PostgreSQLAdapter` and `SQLite3Adapter` that already have load hooks.
|
796
|
-
|
797
|
-
*fatkodima*
|
798
|
-
|
799
|
-
* Introduce adapter for Trilogy database client
|
800
|
-
|
801
|
-
Trilogy is a MySQL-compatible database client. Rails applications can use Trilogy
|
802
|
-
by configuring their `config/database.yml`:
|
803
|
-
|
804
|
-
```yaml
|
805
|
-
development:
|
806
|
-
adapter: trilogy
|
807
|
-
database: blog_development
|
808
|
-
pool: 5
|
809
|
-
```
|
810
|
-
|
811
|
-
Or by using the `DATABASE_URL` environment variable:
|
812
|
-
|
813
|
-
```ruby
|
814
|
-
ENV['DATABASE_URL'] # => "trilogy://localhost/blog_development?pool=5"
|
815
|
-
```
|
816
|
-
|
817
|
-
*Adrianna Chang*
|
818
|
-
|
819
|
-
* `after_commit` callbacks defined on models now execute in the correct order.
|
820
|
-
|
821
|
-
```ruby
|
822
|
-
class User < ActiveRecord::Base
|
823
|
-
after_commit { puts("this gets called first") }
|
824
|
-
after_commit { puts("this gets called second") }
|
825
|
-
end
|
826
|
-
```
|
827
|
-
|
828
|
-
Previously, the callbacks executed in the reverse order. To opt in to the new behaviour:
|
829
|
-
|
830
|
-
```ruby
|
831
|
-
config.active_record.run_after_transaction_callbacks_in_order_defined = true
|
832
|
-
```
|
833
|
-
|
834
|
-
This is the default for new apps.
|
835
|
-
|
836
|
-
*Alex Ghiculescu*
|
837
|
-
|
838
|
-
* Infer `foreign_key` when `inverse_of` is present on `has_one` and `has_many` associations.
|
839
|
-
|
840
|
-
```ruby
|
841
|
-
has_many :citations, foreign_key: "book1_id", inverse_of: :book
|
842
|
-
```
|
843
|
-
|
844
|
-
can be simplified to
|
845
|
-
|
846
|
-
```ruby
|
847
|
-
has_many :citations, inverse_of: :book
|
848
|
-
```
|
849
|
-
|
850
|
-
and the foreign_key will be read from the corresponding `belongs_to` association.
|
851
|
-
|
852
|
-
*Daniel Whitney*
|
853
|
-
|
854
|
-
* Limit max length of auto generated index names
|
855
|
-
|
856
|
-
Auto generated index names are now limited to 62 bytes, which fits within
|
857
|
-
the default index name length limits for MySQL, Postgres and SQLite.
|
858
|
-
|
859
|
-
Any index name over the limit will fallback to the new short format.
|
860
|
-
|
861
|
-
Before (too long):
|
862
|
-
```
|
863
|
-
index_testings_on_foo_and_bar_and_first_name_and_last_name_and_administrator
|
864
|
-
```
|
865
|
-
|
866
|
-
After (short format):
|
867
|
-
```
|
868
|
-
idx_on_foo_bar_first_name_last_name_administrator_5939248142
|
869
|
-
```
|
870
|
-
|
871
|
-
The short format includes a hash to ensure the name is unique database-wide.
|
872
|
-
|
873
|
-
*Mike Coutermarsh*
|
874
|
-
|
875
|
-
* Introduce a more stable and optimized Marshal serializer for Active Record models.
|
876
|
-
|
877
|
-
Can be enabled with `config.active_record.marshalling_format_version = 7.1`.
|
878
|
-
|
879
|
-
*Jean Boussier*
|
880
|
-
|
881
|
-
* Allow specifying where clauses with column-tuple syntax.
|
882
|
-
|
883
|
-
Querying through `#where` now accepts a new tuple-syntax which accepts, as
|
884
|
-
a key, an array of columns and, as a value, an array of corresponding tuples.
|
885
|
-
The key specifies a list of columns, while the value is an array of
|
886
|
-
ordered-tuples that conform to the column list.
|
887
|
-
|
888
|
-
For instance:
|
889
|
-
|
890
|
-
```ruby
|
891
|
-
# Cpk::Book => Cpk::Book(author_id: integer, number: integer, title: string, revision: integer)
|
892
|
-
# Cpk::Book.primary_key => ["author_id", "number"]
|
893
|
-
|
894
|
-
book = Cpk::Book.create!(author_id: 1, number: 1)
|
895
|
-
Cpk::Book.where(Cpk::Book.primary_key => [[1, 2]]) # => [book]
|
896
|
-
|
897
|
-
# Topic => Topic(id: integer, title: string, author_name: string...)
|
898
|
-
|
899
|
-
Topic.where([:title, :author_name] => [["The Alchemist", "Paulo Coelho"], ["Harry Potter", "J.K Rowling"]])
|
900
|
-
```
|
901
|
-
|
902
|
-
*Paarth Madan*
|
903
|
-
|
904
|
-
* Allow warning codes to be ignore when reporting SQL warnings.
|
905
|
-
|
906
|
-
Active Record config that can ignore warning codes
|
907
|
-
|
908
|
-
```ruby
|
909
|
-
# Configure allowlist of warnings that should always be ignored
|
910
|
-
config.active_record.db_warnings_ignore = [
|
911
|
-
"1062", # MySQL Error 1062: Duplicate entry
|
912
|
-
]
|
913
|
-
```
|
914
|
-
|
915
|
-
This is supported for the MySQL and PostgreSQL adapters.
|
916
|
-
|
917
|
-
*Nick Borromeo*
|
918
|
-
|
919
|
-
* Introduce `:active_record_fixtures` lazy load hook.
|
920
|
-
|
921
|
-
Hooks defined with this name will be run whenever `TestFixtures` is included
|
922
|
-
in a class.
|
923
|
-
|
924
|
-
```ruby
|
925
|
-
ActiveSupport.on_load(:active_record_fixtures) do
|
926
|
-
self.fixture_paths << "test/fixtures"
|
927
|
-
end
|
928
|
-
|
929
|
-
klass = Class.new
|
930
|
-
klass.include(ActiveRecord::TestFixtures)
|
931
|
-
|
932
|
-
klass.fixture_paths # => ["test/fixtures"]
|
933
|
-
```
|
934
|
-
|
935
|
-
*Andrew Novoselac*
|
936
|
-
|
937
|
-
* Introduce `TestFixtures#fixture_paths`.
|
938
|
-
|
939
|
-
Multiple fixture paths can now be specified using the `#fixture_paths` accessor.
|
940
|
-
Apps will continue to have `test/fixtures` as their one fixture path by default,
|
941
|
-
but additional fixture paths can be specified.
|
942
|
-
|
943
|
-
```ruby
|
944
|
-
ActiveSupport::TestCase.fixture_paths << "component1/test/fixtures"
|
945
|
-
ActiveSupport::TestCase.fixture_paths << "component2/test/fixtures"
|
946
|
-
```
|
947
|
-
|
948
|
-
`TestFixtures#fixture_path` is now deprecated.
|
949
|
-
|
950
|
-
*Andrew Novoselac*
|
951
|
-
|
952
|
-
* Adds support for deferrable exclude constraints in PostgreSQL.
|
953
|
-
|
954
|
-
By default, exclude constraints in PostgreSQL are checked after each statement.
|
955
|
-
This works for most use cases, but becomes a major limitation when replacing
|
956
|
-
records with overlapping ranges by using multiple statements.
|
957
|
-
|
958
|
-
```ruby
|
959
|
-
exclusion_constraint :users, "daterange(valid_from, valid_to) WITH &&", deferrable: :immediate
|
960
|
-
```
|
961
|
-
|
962
|
-
Passing `deferrable: :immediate` checks constraint after each statement,
|
963
|
-
but allows manually deferring the check using `SET CONSTRAINTS ALL DEFERRED`
|
964
|
-
within a transaction. This will cause the excludes to be checked after the transaction.
|
965
|
-
|
966
|
-
It's also possible to change the default behavior from an immediate check
|
967
|
-
(after the statement), to a deferred check (after the transaction):
|
968
|
-
|
969
|
-
```ruby
|
970
|
-
exclusion_constraint :users, "daterange(valid_from, valid_to) WITH &&", deferrable: :deferred
|
971
|
-
```
|
972
|
-
|
973
|
-
*Hiroyuki Ishii*
|
974
|
-
|
975
|
-
* Respect `foreign_type` option to `delegated_type` for `{role}_class` method.
|
976
|
-
|
977
|
-
Usage of `delegated_type` with non-conventional `{role}_type` column names can now be specified with `foreign_type` option.
|
978
|
-
This option is the same as `foreign_type` as forwarded to the underlying `belongs_to` association that `delegated_type` wraps.
|
979
|
-
|
980
|
-
*Jason Karns*
|
981
|
-
|
982
|
-
* Add support for unique constraints (PostgreSQL-only).
|
983
|
-
|
984
|
-
```ruby
|
985
|
-
add_unique_key :sections, [:position], deferrable: :deferred, name: "unique_section_position"
|
986
|
-
remove_unique_key :sections, name: "unique_section_position"
|
987
|
-
```
|
988
|
-
|
989
|
-
See PostgreSQL's [Unique Constraints](https://www.postgresql.org/docs/current/ddl-constraints.html#DDL-CONSTRAINTS-UNIQUE-CONSTRAINTS) documentation for more on unique constraints.
|
990
|
-
|
991
|
-
By default, unique constraints in PostgreSQL are checked after each statement.
|
992
|
-
This works for most use cases, but becomes a major limitation when replacing
|
993
|
-
records with unique column by using multiple statements.
|
994
|
-
|
995
|
-
An example of swapping unique columns between records.
|
996
|
-
|
997
|
-
```ruby
|
998
|
-
# position is unique column
|
999
|
-
old_item = Item.create!(position: 1)
|
1000
|
-
new_item = Item.create!(position: 2)
|
1001
|
-
|
1002
|
-
Item.transaction do
|
1003
|
-
old_item.update!(position: 2)
|
1004
|
-
new_item.update!(position: 1)
|
1005
|
-
end
|
1006
|
-
```
|
1007
|
-
|
1008
|
-
Using the default behavior, the transaction would fail when executing the
|
1009
|
-
first `UPDATE` statement.
|
1010
|
-
|
1011
|
-
By passing the `:deferrable` option to the `add_unique_key` statement in
|
1012
|
-
migrations, it's possible to defer this check.
|
1013
|
-
|
1014
|
-
```ruby
|
1015
|
-
add_unique_key :items, [:position], deferrable: :immediate
|
1016
|
-
```
|
1017
|
-
|
1018
|
-
Passing `deferrable: :immediate` does not change the behaviour of the previous example,
|
1019
|
-
but allows manually deferring the check using `SET CONSTRAINTS ALL DEFERRED` within a transaction.
|
1020
|
-
This will cause the unique constraints to be checked after the transaction.
|
1021
|
-
|
1022
|
-
It's also possible to adjust the default behavior from an immediate
|
1023
|
-
check (after the statement), to a deferred check (after the transaction):
|
1024
|
-
|
1025
|
-
```ruby
|
1026
|
-
add_unique_key :items, [:position], deferrable: :deferred
|
1027
|
-
```
|
1028
|
-
|
1029
|
-
If you want to change an existing unique index to deferrable, you can use :using_index
|
1030
|
-
to create deferrable unique constraints.
|
1031
|
-
|
1032
|
-
```ruby
|
1033
|
-
add_unique_key :items, deferrable: :deferred, using_index: "index_items_on_position"
|
1034
|
-
```
|
1035
|
-
|
1036
|
-
*Hiroyuki Ishii*
|
1037
|
-
|
1038
|
-
* Remove deprecated `Tasks::DatabaseTasks.schema_file_type`.
|
1039
|
-
|
1040
|
-
*Rafael Mendonça França*
|
1041
|
-
|
1042
|
-
* Remove deprecated `config.active_record.partial_writes`.
|
1043
|
-
|
1044
|
-
*Rafael Mendonça França*
|
1045
|
-
|
1046
|
-
* Remove deprecated `ActiveRecord::Base` config accessors.
|
1047
|
-
|
1048
|
-
*Rafael Mendonça França*
|
1049
|
-
|
1050
|
-
* Remove the `:include_replicas` argument from `configs_for`. Use `:include_hidden` argument instead.
|
1051
|
-
|
1052
|
-
*Eileen M. Uchitelle*
|
1053
|
-
|
1054
|
-
* Allow applications to lookup a config via a custom hash key.
|
1055
|
-
|
1056
|
-
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.
|
1057
|
-
|
1058
|
-
```ruby
|
1059
|
-
ActiveRecord::Base.configurations.configs_for(env_name: "development", name: "primary", config_key: :vitess)
|
1060
|
-
ActiveRecord::Base.configurations.configs_for(env_name: "development", config_key: :vitess)
|
1061
|
-
```
|
1062
|
-
|
1063
|
-
*Eileen M. Uchitelle*
|
1064
|
-
|
1065
|
-
* Allow applications to register a custom database configuration handler.
|
1066
|
-
|
1067
|
-
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`.
|
1068
|
-
|
1069
|
-
Given the following database YAML we want the `animals` db to create a `CustomConfig` object instead while the `primary` database will be a `UrlConfig`:
|
1070
|
-
|
1071
|
-
```yaml
|
1072
|
-
development:
|
1073
|
-
primary:
|
1074
|
-
url: postgres://localhost/primary
|
1075
|
-
animals:
|
1076
|
-
url: postgres://localhost/animals
|
1077
|
-
custom_config:
|
1078
|
-
sharded: 1
|
1079
|
-
```
|
1080
|
-
|
1081
|
-
To register a custom handler first make a class that has your custom methods:
|
1082
|
-
|
1083
|
-
```ruby
|
1084
|
-
class CustomConfig < ActiveRecord::DatabaseConfigurations::UrlConfig
|
1085
|
-
def sharded?
|
1086
|
-
custom_config.fetch("sharded", false)
|
1087
|
-
end
|
1088
|
-
|
1089
|
-
private
|
1090
|
-
def custom_config
|
1091
|
-
configuration_hash.fetch(:custom_config)
|
1092
|
-
end
|
1093
|
-
end
|
1094
|
-
```
|
1095
|
-
|
1096
|
-
Then register the config in an initializer:
|
1097
|
-
|
1098
|
-
```ruby
|
1099
|
-
ActiveRecord::DatabaseConfigurations.register_db_config_handler do |env_name, name, url, config|
|
1100
|
-
next unless config.key?(:custom_config)
|
1101
|
-
CustomConfig.new(env_name, name, url, config)
|
1102
|
-
end
|
1103
|
-
```
|
1104
|
-
|
1105
|
-
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.
|
1106
|
-
|
1107
|
-
*Eileen M. Uchitelle and John Crepezzi*
|
1108
|
-
|
1109
|
-
* `ActiveRecord::Base.serialize` no longer uses YAML by default.
|
1110
|
-
|
1111
|
-
YAML isn't particularly performant and can lead to security issues
|
1112
|
-
if not used carefully.
|
1113
|
-
|
1114
|
-
Unfortunately there isn't really any good serializers in Ruby's stdlib
|
1115
|
-
to replace it.
|
1116
|
-
|
1117
|
-
The obvious choice would be JSON, which is a fine format for this use case,
|
1118
|
-
however the JSON serializer in Ruby's stdlib isn't strict enough, as it fallback
|
1119
|
-
to casting unknown types to strings, which could lead to corrupted data.
|
1120
|
-
|
1121
|
-
Some third party JSON libraries like `Oj` have a suitable strict mode.
|
1122
|
-
|
1123
|
-
So it's preferable that users choose a serializer based on their own constraints.
|
1124
|
-
|
1125
|
-
The original default can be restored by setting `config.active_record.default_column_serializer = YAML`.
|
1126
|
-
|
1127
|
-
*Jean Boussier*
|
1128
|
-
|
1129
|
-
* `ActiveRecord::Base.serialize` signature changed.
|
1130
|
-
|
1131
|
-
Rather than a single positional argument that accepts two possible
|
1132
|
-
types of values, `serialize` now accepts two distinct keyword arguments.
|
1133
|
-
|
1134
|
-
Before:
|
1135
|
-
|
1136
|
-
```ruby
|
1137
|
-
serialize :content, JSON
|
1138
|
-
serialize :backtrace, Array
|
1139
|
-
```
|
1140
|
-
|
1141
|
-
After:
|
1142
|
-
|
1143
|
-
```ruby
|
1144
|
-
serialize :content, coder: JSON
|
1145
|
-
serialize :backtrace, type: Array
|
1146
|
-
```
|
1147
|
-
|
1148
|
-
*Jean Boussier*
|
1149
|
-
|
1150
|
-
* YAML columns use `YAML.safe_dump` if available.
|
1151
|
-
|
1152
|
-
As of `psych 5.1.0`, `YAML.safe_dump` can now apply the same permitted
|
1153
|
-
types restrictions than `YAML.safe_load`.
|
1154
|
-
|
1155
|
-
It's preferable to ensure the payload only use allowed types when we first
|
1156
|
-
try to serialize it, otherwise you may end up with invalid records in the
|
1157
|
-
database.
|
1158
|
-
|
1159
|
-
*Jean Boussier*
|
1160
|
-
|
1161
|
-
* `ActiveRecord::QueryLogs` better handle broken encoding.
|
1162
|
-
|
1163
|
-
It's not uncommon when building queries with BLOB fields to contain
|
1164
|
-
binary data. Unless the call carefully encode the string in ASCII-8BIT
|
1165
|
-
it generally end up being encoded in `UTF-8`, and `QueryLogs` would
|
1166
|
-
end up failing on it.
|
1167
|
-
|
1168
|
-
`ActiveRecord::QueryLogs` no longer depend on the query to be properly encoded.
|
1169
|
-
|
1170
|
-
*Jean Boussier*
|
1171
|
-
|
1172
|
-
* Fix a bug where `ActiveRecord::Generators::ModelGenerator` would not respect create_table_migration template overrides.
|
1173
|
-
|
1174
|
-
```
|
1175
|
-
rails g model create_books title:string content:text
|
1176
|
-
```
|
1177
|
-
will now read from the create_table_migration.rb.tt template in the following locations in order:
|
1178
|
-
```
|
1179
|
-
lib/templates/active_record/model/create_table_migration.rb
|
1180
|
-
lib/templates/active_record/migration/create_table_migration.rb
|
1181
|
-
```
|
1182
|
-
|
1183
|
-
*Spencer Neste*
|
1184
|
-
|
1185
|
-
* `ActiveRecord::Relation#explain` now accepts options.
|
1186
|
-
|
1187
|
-
For databases and adapters which support them (currently PostgreSQL
|
1188
|
-
and MySQL), options can be passed to `explain` to provide more
|
1189
|
-
detailed query plan analysis:
|
1190
|
-
|
1191
|
-
```ruby
|
1192
|
-
Customer.where(id: 1).joins(:orders).explain(:analyze, :verbose)
|
1193
|
-
```
|
1194
|
-
|
1195
|
-
*Reid Lynch*
|
1196
|
-
|
1197
|
-
* Multiple `Arel::Nodes::SqlLiteral` nodes can now be added together to
|
1198
|
-
form `Arel::Nodes::Fragments` nodes. This allows joining several pieces
|
1199
|
-
of SQL.
|
1200
|
-
|
1201
|
-
*Matthew Draper*, *Ole Friis*
|
1202
|
-
|
1203
|
-
* `ActiveRecord::Base#signed_id` raises if called on a new record.
|
1204
|
-
|
1205
|
-
Previously it would return an ID that was not usable, since it was based on `id = nil`.
|
1206
|
-
|
1207
|
-
*Alex Ghiculescu*
|
1208
|
-
|
1209
|
-
* Allow SQL warnings to be reported.
|
1210
|
-
|
1211
|
-
Active Record configs can be set to enable SQL warning reporting.
|
1212
|
-
|
1213
|
-
```ruby
|
1214
|
-
# Configure action to take when SQL query produces warning
|
1215
|
-
config.active_record.db_warnings_action = :raise
|
1216
|
-
|
1217
|
-
# Configure allowlist of warnings that should always be ignored
|
1218
|
-
config.active_record.db_warnings_ignore = [
|
1219
|
-
/Invalid utf8mb4 character string/,
|
1220
|
-
"An exact warning message",
|
1221
|
-
]
|
1222
|
-
```
|
1223
|
-
|
1224
|
-
This is supported for the MySQL and PostgreSQL adapters.
|
1225
|
-
|
1226
|
-
*Adrianna Chang*, *Paarth Madan*
|
1227
|
-
|
1228
|
-
* Add `#regroup` query method as a short-hand for `.unscope(:group).group(fields)`
|
1229
|
-
|
1230
|
-
Example:
|
1231
|
-
|
1232
|
-
```ruby
|
1233
|
-
Post.group(:title).regroup(:author)
|
1234
|
-
# SELECT `posts`.`*` FROM `posts` GROUP BY `posts`.`author`
|
1235
|
-
```
|
1236
|
-
|
1237
|
-
*Danielius Visockas*
|
1238
|
-
|
1239
|
-
* PostgreSQL adapter method `enable_extension` now allows parameter to be `[schema_name.]<extension_name>`
|
1240
|
-
if the extension must be installed on another schema.
|
1241
|
-
|
1242
|
-
Example: `enable_extension('heroku_ext.hstore')`
|
1243
|
-
|
1244
|
-
*Leonardo Luarte*
|
1245
|
-
|
1246
|
-
* Add `:include` option to `add_index`.
|
1247
|
-
|
1248
|
-
Add support for including non-key columns in indexes for PostgreSQL
|
1249
|
-
with the `INCLUDE` parameter.
|
1250
|
-
|
1251
|
-
```ruby
|
1252
|
-
add_index(:users, :email, include: [:id, :created_at])
|
1253
|
-
```
|
1254
|
-
|
1255
|
-
will result in:
|
1256
|
-
|
1257
|
-
```sql
|
1258
|
-
CREATE INDEX index_users_on_email USING btree (email) INCLUDE (id, created_at)
|
1259
|
-
```
|
1260
|
-
|
1261
|
-
*Steve Abrams*
|
1262
|
-
|
1263
|
-
* `ActiveRecord::Relation`’s `#any?`, `#none?`, and `#one?` methods take an optional pattern
|
1264
|
-
argument, more closely matching their `Enumerable` equivalents.
|
1265
|
-
|
1266
|
-
*George Claghorn*
|
1267
|
-
|
1268
|
-
* Add `ActiveRecord::Base.normalizes` for declaring attribute normalizations.
|
1269
|
-
|
1270
|
-
An attribute normalization is applied when the attribute is assigned or
|
1271
|
-
updated, and the normalized value will be persisted to the database. The
|
1272
|
-
normalization is also applied to the corresponding keyword argument of query
|
1273
|
-
methods, allowing records to be queried using unnormalized values.
|
1274
|
-
|
1275
|
-
For example:
|
1276
|
-
|
1277
|
-
```ruby
|
1278
|
-
class User < ActiveRecord::Base
|
1279
|
-
normalizes :email, with: -> email { email.strip.downcase }
|
1280
|
-
normalizes :phone, with: -> phone { phone.delete("^0-9").delete_prefix("1") }
|
1281
|
-
end
|
1282
|
-
|
1283
|
-
user = User.create(email: " CRUISE-CONTROL@EXAMPLE.COM\n")
|
1284
|
-
user.email # => "cruise-control@example.com"
|
1285
|
-
|
1286
|
-
user = User.find_by(email: "\tCRUISE-CONTROL@EXAMPLE.COM ")
|
1287
|
-
user.email # => "cruise-control@example.com"
|
1288
|
-
user.email_before_type_cast # => "cruise-control@example.com"
|
1289
|
-
|
1290
|
-
User.where(email: "\tCRUISE-CONTROL@EXAMPLE.COM ").count # => 1
|
1291
|
-
User.where(["email = ?", "\tCRUISE-CONTROL@EXAMPLE.COM "]).count # => 0
|
1292
|
-
|
1293
|
-
User.exists?(email: "\tCRUISE-CONTROL@EXAMPLE.COM ") # => true
|
1294
|
-
User.exists?(["email = ?", "\tCRUISE-CONTROL@EXAMPLE.COM "]) # => false
|
1295
|
-
|
1296
|
-
User.normalize_value_for(:phone, "+1 (555) 867-5309") # => "5558675309"
|
1297
|
-
```
|
1298
|
-
|
1299
|
-
*Jonathan Hefner*
|
1300
|
-
|
1301
|
-
* Hide changes to before_committed! callback behaviour behind flag.
|
1302
|
-
|
1303
|
-
In #46525, behavior around before_committed! callbacks was changed so that callbacks
|
1304
|
-
would run on every enrolled record in a transaction, not just the first copy of a record.
|
1305
|
-
This change in behavior is now controlled by a configuration option,
|
1306
|
-
`config.active_record.before_committed_on_all_records`. It will be enabled by default on Rails 7.1.
|
1307
|
-
|
1308
|
-
*Adrianna Chang*
|
1309
|
-
|
1310
|
-
* The `namespaced_controller` Query Log tag now matches the `controller` format
|
1311
|
-
|
1312
|
-
For example, a request processed by `NameSpaced::UsersController` will now log as:
|
1313
|
-
|
1314
|
-
```
|
1315
|
-
:controller # "users"
|
1316
|
-
:namespaced_controller # "name_spaced/users"
|
1317
|
-
```
|
1318
|
-
|
1319
|
-
*Alex Ghiculescu*
|
1320
|
-
|
1321
|
-
* Return only unique ids from ActiveRecord::Calculations#ids
|
1322
|
-
|
1323
|
-
Updated ActiveRecord::Calculations#ids to only return the unique ids of the base model
|
1324
|
-
when using eager_load, preload and includes.
|
1325
|
-
|
1326
|
-
```ruby
|
1327
|
-
Post.find_by(id: 1).comments.count
|
1328
|
-
# => 5
|
1329
|
-
Post.includes(:comments).where(id: 1).pluck(:id)
|
1330
|
-
# => [1, 1, 1, 1, 1]
|
1331
|
-
Post.includes(:comments).where(id: 1).ids
|
1332
|
-
# => [1]
|
1333
|
-
```
|
1334
|
-
|
1335
|
-
*Joshua Young*
|
1336
|
-
|
1337
|
-
* Stop using `LOWER()` for case-insensitive queries on `citext` columns
|
1338
|
-
|
1339
|
-
Previously, `LOWER()` was added for e.g. uniqueness validations with
|
1340
|
-
`case_sensitive: false`.
|
1341
|
-
It wasn't mentioned in the documentation that the index without `LOWER()`
|
1342
|
-
wouldn't be used in this case.
|
1343
|
-
|
1344
|
-
*Phil Pirozhkov*
|
1345
|
-
|
1346
|
-
* Extract `#sync_timezone_changes` method in AbstractMysqlAdapter to enable subclasses
|
1347
|
-
to sync database timezone changes without overriding `#raw_execute`.
|
1348
|
-
|
1349
|
-
*Adrianna Chang*, *Paarth Madan*
|
1350
|
-
|
1351
|
-
* Do not write additional new lines when dumping sql migration versions
|
1352
|
-
|
1353
|
-
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.
|
1354
|
-
|
1355
|
-
*Misha Schwartz*
|
1356
|
-
|
1357
|
-
* Fix `composed_of` value freezing and duplication.
|
1358
|
-
|
1359
|
-
Previously composite values exhibited two confusing behaviors:
|
1360
|
-
|
1361
|
-
- When reading a compositve value it'd _NOT_ be frozen, allowing it to get out of sync with its underlying database
|
1362
|
-
columns.
|
1363
|
-
- When writing a compositve value the argument would be frozen, potentially confusing the caller.
|
1364
|
-
|
1365
|
-
Currently, composite values instantiated based on database columns are frozen (addressing the first issue) and
|
1366
|
-
assigned compositve values are duplicated and the duplicate is frozen (addressing the second issue).
|
1367
|
-
|
1368
|
-
*Greg Navis*
|
1369
|
-
|
1370
|
-
* Fix redundant updates to the column insensitivity cache
|
1371
|
-
|
1372
|
-
Fixed redundant queries checking column capability for insensitive
|
1373
|
-
comparison.
|
1374
|
-
|
1375
|
-
*Phil Pirozhkov*
|
1376
|
-
|
1377
|
-
* Allow disabling methods generated by `ActiveRecord.enum`.
|
1378
|
-
|
1379
|
-
*Alfred Dominic*
|
1380
|
-
|
1381
|
-
* Avoid validating `belongs_to` association if it has not changed.
|
1382
|
-
|
1383
|
-
Previously, when updating a record, Active Record will perform an extra query to check for the presence of
|
1384
|
-
`belongs_to` associations (if the presence is configured to be mandatory), even if that attribute hasn't changed.
|
1385
|
-
|
1386
|
-
Currently, only `belongs_to`-related columns are checked for presence. It is possible to have orphaned records with
|
1387
|
-
this approach. To avoid this problem, you need to use a foreign key.
|
1388
|
-
|
1389
|
-
This behavior can be controlled by configuration:
|
1390
|
-
|
1391
|
-
```ruby
|
1392
|
-
config.active_record.belongs_to_required_validates_foreign_key = false
|
1393
|
-
```
|
1394
|
-
|
1395
|
-
and will be disabled by default with `config.load_defaults 7.1`.
|
1396
|
-
|
1397
|
-
*fatkodima*
|
1398
|
-
|
1399
|
-
* `has_one` and `belongs_to` associations now define a `reset_association` method
|
1400
|
-
on the owner model (where `association` is the name of the association). This
|
1401
|
-
method unloads the cached associate record, if any, and causes the next access
|
1402
|
-
to query it from the database.
|
1403
|
-
|
1404
|
-
*George Claghorn*
|
1405
|
-
|
1406
|
-
* Allow per attribute setting of YAML permitted classes (safe load) and unsafe load.
|
1407
|
-
|
1408
|
-
*Carlos Palhares*
|
1409
|
-
|
1410
|
-
* Add a build persistence method
|
1411
|
-
|
1412
|
-
Provides a wrapper for `new`, to provide feature parity with `create`s
|
1413
|
-
ability to create multiple records from an array of hashes, using the
|
1414
|
-
same notation as the `build` method on associations.
|
1415
|
-
|
1416
|
-
*Sean Denny*
|
1417
|
-
|
1418
|
-
* Raise on assignment to readonly attributes
|
1419
|
-
|
1420
|
-
```ruby
|
1421
|
-
class Post < ActiveRecord::Base
|
1422
|
-
attr_readonly :content
|
1423
|
-
end
|
1424
|
-
Post.create!(content: "cannot be updated")
|
1425
|
-
post.content # "cannot be updated"
|
1426
|
-
post.content = "something else" # => ActiveRecord::ReadonlyAttributeError
|
1427
|
-
```
|
1428
|
-
|
1429
|
-
Previously, assignment would succeed but silently not write to the database.
|
1430
|
-
|
1431
|
-
This behavior can be controlled by configuration:
|
1432
|
-
|
1433
|
-
```ruby
|
1434
|
-
config.active_record.raise_on_assign_to_attr_readonly = true
|
1435
|
-
```
|
1436
|
-
|
1437
|
-
and will be enabled by default with `config.load_defaults 7.1`.
|
1438
|
-
|
1439
|
-
*Alex Ghiculescu*, *Hartley McGuire*
|
1440
|
-
|
1441
|
-
* Allow unscoping of preload and eager_load associations
|
1442
|
-
|
1443
|
-
Added the ability to unscope preload and eager_load associations just like
|
1444
|
-
includes, joins, etc. See ActiveRecord::QueryMethods::VALID_UNSCOPING_VALUES
|
1445
|
-
for the full list of supported unscopable scopes.
|
1446
|
-
|
1447
|
-
```ruby
|
1448
|
-
query.unscope(:eager_load, :preload).group(:id).select(:id)
|
1449
|
-
```
|
1450
|
-
|
1451
|
-
*David Morehouse*
|
1452
|
-
|
1453
|
-
* Add automatic filtering of encrypted attributes on inspect
|
1454
|
-
|
1455
|
-
This feature is enabled by default but can be disabled with
|
5
|
+
E.g. with the following setup:
|
1456
6
|
|
1457
7
|
```ruby
|
1458
|
-
|
8
|
+
class Nested::Post < ApplicationRecord
|
9
|
+
has_one :post, through: :other
|
10
|
+
end
|
1459
11
|
```
|
1460
12
|
|
1461
|
-
|
1462
|
-
|
1463
|
-
* Clear locking column on #dup
|
1464
|
-
|
1465
|
-
This change fixes not to duplicate locking_column like id and timestamps.
|
13
|
+
Before, `#post` would infer the model as `Nested::Post`, but now it correctly infers `Post`.
|
1466
14
|
|
1467
|
-
|
1468
|
-
car = Car.create!
|
1469
|
-
car.touch
|
1470
|
-
car.lock_version #=> 1
|
1471
|
-
car.dup.lock_version #=> 0
|
1472
|
-
```
|
15
|
+
*Joshua Young*
|
1473
16
|
|
1474
|
-
|
17
|
+
* PostgreSQL `Cidr#change?` detects the address prefix change.
|
1475
18
|
|
1476
|
-
*
|
19
|
+
*Taketo Takashima*
|
1477
20
|
|
1478
|
-
|
1479
|
-
allowing the framework to skip issuing the `ROLLBACK` statement in more cases.
|
1480
|
-
Only affects adapters that have `savepoint_errors_invalidate_transactions?` configured as `true`,
|
1481
|
-
which at this point is only applicable to the `mysql2` adapter.
|
21
|
+
* Change `BatchEnumerator#destroy_all` to return the total number of affected rows.
|
1482
22
|
|
1483
|
-
|
23
|
+
Previously, it always returned `nil`.
|
1484
24
|
|
1485
|
-
*
|
25
|
+
*fatkodima*
|
1486
26
|
|
1487
|
-
|
1488
|
-
updating, deleting or reloading an `ActiveRecord::Base` object
|
27
|
+
* Support `touch_all` in batches.
|
1489
28
|
|
1490
29
|
```ruby
|
1491
|
-
|
1492
|
-
query_constraints :company_id, :id
|
1493
|
-
end
|
1494
|
-
developer = Developer.first.update(name: "Bob")
|
1495
|
-
# => UPDATE "developers" SET "name" = 'Bob' WHERE "developers"."company_id" = 1 AND "developers"."id" = 1
|
30
|
+
Post.in_batches.touch_all
|
1496
31
|
```
|
1497
32
|
|
1498
|
-
*
|
1499
|
-
|
1500
|
-
* Adds `validate` to foreign keys and check constraints in schema.rb
|
1501
|
-
|
1502
|
-
Previously, `schema.rb` would not record if `validate: false` had been used when adding a foreign key or check
|
1503
|
-
constraint, so restoring a database from the schema could result in foreign keys or check constraints being
|
1504
|
-
incorrectly validated.
|
1505
|
-
|
1506
|
-
*Tommy Graves*
|
1507
|
-
|
1508
|
-
* Adapter `#execute` methods now accept an `allow_retry` option. When set to `true`, the SQL statement will be
|
1509
|
-
retried, up to the database's configured `connection_retries` value, upon encountering connection-related errors.
|
1510
|
-
|
1511
|
-
*Adrianna Chang*
|
1512
|
-
|
1513
|
-
* Only trigger `after_commit :destroy` callbacks when a database row is deleted.
|
1514
|
-
|
1515
|
-
This prevents `after_commit :destroy` callbacks from being triggered again
|
1516
|
-
when `destroy` is called multiple times on the same record.
|
1517
|
-
|
1518
|
-
*Ben Sheldon*
|
1519
|
-
|
1520
|
-
* Fix `ciphertext_for` for yet-to-be-encrypted values.
|
1521
|
-
|
1522
|
-
Previously, `ciphertext_for` returned the cleartext of values that had not
|
1523
|
-
yet been encrypted, such as with an unpersisted record:
|
1524
|
-
|
1525
|
-
```ruby
|
1526
|
-
Post.encrypts :body
|
33
|
+
*fatkodima*
|
1527
34
|
|
1528
|
-
|
1529
|
-
post.ciphertext_for(:body)
|
1530
|
-
# => "{\"p\":\"abc..."
|
35
|
+
* Add support for `:if_not_exists` and `:force` options to `create_schema`.
|
1531
36
|
|
1532
|
-
|
1533
|
-
post.ciphertext_for(:body)
|
1534
|
-
# => "World"
|
1535
|
-
```
|
37
|
+
*fatkodima*
|
1536
38
|
|
1537
|
-
|
1538
|
-
attributes:
|
39
|
+
* Fix `index_errors` having incorrect index in association validation errors.
|
1539
40
|
|
1540
|
-
|
1541
|
-
Post.encrypts :body
|
41
|
+
*lulalala*
|
1542
42
|
|
1543
|
-
|
1544
|
-
post.ciphertext_for(:body)
|
1545
|
-
# => "{\"p\":\"abc..."
|
43
|
+
* Add `index_errors: :nested_attributes_order` mode.
|
1546
44
|
|
1547
|
-
|
1548
|
-
post.ciphertext_for(:body)
|
1549
|
-
# => "{\"p\":\"xyz..."
|
1550
|
-
```
|
45
|
+
This indexes the association validation errors based on the order received by nested attributes setter, and respects the `reject_if` configuration. This enables API to provide enough information to the frontend to map the validation errors back to their respective form fields.
|
1551
46
|
|
1552
|
-
*
|
47
|
+
*lulalala*
|
1553
48
|
|
1554
|
-
*
|
49
|
+
* Add `Rails.application.config.active_record.postgresql_adapter_decode_dates` to opt out of decoding dates automatically with the postgresql adapter. Defaults to true.
|
1555
50
|
|
1556
|
-
*
|
51
|
+
*Joé Dupuis*
|
1557
52
|
|
1558
|
-
*
|
53
|
+
* Association option `query_constraints` is deprecated in favor of `foreign_key`.
|
1559
54
|
|
1560
|
-
|
1561
|
-
be encrypted on create, but were not:
|
55
|
+
*Nikita Vasilevsky*
|
1562
56
|
|
1563
|
-
|
1564
|
-
Book.encrypts :name
|
57
|
+
* Add `ENV["SKIP_TEST_DATABASE_TRUNCATE"]` flag to speed up multi-process test runs on large DBs when all tests run within default transaction.
|
1565
58
|
|
1566
|
-
|
1567
|
-
book.name
|
1568
|
-
# => "<untitled>"
|
1569
|
-
book.name_before_type_cast
|
1570
|
-
# => "{\"p\":\"abc..."
|
1571
|
-
book.reload.name_before_type_cast
|
1572
|
-
# => "<untitled>"
|
1573
|
-
```
|
59
|
+
This cuts ~10s from the test run of HEY when run by 24 processes against the 178 tables, since ~4,000 table truncates can then be skipped.
|
1574
60
|
|
1575
|
-
|
61
|
+
*DHH*
|
1576
62
|
|
1577
|
-
|
1578
|
-
Book.encrypts :name
|
63
|
+
* Added support for recursive common table expressions.
|
1579
64
|
|
1580
|
-
|
1581
|
-
|
1582
|
-
|
1583
|
-
|
1584
|
-
|
1585
|
-
|
1586
|
-
|
1587
|
-
|
65
|
+
```ruby
|
66
|
+
Post.with_recursive(
|
67
|
+
post_and_replies: [
|
68
|
+
Post.where(id: 42),
|
69
|
+
Post.joins('JOIN post_and_replies ON posts.in_reply_to_id = post_and_replies.id'),
|
70
|
+
]
|
71
|
+
)
|
72
|
+
```
|
1588
73
|
|
1589
|
-
|
74
|
+
Generates the following SQL:
|
1590
75
|
|
1591
|
-
|
76
|
+
```sql
|
77
|
+
WITH RECURSIVE "post_and_replies" AS (
|
78
|
+
(SELECT "posts".* FROM "posts" WHERE "posts"."id" = 42)
|
79
|
+
UNION ALL
|
80
|
+
(SELECT "posts".* FROM "posts" JOIN post_and_replies ON posts.in_reply_to_id = post_and_replies.id)
|
81
|
+
)
|
82
|
+
SELECT "posts".* FROM "posts"
|
83
|
+
```
|
1592
84
|
|
1593
|
-
|
85
|
+
*ClearlyClaire*
|
1594
86
|
|
1595
|
-
|
87
|
+
* `validate_constraint` can be called in a `change_table` block.
|
1596
88
|
|
1597
|
-
|
89
|
+
ex:
|
90
|
+
```ruby
|
91
|
+
change_table :products do |t|
|
92
|
+
t.check_constraint "price > discounted_price", name: "price_check", validate: false
|
93
|
+
t.validate_check_constraint "price_check"
|
94
|
+
end
|
95
|
+
```
|
1598
96
|
|
1599
|
-
*
|
97
|
+
*Cody Cutrer*
|
1600
98
|
|
1601
|
-
*
|
99
|
+
* `PostgreSQLAdapter` now decodes columns of type date to `Date` instead of string.
|
1602
100
|
|
1603
|
-
|
1604
|
-
|
1605
|
-
|
101
|
+
Ex:
|
102
|
+
```ruby
|
103
|
+
ActiveRecord::Base.connection
|
104
|
+
.select_value("select '2024-01-01'::date").class #=> Date
|
105
|
+
```
|
1606
106
|
|
1607
|
-
*
|
107
|
+
*Joé Dupuis*
|
1608
108
|
|
1609
|
-
*
|
109
|
+
* Strict loading using `:n_plus_one_only` does not eagerly load child associations.
|
1610
110
|
|
1611
|
-
|
111
|
+
With this change, child associations are no longer eagerly loaded, to
|
112
|
+
match intended behavior and to prevent non-deterministic order issues caused
|
113
|
+
by calling methods like `first` or `last`. As `first` and `last` don't cause
|
114
|
+
an N+1 by themselves, calling child associations will no longer raise.
|
115
|
+
Fixes #49473.
|
1612
116
|
|
1613
|
-
|
117
|
+
Before:
|
1614
118
|
|
1615
|
-
|
119
|
+
```ruby
|
120
|
+
person = Person.find(1)
|
121
|
+
person.strict_loading!(mode: :n_plus_one_only)
|
122
|
+
person.posts.first
|
123
|
+
# SELECT * FROM posts WHERE person_id = 1; -- non-deterministic order
|
124
|
+
person.posts.first.firm # raises ActiveRecord::StrictLoadingViolationError
|
125
|
+
```
|
1616
126
|
|
1617
|
-
|
1618
|
-
configurations.
|
127
|
+
After:
|
1619
128
|
|
1620
|
-
|
129
|
+
```ruby
|
130
|
+
person = Person.find(1)
|
131
|
+
person.strict_loading!(mode: :n_plus_one_only)
|
132
|
+
person.posts.first # this is 1+1, not N+1
|
133
|
+
# SELECT * FROM posts WHERE person_id = 1 ORDER BY id LIMIT 1;
|
134
|
+
person.posts.first.firm # no longer raises
|
135
|
+
```
|
1621
136
|
|
1622
|
-
*
|
137
|
+
*Reid Lynch*
|
1623
138
|
|
1624
|
-
*
|
139
|
+
* Allow `Sqlite3Adapter` to use `sqlite3` gem version `2.x`.
|
1625
140
|
|
1626
|
-
|
1627
|
-
shows which table it concerns.
|
141
|
+
*Mike Dalessio*
|
1628
142
|
|
1629
|
-
|
143
|
+
* Allow `ActiveRecord::Base#pluck` to accept hash values.
|
1630
144
|
|
1631
|
-
|
145
|
+
```ruby
|
146
|
+
# Before
|
147
|
+
Post.joins(:comments).pluck("posts.id", "comments.id", "comments.body")
|
1632
148
|
|
1633
|
-
|
1634
|
-
|
1635
|
-
|
149
|
+
# After
|
150
|
+
Post.joins(:comments).pluck(posts: [:id], comments: [:id, :body])
|
151
|
+
```
|
1636
152
|
|
1637
|
-
|
1638
|
-
t.virtual :name, type: datetime, precision: nil, as: "expression"
|
153
|
+
*fatkodima*
|
1639
154
|
|
1640
|
-
|
1641
|
-
datetime column default precisions match.
|
155
|
+
* Raise an `ActiveRecord::ActiveRecordError` error when the MySQL database returns an invalid version string.
|
1642
156
|
|
1643
|
-
*
|
157
|
+
*Kevin McPhillips*
|
1644
158
|
|
1645
|
-
*
|
159
|
+
* `ActiveRecord::Base.transaction` now yields an `ActiveRecord::Transaction` object.
|
1646
160
|
|
1647
|
-
This
|
1648
|
-
that `#with_raw_connection` offers.
|
161
|
+
This allows to register callbacks on it.
|
1649
162
|
|
1650
|
-
|
163
|
+
```ruby
|
164
|
+
Article.transaction do |transaction|
|
165
|
+
article.update(published: true)
|
166
|
+
transaction.after_commit do
|
167
|
+
PublishNotificationMailer.with(article: article).deliver_later
|
168
|
+
end
|
169
|
+
end
|
170
|
+
```
|
1651
171
|
|
1652
|
-
*
|
172
|
+
*Jean Boussier*
|
1653
173
|
|
1654
|
-
|
174
|
+
* Add `ActiveRecord::Base.current_transaction`.
|
1655
175
|
|
1656
|
-
|
176
|
+
Returns the current transaction, to allow registering callbacks on it.
|
1657
177
|
|
1658
|
-
|
1659
|
-
|
1660
|
-
|
1661
|
-
|
1662
|
-
|
178
|
+
```ruby
|
179
|
+
Article.current_transaction.after_commit do
|
180
|
+
PublishNotificationMailer.with(article: article).deliver_later
|
181
|
+
end
|
182
|
+
```
|
1663
183
|
|
1664
|
-
*
|
184
|
+
*Jean Boussier*
|
1665
185
|
|
1666
|
-
*
|
186
|
+
* Add `ActiveRecord.after_all_transactions_commit` callback.
|
1667
187
|
|
1668
|
-
|
188
|
+
Useful for code that may run either inside or outside a transaction and needs
|
189
|
+
to perform work after the state changes have been properly persisted.
|
1669
190
|
|
1670
|
-
|
191
|
+
```ruby
|
192
|
+
def publish_article(article)
|
193
|
+
article.update(published: true)
|
194
|
+
ActiveRecord.after_all_transactions_commit do
|
195
|
+
PublishNotificationMailer.with(article: article).deliver_later
|
196
|
+
end
|
197
|
+
end
|
198
|
+
```
|
1671
199
|
|
1672
|
-
|
1673
|
-
|
1674
|
-
for MySQL database tasks like creating a database and dumping the structure.
|
200
|
+
In the above example, the block is either executed immediately if called outside
|
201
|
+
of a transaction, or called after the open transaction is committed.
|
1675
202
|
|
1676
|
-
|
203
|
+
If the transaction is rolled back, the block isn't called.
|
1677
204
|
|
1678
|
-
*
|
205
|
+
*Jean Boussier*
|
1679
206
|
|
1680
|
-
|
207
|
+
* Add the ability to ignore counter cache columns until they are backfilled.
|
1681
208
|
|
1682
|
-
|
209
|
+
Starting to use counter caches on existing large tables can be troublesome, because the column
|
210
|
+
values must be backfilled separately of the column addition (to not lock the table for too long)
|
211
|
+
and before the use of `:counter_cache` (otherwise methods like `size`/`any?`/etc, which use
|
212
|
+
counter caches internally, can produce incorrect results). People usually use database triggers
|
213
|
+
or callbacks on child associations while backfilling before introducing a counter cache
|
214
|
+
configuration to the association.
|
1683
215
|
|
1684
|
-
|
216
|
+
Now, to safely backfill the column, while keeping the column updated with child records added/removed, use:
|
1685
217
|
|
1686
|
-
|
1687
|
-
|
1688
|
-
|
1689
|
-
|
1690
|
-
```
|
1691
|
-
Record.where("duration = ?", 1.hour.to_i)
|
1692
|
-
```
|
1693
|
-
If you want to use a duration as an ISO 8601 string:
|
1694
|
-
```
|
1695
|
-
Record.where("duration = ?", 1.hour.iso8601)
|
218
|
+
```ruby
|
219
|
+
class Comment < ApplicationRecord
|
220
|
+
belongs_to :post, counter_cache: { active: false }
|
221
|
+
end
|
1696
222
|
```
|
1697
223
|
|
1698
|
-
|
224
|
+
While the counter cache is not "active", the methods like `size`/`any?`/etc will not use it,
|
225
|
+
but get the results directly from the database. After the counter cache column is backfilled, simply
|
226
|
+
remove the `{ active: false }` part from the counter cache definition, and it will now be used by the
|
227
|
+
mentioned methods.
|
1699
228
|
|
1700
|
-
*
|
229
|
+
*fatkodima*
|
1701
230
|
|
1702
|
-
|
1703
|
-
Post.in_order_of("id", [4,2,3,1]).to_a
|
1704
|
-
Post.joins(:author).in_order_of("authors.name", ["Bob", "Anna", "John"]).to_a
|
1705
|
-
```
|
231
|
+
* Retry known idempotent SELECT queries on connection-related exceptions.
|
1706
232
|
|
1707
|
-
|
233
|
+
SELECT queries we construct by walking the Arel tree and / or with known model attributes
|
234
|
+
are idempotent and can safely be retried in the case of a connection error. Previously,
|
235
|
+
adapters such as `TrilogyAdapter` would raise `ActiveRecord::ConnectionFailed: Trilogy::EOFError`
|
236
|
+
when encountering a connection error mid-request.
|
1708
237
|
|
1709
|
-
*
|
238
|
+
*Adrianna Chang*
|
1710
239
|
|
1711
|
-
|
240
|
+
* Allow association's `foreign_key` to be composite.
|
1712
241
|
|
1713
|
-
|
242
|
+
`query_constraints` option was the only way to configure a composite foreign key by passing an `Array`.
|
243
|
+
Now it's possible to pass an Array value as `foreign_key` to achieve the same behavior of an association.
|
1714
244
|
|
1715
|
-
*
|
245
|
+
*Nikita Vasilevsky*
|
1716
246
|
|
1717
|
-
|
247
|
+
* Allow association's `primary_key` to be composite.
|
1718
248
|
|
1719
|
-
|
249
|
+
Association's `primary_key` can be composite when derived from associated model `primary_key` or `query_constraints`.
|
250
|
+
Now it's possible to explicitly set it as composite on the association.
|
1720
251
|
|
1721
|
-
*
|
252
|
+
*Nikita Vasilevsky*
|
1722
253
|
|
1723
|
-
|
254
|
+
* Add `config.active_record.permanent_connection_checkout` setting.
|
1724
255
|
|
1725
|
-
|
256
|
+
Controls whether `ActiveRecord::Base.connection` raises an error, emits a deprecation warning, or neither.
|
1726
257
|
|
258
|
+
`ActiveRecord::Base.connection` checkouts a database connection from the pool and keeps it leased until the end of
|
259
|
+
the request or job. This behavior can be undesirable in environments that use many more threads or fibers than there
|
260
|
+
is available connections.
|
1727
261
|
|
1728
|
-
|
262
|
+
This configuration can be used to track down and eliminate code that calls `ActiveRecord::Base.connection` and
|
263
|
+
migrate it to use `ActiveRecord::Base.with_connection` instead.
|
1729
264
|
|
1730
|
-
|
265
|
+
The default behavior remains unchanged, and there is currently no plans to change the default.
|
1731
266
|
|
1732
|
-
|
267
|
+
*Jean Boussier*
|
1733
268
|
|
1734
|
-
|
1735
|
-
Post.joins(:comments).select(posts: [:id, :title, :created_at], comments: [:id, :body, :author_id])
|
1736
|
-
#=> "SELECT \"posts\".\"id\", \"posts\".\"title\", \"posts\".\"created_at\", \"comments\".\"id\", \"comments\".\"body\", \"comments\".\"author_id\"
|
1737
|
-
# FROM \"posts\" INNER JOIN \"comments\" ON \"comments\".\"post_id\" = \"posts\".\"id\""
|
269
|
+
* Add dirties option to uncached.
|
1738
270
|
|
1739
|
-
|
1740
|
-
|
1741
|
-
# FROM \"posts\" INNER JOIN \"comments\" ON \"comments\".\"post_id\" = \"posts\".\"id\""
|
1742
|
-
```
|
1743
|
-
*Oleksandr Holubenko*, *Josef Šimánek*, *Jean Boussier*
|
271
|
+
This adds a `dirties` option to `ActiveRecord::Base.uncached` and
|
272
|
+
`ActiveRecord::ConnectionAdapters::ConnectionPool#uncached`.
|
1744
273
|
|
1745
|
-
|
274
|
+
When set to `true` (the default), writes will clear all query caches belonging to the current thread.
|
275
|
+
When set to `false`, writes to the affected connection pool will not clear any query cache.
|
1746
276
|
|
1747
|
-
|
1748
|
-
attributes such that the extra attributes from target are added.
|
277
|
+
This is needed by Solid Cache so that cache writes do not clear query caches.
|
1749
278
|
|
1750
|
-
|
1751
|
-
class Person < ApplicationRecord
|
1752
|
-
end
|
279
|
+
*Donal McBreen*
|
1753
280
|
|
1754
|
-
|
1755
|
-
attribute :is_admin, :boolean
|
1756
|
-
after_initialize :set_admin
|
281
|
+
* Deprecate `ActiveRecord::Base.connection` in favor of `.lease_connection`.
|
1757
282
|
|
1758
|
-
|
1759
|
-
|
1760
|
-
end
|
1761
|
-
end
|
283
|
+
The method has been renamed as `lease_connection` to better reflect that the returned
|
284
|
+
connection will be held for the duration of the request or job.
|
1762
285
|
|
1763
|
-
|
1764
|
-
|
1765
|
-
# => false
|
1766
|
-
person.becomes(WebUser).is_admin?
|
1767
|
-
# => true
|
1768
|
-
```
|
286
|
+
This deprecation is a soft deprecation, no warnings will be issued and there is no
|
287
|
+
current plan to remove the method.
|
1769
288
|
|
1770
|
-
*
|
289
|
+
*Jean Boussier*
|
1771
290
|
|
1772
|
-
*
|
1773
|
-
behavior of `Enumerable#in_order_of`.
|
291
|
+
* Deprecate `ActiveRecord::ConnectionAdapters::ConnectionPool#connection`.
|
1774
292
|
|
1775
|
-
|
1776
|
-
|
293
|
+
The method has been renamed as `lease_connection` to better reflect that the returned
|
294
|
+
connection will be held for the duration of the request or job.
|
1777
295
|
|
1778
|
-
*
|
296
|
+
*Jean Boussier*
|
1779
297
|
|
1780
|
-
*
|
298
|
+
* Expose a generic fixture accessor for fixture names that may conflict with Minitest.
|
1781
299
|
|
1782
300
|
```ruby
|
1783
|
-
|
1784
|
-
|
1785
|
-
|
1786
|
-
Now results in the following SQL:
|
1787
|
-
|
1788
|
-
```sql
|
1789
|
-
ALTER TABLE "my_table" ADD COLUMN "created_at" datetime(6) NOT NULL, ADD COLUMN "updated_at" datetime(6) NOT NULL
|
301
|
+
assert_equal "Ruby on Rails", web_sites(:rubyonrails).name
|
302
|
+
assert_equal "Ruby on Rails", fixture(:web_sites, :rubyonrails).name
|
1790
303
|
```
|
1791
304
|
|
1792
|
-
*
|
305
|
+
*Jean Boussier*
|
1793
306
|
|
1794
|
-
*
|
307
|
+
* Using `Model.query_constraints` with a single non-primary-key column used to raise as expected, but with an
|
308
|
+
incorrect error message.
|
1795
309
|
|
1796
|
-
This
|
1797
|
-
dropped columns that depend on it.
|
310
|
+
This has been fixed to raise with a more appropriate error message.
|
1798
311
|
|
1799
|
-
*
|
312
|
+
*Joshua Young*
|
1800
313
|
|
1801
|
-
*
|
314
|
+
* Fix `has_one` association autosave setting the foreign key attribute when it is unchanged.
|
1802
315
|
|
1803
|
-
|
1804
|
-
|
316
|
+
This behavior is also inconsistent with autosaving `belongs_to` and can have unintended side effects like raising
|
317
|
+
an `ActiveRecord::ReadonlyAttributeError` when the foreign key attribute is marked as read-only.
|
1805
318
|
|
1806
|
-
*
|
319
|
+
*Joshua Young*
|
1807
320
|
|
1808
|
-
*
|
321
|
+
* Remove deprecated behavior that would rollback a transaction block when exited using `return`, `break` or `throw`.
|
1809
322
|
|
1810
|
-
|
1811
|
-
duplicate records or failing with `ActiveRecord::RecordNotUnique` depending on
|
1812
|
-
whether a proper unicity constraint was set.
|
323
|
+
*Rafael Mendonça França*
|
1813
324
|
|
1814
|
-
|
1815
|
-
when the record is expected to exist most of the time, as INSERT require to send
|
1816
|
-
more data than SELECT and require more work from the database. Also on some
|
1817
|
-
databases it can actually consume a primary key increment which is undesirable.
|
325
|
+
* Deprecate `Rails.application.config.active_record.commit_transaction_on_non_local_return`.
|
1818
326
|
|
1819
|
-
|
1820
|
-
can be made race-condition free by re-trying the `find` if the `create` failed
|
1821
|
-
with `ActiveRecord::RecordNotUnique`. This assumes that the table has the proper
|
1822
|
-
unicity constraints, if not, `find_or_create_by` will still lead to duplicated records.
|
327
|
+
*Rafael Mendonça França*
|
1823
328
|
|
1824
|
-
|
329
|
+
* Remove deprecated support to pass `rewhere` to `ActiveRecord::Relation#merge`.
|
1825
330
|
|
1826
|
-
*
|
331
|
+
*Rafael Mendonça França*
|
1827
332
|
|
1828
|
-
|
1829
|
-
support reconnect, but also expected to be passed an initial already-
|
1830
|
-
established connection.
|
333
|
+
* Remove deprecated support to pass `deferrable: true` to `add_foreign_key`.
|
1831
334
|
|
1832
|
-
|
1833
|
-
config hash, and only establish the real connection on demand.
|
335
|
+
*Rafael Mendonça França*
|
1834
336
|
|
1835
|
-
|
337
|
+
* Remove deprecated support to quote `ActiveSupport::Duration`.
|
1836
338
|
|
1837
|
-
*
|
1838
|
-
checkout when possible.
|
339
|
+
*Rafael Mendonça França*
|
1839
340
|
|
1840
|
-
|
1841
|
-
used directly to validate the connection, saving a network round-trip.
|
341
|
+
* Remove deprecated `#quote_bound_value`.
|
1842
342
|
|
1843
|
-
*
|
343
|
+
*Rafael Mendonça França*
|
1844
344
|
|
1845
|
-
*
|
1846
|
-
mid-request.
|
345
|
+
* Remove deprecated `ActiveRecord::ConnectionAdapters::ConnectionPool#connection_klass`.
|
1847
346
|
|
1848
|
-
|
1849
|
-
not inside a transaction, it is safe to immediately reconnect to the
|
1850
|
-
database server and try again, so this is now the default behavior.
|
347
|
+
*Rafael Mendonça França*
|
1851
348
|
|
1852
|
-
|
1853
|
-
|
1854
|
-
|
1855
|
-
option to `0`.
|
349
|
+
* Remove deprecated support to apply `#connection_pool_list`, `#active_connections?`, `#clear_active_connections!`,
|
350
|
+
`#clear_reloadable_connections!`, `#clear_all_connections!` and `#flush_idle_connections!` to the connections pools
|
351
|
+
for the current role when the `role` argument isn't provided.
|
1856
352
|
|
1857
|
-
*
|
353
|
+
*Rafael Mendonça França*
|
1858
354
|
|
1859
|
-
*
|
355
|
+
* Remove deprecated `#all_connection_pools`.
|
1860
356
|
|
1861
|
-
|
357
|
+
*Rafael Mendonça França*
|
1862
358
|
|
1863
|
-
|
359
|
+
* Remove deprecated `ActiveRecord::ConnectionAdapters::SchemaCache#data_sources`.
|
1864
360
|
|
1865
|
-
|
1866
|
-
disable_extension :citext, force: :cascade
|
1867
|
-
```
|
361
|
+
*Rafael Mendonça França*
|
1868
362
|
|
1869
|
-
|
363
|
+
* Remove deprecated `ActiveRecord::ConnectionAdapters::SchemaCache.load_from`.
|
1870
364
|
|
1871
|
-
*
|
365
|
+
*Rafael Mendonça França*
|
1872
366
|
|
1873
|
-
*
|
367
|
+
* Remove deprecated `#all_foreign_keys_valid?` from database adapters.
|
1874
368
|
|
1875
|
-
*
|
369
|
+
*Rafael Mendonça França*
|
1876
370
|
|
1877
|
-
*
|
371
|
+
* Remove deprecated support to passing coder and class as second argument to `serialize`.
|
1878
372
|
|
1879
|
-
|
1880
|
-
and moves the configuration of `ActiveRecord::DestroyAssociationAsyncJob`
|
1881
|
-
from ActiveJob to ActiveRecord.
|
373
|
+
*Rafael Mendonça França*
|
1882
374
|
|
1883
|
-
|
1884
|
-
if the job class is unloadable or an `ActiveRecord::ConfigurationError` if
|
1885
|
-
`dependent: :destroy_async` is declared on an association but there is no job
|
1886
|
-
class configured.
|
375
|
+
* Remove deprecated support to `ActiveRecord::Base#read_attribute(:id)` to return the custom primary key value.
|
1887
376
|
|
1888
|
-
*
|
377
|
+
*Rafael Mendonça França*
|
1889
378
|
|
1890
|
-
*
|
379
|
+
* Remove deprecated `TestFixtures.fixture_path`.
|
1891
380
|
|
1892
|
-
|
1893
|
-
which is wasteful and cause problem with YAML safe_load.
|
381
|
+
*Rafael Mendonça França*
|
1894
382
|
|
1895
|
-
|
383
|
+
* Remove deprecated behavior to support referring to a singular association by its plural name.
|
1896
384
|
|
1897
|
-
*
|
385
|
+
*Rafael Mendonça França*
|
1898
386
|
|
1899
|
-
|
387
|
+
* Deprecate `Rails.application.config.active_record.allow_deprecated_singular_associations_name`.
|
1900
388
|
|
1901
|
-
|
389
|
+
*Rafael Mendonça França*
|
1902
390
|
|
1903
|
-
|
1904
|
-
ActiveRecord::
|
1905
|
-
```
|
391
|
+
* Remove deprecated support to passing `SchemaMigration` and `InternalMetadata` classes as arguments to
|
392
|
+
`ActiveRecord::MigrationContext`.
|
1906
393
|
|
1907
|
-
*
|
394
|
+
*Rafael Mendonça França*
|
1908
395
|
|
1909
|
-
*
|
396
|
+
* Remove deprecated `ActiveRecord::Migration.check_pending` method.
|
1910
397
|
|
1911
|
-
|
1912
|
-
resetting a password. However, signed IDs cannot reflect record state, so
|
1913
|
-
if a token is intended to be single-use, it must be tracked in a database at
|
1914
|
-
least until it expires.
|
398
|
+
*Rafael Mendonça França*
|
1915
399
|
|
1916
|
-
|
1917
|
-
using the token to fetch the record, the data from the token and the current
|
1918
|
-
data from the record will be compared. If the two do not match, the token
|
1919
|
-
will be treated as invalid, the same as if it had expired. For example:
|
400
|
+
* Remove deprecated `ActiveRecord::LogSubscriber.runtime` method.
|
1920
401
|
|
1921
|
-
|
1922
|
-
class User < ActiveRecord::Base
|
1923
|
-
has_secure_password
|
1924
|
-
|
1925
|
-
generates_token_for :password_reset, expires_in: 15.minutes do
|
1926
|
-
# A password's BCrypt salt changes when the password is updated.
|
1927
|
-
# By embedding (part of) the salt in a token, the token will
|
1928
|
-
# expire when the password is updated.
|
1929
|
-
BCrypt::Password.new(password_digest).salt[-10..]
|
1930
|
-
end
|
1931
|
-
end
|
402
|
+
*Rafael Mendonça França*
|
1932
403
|
|
1933
|
-
|
1934
|
-
token = user.generate_token_for(:password_reset)
|
404
|
+
* Remove deprecated `ActiveRecord::LogSubscriber.runtime=` method.
|
1935
405
|
|
1936
|
-
|
406
|
+
*Rafael Mendonça França*
|
1937
407
|
|
1938
|
-
|
1939
|
-
User.find_by_token_for(:password_reset, token) # => nil
|
1940
|
-
```
|
408
|
+
* Remove deprecated `ActiveRecord::LogSubscriber.reset_runtime` method.
|
1941
409
|
|
1942
|
-
*
|
410
|
+
*Rafael Mendonça França*
|
1943
411
|
|
1944
|
-
*
|
412
|
+
* Remove deprecated support to define `explain` in the connection adapter with 2 arguments.
|
1945
413
|
|
1946
|
-
|
1947
|
-
When iterating over the whole tables, this approach is not optimal as it loads unneeded ids and
|
1948
|
-
`IN` queries with lots of items are slow.
|
414
|
+
*Rafael Mendonça França*
|
1949
415
|
|
1950
|
-
|
1951
|
-
several times faster. E.g., tested on a PostgreSQL table with 10 million records: querying (`253s` vs `30s`),
|
1952
|
-
updating (`288s` vs `124s`), deleting (`268s` vs `83s`).
|
416
|
+
* Remove deprecated `ActiveRecord::ActiveJobRequiredError`.
|
1953
417
|
|
1954
|
-
|
1955
|
-
If you iterate over the table and the only condition is, e.g., `archived_at: nil` (and only a tiny fraction
|
1956
|
-
of the records are archived), it makes sense to opt in to this approach:
|
418
|
+
*Rafael Mendonça França*
|
1957
419
|
|
1958
|
-
|
1959
|
-
Project.where(archived_at: nil).in_batches(use_ranges: true) do |relation|
|
1960
|
-
# do something
|
1961
|
-
end
|
1962
|
-
```
|
420
|
+
* Remove deprecated `ActiveRecord::Base.clear_active_connections!`.
|
1963
421
|
|
1964
|
-
|
422
|
+
*Rafael Mendonça França*
|
1965
423
|
|
1966
|
-
|
424
|
+
* Remove deprecated `ActiveRecord::Base.clear_reloadable_connections!`.
|
1967
425
|
|
1968
|
-
*
|
426
|
+
*Rafael Mendonça França*
|
1969
427
|
|
1970
|
-
|
1971
|
-
Post.with(posts_with_comments: Post.where("comments_count > ?", 0))
|
1972
|
-
# => ActiveRecord::Relation
|
1973
|
-
# WITH posts_with_comments AS (SELECT * FROM posts WHERE (comments_count > 0)) SELECT * FROM posts
|
1974
|
-
```
|
428
|
+
* Remove deprecated `ActiveRecord::Base.clear_all_connections!`.
|
1975
429
|
|
1976
|
-
*
|
430
|
+
*Rafael Mendonça França*
|
1977
431
|
|
1978
|
-
*
|
432
|
+
* Remove deprecated `ActiveRecord::Base.flush_idle_connections!`.
|
1979
433
|
|
1980
|
-
|
434
|
+
*Rafael Mendonça França*
|
1981
435
|
|
1982
|
-
|
436
|
+
* Remove deprecated `name` argument from `ActiveRecord::Base.remove_connection`.
|
1983
437
|
|
1984
|
-
*
|
438
|
+
*Rafael Mendonça França*
|
1985
439
|
|
1986
|
-
*
|
440
|
+
* Remove deprecated support to call `alias_attribute` with non-existent attribute names.
|
1987
441
|
|
1988
|
-
*
|
442
|
+
*Rafael Mendonça França*
|
1989
443
|
|
1990
|
-
*
|
444
|
+
* Remove deprecated `Rails.application.config.active_record.suppress_multiple_database_warning`.
|
1991
445
|
|
1992
|
-
|
1993
|
-
# In database migrations
|
1994
|
-
add_column :shops, :open_hours, :tsrange, array: true
|
1995
|
-
# In app config
|
1996
|
-
ActiveRecord::Base.time_zone_aware_types += [:tsrange]
|
1997
|
-
# In the code times are properly converted to app time zone
|
1998
|
-
Shop.create!(open_hours: [Time.current..8.hour.from_now])
|
1999
|
-
```
|
446
|
+
*Rafael Mendonça França*
|
2000
447
|
|
2001
|
-
|
448
|
+
* Add `ActiveRecord::Encryption::MessagePackMessageSerializer`.
|
2002
449
|
|
2003
|
-
|
450
|
+
Serialize data to the MessagePack format, for efficient storage in binary columns.
|
2004
451
|
|
2005
|
-
|
2006
|
-
|
2007
|
-
to change how their migrations run.
|
452
|
+
The binary encoding requires around 30% less space than the base64 encoding
|
453
|
+
used by the default serializer.
|
2008
454
|
|
2009
|
-
*
|
455
|
+
*Donal McBreen*
|
2010
456
|
|
2011
|
-
* Add
|
457
|
+
* Add support for encrypting binary columns.
|
2012
458
|
|
2013
|
-
|
2014
|
-
foreign key constraints usage even if the underlying database supports them.
|
459
|
+
Ensure encryption and decryption pass `Type::Binary::Data` around for binary data.
|
2015
460
|
|
2016
|
-
|
2017
|
-
|
2018
|
-
development:
|
2019
|
-
<<: *default
|
2020
|
-
database: storage/development.sqlite3
|
2021
|
-
foreign_keys: false
|
2022
|
-
```
|
461
|
+
Previously encrypting binary columns with the `ActiveRecord::Encryption::MessageSerializer`
|
462
|
+
incidentally worked for MySQL and SQLite, but not PostgreSQL.
|
2023
463
|
|
2024
|
-
*
|
464
|
+
*Donal McBreen*
|
2025
465
|
|
2026
|
-
*
|
466
|
+
* Deprecated `ENV["SCHEMA_CACHE"]` in favor of `schema_cache_path` in the database configuration.
|
2027
467
|
|
2028
|
-
|
2029
|
-
It is possible to opt into the new more performant behavior with `config.active_record.allow_deprecated_singular_associations_name = false`
|
468
|
+
*Rafael Mendonça França*
|
2030
469
|
|
2031
|
-
|
470
|
+
* Add `ActiveRecord::Base.with_connection` as a shortcut for leasing a connection for a short duration.
|
2032
471
|
|
2033
|
-
|
2034
|
-
|
472
|
+
The leased connection is yielded, and for the duration of the block, any call to `ActiveRecord::Base.connection`
|
473
|
+
will yield that same connection.
|
2035
474
|
|
2036
|
-
|
2037
|
-
|
2038
|
-
only one of them. `config.active_record.run_commit_callbacks_on_first_saved_instances_in_transaction`
|
2039
|
-
was added to specify how Rails chooses which instance receives the
|
2040
|
-
callbacks. The framework defaults were changed to use the new logic.
|
475
|
+
This is useful to perform a few database operations without causing a connection to be leased for the
|
476
|
+
entire duration of the request or job.
|
2041
477
|
|
2042
|
-
|
2043
|
-
is `true`, transactional callbacks are run on the first instance to save,
|
2044
|
-
even though its instance state may be stale.
|
478
|
+
*Jean Boussier*
|
2045
479
|
|
2046
|
-
|
2047
|
-
|
2048
|
-
instance state. Those instances are chosen as follows:
|
480
|
+
* Deprecate `config.active_record.warn_on_records_fetched_greater_than` now that `sql.active_record`
|
481
|
+
notification includes `:row_count` field.
|
2049
482
|
|
2050
|
-
|
2051
|
-
given record within the transaction.
|
2052
|
-
- There are two exceptions:
|
2053
|
-
- If the record is created within the transaction, then updated by
|
2054
|
-
another instance, `after_create_commit` callbacks will be run on the
|
2055
|
-
second instance. This is instead of the `after_update_commit`
|
2056
|
-
callbacks that would naively be run based on that instance’s state.
|
2057
|
-
- If the record is destroyed within the transaction, then
|
2058
|
-
`after_destroy_commit` callbacks will be fired on the last destroyed
|
2059
|
-
instance, even if a stale instance subsequently performed an update
|
2060
|
-
(which will have affected 0 rows).
|
483
|
+
*Jason Nochlin*
|
2061
484
|
|
2062
|
-
|
485
|
+
* The fix ensures that the association is joined using the appropriate join type
|
486
|
+
(either inner join or left outer join) based on the existing joins in the scope.
|
2063
487
|
|
2064
|
-
|
488
|
+
This prevents unintentional overrides of existing join types and ensures consistency in the generated SQL queries.
|
2065
489
|
|
2066
|
-
|
490
|
+
Example:
|
2067
491
|
|
2068
|
-
SQLite has some quirks around double-quoted string literals.
|
2069
|
-
It first tries to consider double-quoted strings as identifier names, but if they don't exist
|
2070
|
-
it then considers them as string literals. Because of this, typos can silently go unnoticed.
|
2071
|
-
For example, it is possible to create an index for a non existing column.
|
2072
|
-
See [SQLite documentation](https://www.sqlite.org/quirks.html#double_quoted_string_literals_are_accepted) for more details.
|
2073
492
|
|
2074
|
-
If you don't want this behavior, you can disable it via:
|
2075
493
|
|
2076
494
|
```ruby
|
2077
|
-
#
|
2078
|
-
|
495
|
+
# `associated` will use `LEFT JOIN` instead of using `JOIN`
|
496
|
+
Post.left_joins(:author).where.associated(:author)
|
2079
497
|
```
|
2080
498
|
|
2081
|
-
|
2082
|
-
|
2083
|
-
*fatkodima*, *Jean Boussier*
|
499
|
+
*Saleh Alhaddad*
|
2084
500
|
|
2085
|
-
*
|
501
|
+
* Fix an issue where `ActiveRecord::Encryption` configurations are not ready before the loading
|
502
|
+
of Active Record models, when an application is eager loaded. As a result, encrypted attributes
|
503
|
+
could be misconfigured in some cases.
|
2086
504
|
|
2087
|
-
|
2088
|
-
ivar. This led to a confusing situation where despite having the correct data the relation
|
2089
|
-
still reported a stale cache_version.
|
505
|
+
*Maxime Réty*
|
2090
506
|
|
2091
|
-
|
507
|
+
* Deprecate defining an `enum` with keyword arguments.
|
2092
508
|
|
2093
509
|
```ruby
|
2094
|
-
|
2095
|
-
|
2096
|
-
|
2097
|
-
|
510
|
+
class Function > ApplicationRecord
|
511
|
+
# BAD
|
512
|
+
enum color: [:red, :blue],
|
513
|
+
type: [:instance, :class]
|
2098
514
|
|
2099
|
-
|
2100
|
-
|
2101
|
-
|
515
|
+
# GOOD
|
516
|
+
enum :color, [:red, :blue]
|
517
|
+
enum :type, [:instance, :class]
|
518
|
+
end
|
2102
519
|
```
|
2103
520
|
|
2104
|
-
|
521
|
+
*Hartley McGuire*
|
522
|
+
|
523
|
+
* Add `config.active_record.validate_migration_timestamps` option for validating migration timestamps.
|
2105
524
|
|
2106
|
-
|
525
|
+
When set, validates that the timestamp prefix for a migration is no more than a day ahead of
|
526
|
+
the timestamp associated with the current time. This is designed to prevent migrations prefixes
|
527
|
+
from being hand-edited to future timestamps, which impacts migration generation and other
|
528
|
+
migration commands.
|
2107
529
|
|
2108
|
-
*
|
530
|
+
*Adrianna Chang*
|
2109
531
|
|
2110
|
-
|
2111
|
-
add_exclusion_constraint :invoices, "daterange(start_date, end_date) WITH &&", using: :gist, name: "invoices_date_overlap"
|
2112
|
-
remove_exclusion_constraint :invoices, name: "invoices_date_overlap"
|
2113
|
-
```
|
532
|
+
* Properly synchronize `Mysql2Adapter#active?` and `TrilogyAdapter#active?`.
|
2114
533
|
|
2115
|
-
|
534
|
+
As well as `disconnect!` and `verify!`.
|
2116
535
|
|
2117
|
-
|
536
|
+
This generally isn't a big problem as connections must not be shared between
|
537
|
+
threads, but is required when running transactional tests or system tests
|
538
|
+
and could lead to a SEGV.
|
2118
539
|
|
2119
|
-
*
|
540
|
+
*Jean Boussier*
|
2120
541
|
|
2121
|
-
|
2122
|
-
treat it as truthy and make your column nullable. This could be surprising, so now
|
2123
|
-
the input must be either `true` or `false`.
|
542
|
+
* Support `:source_location` tag option for query log tags.
|
2124
543
|
|
2125
544
|
```ruby
|
2126
|
-
|
2127
|
-
change_column_null :table, :column, false # good
|
2128
|
-
change_column_null :table, :column, from: true, to: false # raises (previously this made the column nullable)
|
545
|
+
config.active_record.query_log_tags << :source_location
|
2129
546
|
```
|
2130
547
|
|
2131
|
-
|
2132
|
-
|
2133
|
-
|
2134
|
-
|
2135
|
-
Fixes #45130.
|
548
|
+
Calculating the caller location is a costly operation and should be used primarily in development
|
549
|
+
(note, there is also a `config.active_record.verbose_query_logs` that serves the same purpose)
|
550
|
+
or occasionally on production for debugging purposes.
|
2136
551
|
|
2137
552
|
*fatkodima*
|
2138
553
|
|
2139
|
-
*
|
2140
|
-
|
2141
|
-
*Eddie Lebow*
|
554
|
+
* Add an option to `ActiveRecord::Encryption::Encryptor` to disable compression.
|
2142
555
|
|
2143
|
-
|
2144
|
-
|
2145
|
-
*edsharp*
|
2146
|
-
|
2147
|
-
* Add validity for PostgreSQL indexes.
|
556
|
+
Allow compression to be disabled by setting `compress: false`
|
2148
557
|
|
2149
558
|
```ruby
|
2150
|
-
|
2151
|
-
|
559
|
+
class User
|
560
|
+
encrypts :name, encryptor: ActiveRecord::Encryption::Encryptor.new(compress: false)
|
561
|
+
end
|
2152
562
|
```
|
2153
563
|
|
2154
|
-
*
|
564
|
+
*Donal McBreen*
|
2155
565
|
|
2156
|
-
*
|
566
|
+
* Deprecate passing strings to `ActiveRecord::Tasks::DatabaseTasks.cache_dump_filename`.
|
2157
567
|
|
2158
|
-
|
568
|
+
A `ActiveRecord::DatabaseConfigurations::DatabaseConfig` object should be passed instead.
|
2159
569
|
|
2160
|
-
*
|
570
|
+
*Rafael Mendonça França*
|
2161
571
|
|
2162
|
-
|
2163
|
-
uniqueness of each attribute having a `uniqueness` validation, even if that attribute hasn't changed.
|
2164
|
-
If the database has the corresponding unique index, then this validation can never fail for persisted
|
2165
|
-
records, and we could safely skip it.
|
572
|
+
* Add `row_count` field to `sql.active_record` notification.
|
2166
573
|
|
2167
|
-
|
574
|
+
This field returns the amount of rows returned by the query that emitted the notification.
|
2168
575
|
|
2169
|
-
|
576
|
+
This metric is useful in cases where one wants to detect queries with big result sets.
|
2170
577
|
|
2171
|
-
|
578
|
+
*Marvin Bitterlich*
|
2172
579
|
|
2173
|
-
|
580
|
+
* Consistently raise an `ArgumentError` when passing an invalid argument to a nested attributes association writer.
|
2174
581
|
|
2175
|
-
|
582
|
+
Previously, this would only raise on collection associations and produce a generic error on singular associations.
|
2176
583
|
|
2177
|
-
|
584
|
+
Now, it will raise on both collection and singular associations.
|
2178
585
|
|
2179
|
-
*
|
586
|
+
*Joshua Young*
|
2180
587
|
|
2181
|
-
|
2182
|
-
ActiveRecord::SchemaDumper.ignore_tables = [/^_/]
|
2183
|
-
```
|
588
|
+
* Fix single quote escapes on default generated MySQL columns.
|
2184
589
|
|
2185
|
-
|
590
|
+
MySQL 5.7.5+ supports generated columns, which can be used to create a column that is computed from an expression.
|
2186
591
|
|
2187
|
-
|
592
|
+
Previously, the schema dump would output a string with double escapes for generated columns with single quotes in the default expression.
|
2188
593
|
|
2189
|
-
|
2190
|
-
contradiction, such as `User.where(id: []).count`. We no longer perform a
|
2191
|
-
query in that scenario.
|
594
|
+
This would result in issues when importing the schema on a fresh instance of a MySQL database.
|
2192
595
|
|
2193
|
-
|
2194
|
-
`minimum` and `maximum`
|
596
|
+
Now, the string will not be escaped and will be valid Ruby upon importing of the schema.
|
2195
597
|
|
2196
|
-
*
|
598
|
+
*Yash Kapadia*
|
2197
599
|
|
2198
|
-
*
|
600
|
+
* Fix Migrations with versions older than 7.1 validating options given to
|
601
|
+
`add_reference` and `t.references`.
|
2199
602
|
|
2200
|
-
|
2201
|
-
class Book < ApplicationRecord
|
2202
|
-
alias_attribute :title, :name
|
2203
|
-
end
|
603
|
+
*Hartley McGuire*
|
2204
604
|
|
2205
|
-
|
2206
|
-
```
|
605
|
+
* Add `<role>_types` class method to `ActiveRecord::DelegatedType` so that the delegated types can be introspected.
|
2207
606
|
|
2208
|
-
*
|
607
|
+
*JP Rosevear*
|
2209
608
|
|
2210
|
-
*
|
609
|
+
* Make `schema_dump`, `query_cache`, `replica` and `database_tasks` configurable via `DATABASE_URL`.
|
2211
610
|
|
2212
|
-
This
|
2213
|
-
It will encrypt those values at creation time. Before, it would raise an
|
2214
|
-
error unless `config.active_record.encryption.support_unencrypted_data` was true.
|
611
|
+
This wouldn't always work previously because boolean values would be interpreted as strings.
|
2215
612
|
|
2216
|
-
|
613
|
+
e.g. `DATABASE_URL=postgres://localhost/foo?schema_dump=false` now properly disable dumping the schema
|
614
|
+
cache.
|
2217
615
|
|
2218
|
-
*
|
616
|
+
*Mike Coutermarsh*, *Jean Boussier*
|
2219
617
|
|
2220
|
-
|
2221
|
-
but you can now change it to anything you like. If the method returns true,
|
2222
|
-
`Resolver#read` gets called meaning the request could be served by the
|
2223
|
-
replica database.
|
618
|
+
* Introduce `ActiveRecord::Transactions::ClassMethods#set_callback`.
|
2224
619
|
|
2225
|
-
|
620
|
+
It is identical to `ActiveSupport::Callbacks::ClassMethods#set_callback`
|
621
|
+
but with support for `after_commit` and `after_rollback` callback options.
|
2226
622
|
|
2227
|
-
*
|
623
|
+
*Joshua Young*
|
2228
624
|
|
2229
|
-
|
625
|
+
* Make `ActiveRecord::Encryption::Encryptor` agnostic of the serialization format used for encrypted data.
|
2230
626
|
|
2231
|
-
|
627
|
+
Previously, the encryptor instance only allowed an encrypted value serialized as a `String` to be passed to the message serializer.
|
2232
628
|
|
2233
|
-
|
2234
|
-
way to dump a schema to both SQL and Ruby formats. You can now do this with
|
2235
|
-
an environment variable. For example:
|
629
|
+
Now, the encryptor lets the configured `message_serializer` decide which types of serialized encrypted values are supported. A custom serialiser is therefore allowed to serialize `ActiveRecord::Encryption::Message` objects using a type other than `String`.
|
2236
630
|
|
2237
|
-
|
2238
|
-
SCHEMA_FORMAT=sql rake db:schema:dump
|
2239
|
-
```
|
631
|
+
The default `ActiveRecord::Encryption::MessageSerializer` already ensures that only `String` objects are passed for deserialization.
|
2240
632
|
|
2241
|
-
*
|
633
|
+
*Maxime Réty*
|
2242
634
|
|
2243
|
-
*
|
635
|
+
* Fix `encrypted_attribute?` to take into account context properties passed to `encrypts`.
|
2244
636
|
|
2245
|
-
|
2246
|
-
if using `db:schema:load`. Further more the function name would be
|
2247
|
-
added as string content when saving new records.
|
637
|
+
*Maxime Réty*
|
2248
638
|
|
2249
|
-
|
639
|
+
* The object returned by `explain` now responds to `pluck`, `first`,
|
640
|
+
`last`, `average`, `count`, `maximum`, `minimum`, and `sum`. Those
|
641
|
+
new methods run `EXPLAIN` on the corresponding queries:
|
2250
642
|
|
2251
|
-
|
643
|
+
```ruby
|
644
|
+
User.all.explain.count
|
645
|
+
# EXPLAIN SELECT COUNT(*) FROM `users`
|
646
|
+
# ...
|
2252
647
|
|
2253
|
-
|
2254
|
-
|
2255
|
-
|
2256
|
-
|
2257
|
-
in a single background job. If the number of dependent records is greater
|
2258
|
-
than this configuration, the records will be destroyed in multiple
|
2259
|
-
background jobs.
|
648
|
+
User.all.explain.maximum(:id)
|
649
|
+
# EXPLAIN SELECT MAX(`users`.`id`) FROM `users`
|
650
|
+
# ...
|
651
|
+
```
|
2260
652
|
|
2261
|
-
*
|
653
|
+
*Petrik de Heus*
|
2262
654
|
|
2263
|
-
*
|
655
|
+
* Fixes an issue where `validates_associated` `:on` option wasn't respected
|
656
|
+
when validating associated records.
|
2264
657
|
|
2265
|
-
*
|
658
|
+
*Austen Madden*, *Alex Ghiculescu*, *Rafał Brize*
|
2266
659
|
|
2267
|
-
*
|
660
|
+
* Allow overriding SQLite defaults from `database.yml`.
|
2268
661
|
|
2269
|
-
|
2270
|
-
|
662
|
+
Any PRAGMA configuration set under the `pragmas` key in the configuration
|
663
|
+
file takes precedence over Rails' defaults, and additional PRAGMAs can be
|
664
|
+
set as well.
|
2271
665
|
|
2272
|
-
```
|
2273
|
-
|
666
|
+
```yaml
|
667
|
+
database: storage/development.sqlite3
|
668
|
+
timeout: 5000
|
669
|
+
pragmas:
|
670
|
+
journal_mode: off
|
671
|
+
temp_store: memory
|
2274
672
|
```
|
2275
673
|
|
2276
|
-
*
|
2277
|
-
|
2278
|
-
* Reduce the memory footprint of fixtures accessors.
|
2279
|
-
|
2280
|
-
Until now fixtures accessors were eagerly defined using `define_method`.
|
2281
|
-
So the memory usage was directly dependent of the number of fixtures and
|
2282
|
-
test suites.
|
2283
|
-
|
2284
|
-
Instead fixtures accessors are now implemented with `method_missing`,
|
2285
|
-
so they incur much less memory and CPU overhead.
|
674
|
+
*Stephen Margheim*
|
2286
675
|
|
2287
|
-
|
676
|
+
* Remove warning message when running SQLite in production, but leave it unconfigured.
|
2288
677
|
|
2289
|
-
|
678
|
+
There are valid use cases for running SQLite in production. However, it must be done
|
679
|
+
with care, so instead of a warning most users won't see anyway, it's preferable to
|
680
|
+
leave the configuration commented out to force them to think about having the database
|
681
|
+
on a persistent volume etc.
|
2290
682
|
|
2291
|
-
|
2292
|
-
applications to specify the job that will be used to destroy associated
|
2293
|
-
records in the background for `has_many` associations with the
|
2294
|
-
`dependent: :destroy_async` option. Previously, that was ignored, which
|
2295
|
-
meant the default `ActiveRecord::DestroyAssociationAsyncJob` always
|
2296
|
-
destroyed records in the background.
|
683
|
+
*Jacopo Beschi*, *Jean Boussier*
|
2297
684
|
|
2298
|
-
|
685
|
+
* Add support for generated columns to the SQLite3 adapter.
|
2299
686
|
|
2300
|
-
|
687
|
+
Generated columns (both stored and dynamic) are supported since version 3.31.0 of SQLite.
|
688
|
+
This adds support for those to the SQLite3 adapter.
|
2301
689
|
|
2302
|
-
|
690
|
+
```ruby
|
691
|
+
create_table :users do |t|
|
692
|
+
t.string :name
|
693
|
+
t.virtual :name_upper, type: :string, as: 'UPPER(name)'
|
694
|
+
t.virtual :name_lower, type: :string, as: 'LOWER(name)', stored: true
|
695
|
+
end
|
696
|
+
```
|
2303
697
|
|
2304
|
-
*
|
698
|
+
*Stephen Margheim*
|
2305
699
|
|
2306
|
-
|
700
|
+
* TrilogyAdapter: ignore `host` if `socket` parameter is set.
|
2307
701
|
|
2308
|
-
|
702
|
+
This allows to configure a connection on a UNIX socket via `DATABASE_URL`:
|
2309
703
|
|
2310
|
-
|
704
|
+
```
|
705
|
+
DATABASE_URL=trilogy://does-not-matter/my_db_production?socket=/var/run/mysql.sock
|
706
|
+
```
|
2311
707
|
|
2312
|
-
*
|
708
|
+
*Jean Boussier*
|
2313
709
|
|
2314
|
-
|
710
|
+
* Make `assert_queries_count`, `assert_no_queries`, `assert_queries_match`, and
|
711
|
+
`assert_no_queries_match` assertions public.
|
2315
712
|
|
2316
|
-
|
713
|
+
To assert the expected number of queries are made, Rails internally uses `assert_queries_count` and
|
714
|
+
`assert_no_queries`. To assert that specific SQL queries are made, `assert_queries_match` and
|
715
|
+
`assert_no_queries_match` are used. These assertions can now be used in applications as well.
|
2317
716
|
|
2318
|
-
|
2319
|
-
|
717
|
+
```ruby
|
718
|
+
class ArticleTest < ActiveSupport::TestCase
|
719
|
+
test "queries are made" do
|
720
|
+
assert_queries_count(1) { Article.first }
|
721
|
+
end
|
2320
722
|
|
2321
|
-
|
2322
|
-
|
723
|
+
test "creates a foreign key" do
|
724
|
+
assert_queries_match(/ADD FOREIGN KEY/i, include_schema: true) do
|
725
|
+
@connection.add_foreign_key(:comments, :posts)
|
726
|
+
end
|
727
|
+
end
|
728
|
+
end
|
729
|
+
```
|
2323
730
|
|
2324
|
-
*
|
731
|
+
*Petrik de Heus*, *fatkodima*
|
2325
732
|
|
2326
|
-
* Fix
|
733
|
+
* Fix `has_secure_token` calls the setter method on initialize.
|
2327
734
|
|
2328
|
-
|
735
|
+
*Abeid Ahmed*
|
2329
736
|
|
2330
|
-
|
737
|
+
* When using a `DATABASE_URL`, allow for a configuration to map the protocol in the URL to a specific database
|
738
|
+
adapter. This allows decoupling the adapter the application chooses to use from the database connection details
|
739
|
+
set in the deployment environment.
|
2331
740
|
|
2332
|
-
|
741
|
+
```ruby
|
742
|
+
# ENV['DATABASE_URL'] = "mysql://localhost/example_database"
|
743
|
+
config.active_record.protocol_adapters.mysql = "trilogy"
|
744
|
+
# will connect to MySQL using the trilogy adapter
|
745
|
+
```
|
2333
746
|
|
2334
|
-
|
2335
|
-
issued for both real transactions and savepoints. This breaks MySQL which
|
2336
|
-
disallows rollbacks of savepoints following a deadlock.
|
747
|
+
*Jean Boussier*, *Kevin McPhillips*
|
2337
748
|
|
2338
|
-
|
2339
|
-
the
|
749
|
+
* In cases where MySQL returns `warning_count` greater than zero, but returns no warnings when
|
750
|
+
the `SHOW WARNINGS` query is executed, `ActiveRecord.db_warnings_action` proc will still be
|
751
|
+
called with a generic warning message rather than silently ignoring the warning(s).
|
2340
752
|
|
2341
|
-
|
753
|
+
*Kevin McPhillips*
|
2342
754
|
|
2343
|
-
|
755
|
+
* `DatabaseConfigurations#configs_for` accepts a symbol in the `name` parameter.
|
2344
756
|
|
2345
|
-
*
|
757
|
+
*Andrew Novoselac*
|
2346
758
|
|
2347
|
-
|
2348
|
-
|
2349
|
-
|
759
|
+
* Fix `where(field: values)` queries when `field` is a serialized attribute
|
760
|
+
(for example, when `field` uses `ActiveRecord::Base.serialize` or is a JSON
|
761
|
+
column).
|
2350
762
|
|
2351
|
-
*
|
763
|
+
*João Alves*
|
2352
764
|
|
2353
|
-
*
|
765
|
+
* Make the output of `ActiveRecord::Core#inspect` configurable.
|
2354
766
|
|
2355
|
-
|
767
|
+
By default, calling `inspect` on a record will yield a formatted string including just the `id`.
|
2356
768
|
|
2357
769
|
```ruby
|
2358
|
-
|
2359
|
-
before_save :check_title
|
2360
|
-
|
2361
|
-
def check_title
|
2362
|
-
throw(:abort) if title == "abort"
|
2363
|
-
end
|
2364
|
-
end
|
2365
|
-
|
2366
|
-
topic = Topic.create(title: "Test Title")
|
2367
|
-
# #=> #<Topic title: "Test Title">
|
2368
|
-
topic.update_attribute!(:title, "Another Title")
|
2369
|
-
# #=> #<Topic title: "Another Title">
|
2370
|
-
topic.update_attribute!(:title, "abort")
|
2371
|
-
# raises ActiveRecord::RecordNotSaved
|
770
|
+
Post.first.inspect #=> "#<Post id: 1>"
|
2372
771
|
```
|
2373
772
|
|
2374
|
-
|
2375
|
-
|
2376
|
-
* Avoid loading every record in `ActiveRecord::Relation#pretty_print`
|
773
|
+
The attributes to be included in the output of `inspect` can be configured with
|
774
|
+
`ActiveRecord::Core#attributes_for_inspect`.
|
2377
775
|
|
2378
776
|
```ruby
|
2379
|
-
|
2380
|
-
|
2381
|
-
|
2382
|
-
# After
|
2383
|
-
pp Foo.all # Shows 10 items and an ellipsis.
|
777
|
+
Post.attributes_for_inspect = [:id, :title]
|
778
|
+
Post.first.inspect #=> "#<Post id: 1, title: "Hello, World!">"
|
2384
779
|
```
|
2385
780
|
|
2386
|
-
|
2387
|
-
|
2388
|
-
* Change `QueryMethods#in_order_of` to drop records not listed in values.
|
2389
|
-
|
2390
|
-
`in_order_of` now filters down to the values provided, to match the behavior of the `Enumerable` version.
|
2391
|
-
|
2392
|
-
*Kevin Newton*
|
2393
|
-
|
2394
|
-
* Allow named expression indexes to be revertible.
|
2395
|
-
|
2396
|
-
Previously, the following code would raise an error in a reversible migration executed while rolling back, due to the index name not being used in the index removal.
|
781
|
+
With `attributes_for_inspect` set to `:all`, `inspect` will list all the record's attributes.
|
2397
782
|
|
2398
783
|
```ruby
|
2399
|
-
|
784
|
+
Post.attributes_for_inspect = :all
|
785
|
+
Post.first.inspect #=> "#<Post id: 1, title: "Hello, World!", published_at: "2023-10-23 14:28:11 +0000">"
|
2400
786
|
```
|
2401
787
|
|
2402
|
-
|
788
|
+
In `development` and `test` mode, `attributes_for_inspect` will be set to `:all` by default.
|
2403
789
|
|
2404
|
-
|
790
|
+
You can also call `full_inspect` to get an inspection with all the attributes.
|
2405
791
|
|
2406
|
-
|
792
|
+
The attributes in `attribute_for_inspect` will also be used for `pretty_print`.
|
2407
793
|
|
2408
|
-
|
794
|
+
*Andrew Novoselac*
|
795
|
+
|
796
|
+
* Don't mark attributes as changed when reassigned to `Float::INFINITY` or
|
797
|
+
`-Float::INFINITY`.
|
2409
798
|
|
2410
|
-
*
|
799
|
+
*Maicol Bentancor*
|
2411
800
|
|
2412
|
-
*
|
801
|
+
* Support the `RETURNING` clause for MariaDB.
|
2413
802
|
|
2414
|
-
|
2415
|
-
bigint instead of integer for the SQLite Adapter.
|
803
|
+
*fatkodima*, *Nikolay Kondratyev*
|
2416
804
|
|
2417
|
-
|
805
|
+
* The SQLite3 adapter now implements the `supports_deferrable_constraints?` contract.
|
2418
806
|
|
2419
|
-
|
807
|
+
Allows foreign keys to be deferred by adding the `:deferrable` key to the `foreign_key` options.
|
2420
808
|
|
2421
809
|
```ruby
|
2422
|
-
|
810
|
+
add_reference :person, :alias, foreign_key: { deferrable: :deferred }
|
811
|
+
add_reference :alias, :person, foreign_key: { deferrable: :deferred }
|
2423
812
|
```
|
2424
813
|
|
2425
|
-
|
2426
|
-
value is still ordered.
|
2427
|
-
|
2428
|
-
*Jean Boussier*
|
2429
|
-
|
2430
|
-
* Fix quoting of column aliases generated by calculation methods.
|
814
|
+
*Stephen Margheim*
|
2431
815
|
|
2432
|
-
|
2433
|
-
is a valid identifier.
|
816
|
+
* Add the `set_constraints` helper to PostgreSQL connections.
|
2434
817
|
|
2435
818
|
```ruby
|
2436
|
-
|
2437
|
-
|
819
|
+
Post.create!(user_id: -1) # => ActiveRecord::InvalidForeignKey
|
820
|
+
|
821
|
+
Post.transaction do
|
822
|
+
Post.connection.set_constraints(:deferred)
|
823
|
+
p = Post.create!(user_id: -1)
|
824
|
+
u = User.create!
|
825
|
+
p.user = u
|
826
|
+
p.save!
|
2438
827
|
end
|
2439
|
-
Test.group(:id).count
|
2440
|
-
# syntax error at or near "1" (ActiveRecord::StatementInvalid)
|
2441
|
-
# LINE 1: SELECT COUNT(*) AS count_all, "1abc"."id" AS 1abc_id FROM "1...
|
2442
828
|
```
|
2443
829
|
|
2444
|
-
*
|
830
|
+
*Cody Cutrer*
|
2445
831
|
|
2446
|
-
*
|
832
|
+
* Include `ActiveModel::API` in `ActiveRecord::Base`.
|
2447
833
|
|
2448
|
-
|
2449
|
-
returns early when a user with a matching email is not found:
|
834
|
+
*Sean Doyle*
|
2450
835
|
|
2451
|
-
|
2452
|
-
|
2453
|
-
|
836
|
+
* Ensure `#signed_id` outputs `url_safe` strings.
|
837
|
+
|
838
|
+
*Jason Meller*
|
2454
839
|
|
2455
|
-
|
2456
|
-
attacker can determine if a user account with a given email exists. After
|
2457
|
-
confirming that an account exists, the attacker can try passwords associated
|
2458
|
-
with that email address from other leaked databases, in case the user
|
2459
|
-
re-used a password across multiple sites (a common practice). Additionally,
|
2460
|
-
knowing an account email address allows the attacker to attempt a targeted
|
2461
|
-
phishing ("spear phishing") attack.
|
840
|
+
* Add `nulls_last` and working `desc.nulls_first` for MySQL.
|
2462
841
|
|
2463
|
-
|
2464
|
-
|
842
|
+
*Tristan Fellows*
|
843
|
+
|
844
|
+
* Allow for more complex hash arguments for `order` which mimics `where` in `ActiveRecord::Relation`.
|
2465
845
|
|
2466
846
|
```ruby
|
2467
|
-
|
847
|
+
Topic.includes(:posts).order(posts: { created_at: :desc })
|
2468
848
|
```
|
2469
849
|
|
2470
|
-
*
|
2471
|
-
|
850
|
+
*Myles Boone*
|
2472
851
|
|
2473
|
-
Please check [7-
|
852
|
+
Please check [7-1-stable](https://github.com/rails/rails/blob/7-1-stable/activerecord/CHANGELOG.md) for previous changes.
|