activerecord 7.0.8.1 → 7.1.4
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.
Potentially problematic release.
This version of activerecord might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/CHANGELOG.md +1780 -1437
- data/MIT-LICENSE +1 -1
- data/README.rdoc +16 -16
- data/lib/active_record/aggregations.rb +16 -13
- data/lib/active_record/association_relation.rb +1 -1
- data/lib/active_record/associations/association.rb +20 -4
- data/lib/active_record/associations/association_scope.rb +16 -9
- data/lib/active_record/associations/belongs_to_association.rb +14 -6
- data/lib/active_record/associations/builder/association.rb +3 -3
- data/lib/active_record/associations/builder/belongs_to.rb +21 -8
- data/lib/active_record/associations/builder/has_and_belongs_to_many.rb +1 -5
- data/lib/active_record/associations/builder/singular_association.rb +4 -0
- data/lib/active_record/associations/collection_association.rb +19 -13
- data/lib/active_record/associations/collection_proxy.rb +15 -10
- data/lib/active_record/associations/foreign_association.rb +10 -3
- data/lib/active_record/associations/has_many_association.rb +20 -13
- data/lib/active_record/associations/has_many_through_association.rb +10 -6
- data/lib/active_record/associations/has_one_association.rb +10 -3
- data/lib/active_record/associations/join_dependency.rb +6 -6
- data/lib/active_record/associations/preloader/association.rb +31 -7
- data/lib/active_record/associations/preloader.rb +13 -10
- data/lib/active_record/associations/singular_association.rb +1 -1
- data/lib/active_record/associations/through_association.rb +22 -11
- data/lib/active_record/associations.rb +319 -217
- data/lib/active_record/attribute_assignment.rb +0 -2
- data/lib/active_record/attribute_methods/before_type_cast.rb +17 -0
- data/lib/active_record/attribute_methods/dirty.rb +53 -35
- data/lib/active_record/attribute_methods/primary_key.rb +76 -24
- data/lib/active_record/attribute_methods/query.rb +28 -16
- data/lib/active_record/attribute_methods/read.rb +21 -8
- data/lib/active_record/attribute_methods/serialization.rb +150 -31
- data/lib/active_record/attribute_methods/write.rb +6 -6
- data/lib/active_record/attribute_methods.rb +145 -21
- data/lib/active_record/attributes.rb +3 -3
- data/lib/active_record/autosave_association.rb +59 -10
- data/lib/active_record/base.rb +7 -2
- data/lib/active_record/callbacks.rb +10 -24
- data/lib/active_record/coders/column_serializer.rb +61 -0
- data/lib/active_record/coders/json.rb +1 -1
- data/lib/active_record/coders/yaml_column.rb +70 -42
- data/lib/active_record/connection_adapters/abstract/connection_handler.rb +163 -88
- data/lib/active_record/connection_adapters/abstract/connection_pool/queue.rb +2 -0
- data/lib/active_record/connection_adapters/abstract/connection_pool/reaper.rb +3 -1
- data/lib/active_record/connection_adapters/abstract/connection_pool.rb +80 -50
- data/lib/active_record/connection_adapters/abstract/database_limits.rb +5 -0
- data/lib/active_record/connection_adapters/abstract/database_statements.rb +129 -31
- data/lib/active_record/connection_adapters/abstract/query_cache.rb +62 -23
- data/lib/active_record/connection_adapters/abstract/quoting.rb +41 -6
- data/lib/active_record/connection_adapters/abstract/savepoints.rb +4 -3
- data/lib/active_record/connection_adapters/abstract/schema_creation.rb +18 -4
- data/lib/active_record/connection_adapters/abstract/schema_definitions.rb +137 -11
- data/lib/active_record/connection_adapters/abstract/schema_statements.rb +296 -127
- data/lib/active_record/connection_adapters/abstract/transaction.rb +287 -58
- data/lib/active_record/connection_adapters/abstract_adapter.rb +511 -92
- data/lib/active_record/connection_adapters/abstract_mysql_adapter.rb +244 -121
- data/lib/active_record/connection_adapters/column.rb +9 -0
- data/lib/active_record/connection_adapters/mysql/column.rb +1 -0
- data/lib/active_record/connection_adapters/mysql/database_statements.rb +22 -143
- data/lib/active_record/connection_adapters/mysql/quoting.rb +16 -12
- data/lib/active_record/connection_adapters/mysql/schema_creation.rb +9 -0
- data/lib/active_record/connection_adapters/mysql/schema_definitions.rb +6 -0
- data/lib/active_record/connection_adapters/mysql/schema_dumper.rb +1 -1
- data/lib/active_record/connection_adapters/mysql/schema_statements.rb +19 -13
- data/lib/active_record/connection_adapters/mysql2/database_statements.rb +151 -0
- data/lib/active_record/connection_adapters/mysql2_adapter.rb +106 -55
- data/lib/active_record/connection_adapters/pool_config.rb +14 -5
- data/lib/active_record/connection_adapters/pool_manager.rb +19 -9
- data/lib/active_record/connection_adapters/postgresql/column.rb +14 -3
- data/lib/active_record/connection_adapters/postgresql/database_statements.rb +74 -40
- data/lib/active_record/connection_adapters/postgresql/oid/cidr.rb +6 -0
- data/lib/active_record/connection_adapters/postgresql/oid/money.rb +3 -2
- data/lib/active_record/connection_adapters/postgresql/oid/range.rb +11 -2
- data/lib/active_record/connection_adapters/postgresql/oid/timestamp_with_time_zone.rb +1 -1
- data/lib/active_record/connection_adapters/postgresql/quoting.rb +10 -6
- data/lib/active_record/connection_adapters/postgresql/referential_integrity.rb +3 -9
- data/lib/active_record/connection_adapters/postgresql/schema_creation.rb +76 -6
- data/lib/active_record/connection_adapters/postgresql/schema_definitions.rb +131 -2
- data/lib/active_record/connection_adapters/postgresql/schema_dumper.rb +53 -0
- data/lib/active_record/connection_adapters/postgresql/schema_statements.rb +362 -61
- data/lib/active_record/connection_adapters/postgresql_adapter.rb +353 -192
- data/lib/active_record/connection_adapters/schema_cache.rb +287 -59
- data/lib/active_record/connection_adapters/sqlite3/column.rb +49 -0
- data/lib/active_record/connection_adapters/sqlite3/database_statements.rb +52 -39
- data/lib/active_record/connection_adapters/sqlite3/quoting.rb +4 -3
- data/lib/active_record/connection_adapters/sqlite3/schema_definitions.rb +1 -0
- data/lib/active_record/connection_adapters/sqlite3/schema_statements.rb +26 -7
- data/lib/active_record/connection_adapters/sqlite3_adapter.rb +211 -81
- data/lib/active_record/connection_adapters/statement_pool.rb +7 -0
- data/lib/active_record/connection_adapters/trilogy/database_statements.rb +99 -0
- data/lib/active_record/connection_adapters/trilogy_adapter.rb +258 -0
- data/lib/active_record/connection_adapters.rb +3 -1
- data/lib/active_record/connection_handling.rb +72 -95
- data/lib/active_record/core.rb +180 -153
- data/lib/active_record/counter_cache.rb +52 -27
- data/lib/active_record/database_configurations/database_config.rb +9 -3
- data/lib/active_record/database_configurations/hash_config.rb +28 -14
- data/lib/active_record/database_configurations/url_config.rb +17 -11
- data/lib/active_record/database_configurations.rb +86 -33
- data/lib/active_record/delegated_type.rb +15 -10
- data/lib/active_record/deprecator.rb +7 -0
- data/lib/active_record/destroy_association_async_job.rb +3 -1
- data/lib/active_record/encryption/auto_filtered_parameters.rb +66 -0
- data/lib/active_record/encryption/cipher/aes256_gcm.rb +4 -1
- data/lib/active_record/encryption/config.rb +25 -1
- data/lib/active_record/encryption/configurable.rb +12 -19
- data/lib/active_record/encryption/context.rb +10 -3
- data/lib/active_record/encryption/contexts.rb +5 -1
- data/lib/active_record/encryption/derived_secret_key_provider.rb +8 -2
- data/lib/active_record/encryption/encryptable_record.rb +42 -18
- data/lib/active_record/encryption/encrypted_attribute_type.rb +23 -8
- data/lib/active_record/encryption/extended_deterministic_queries.rb +66 -69
- data/lib/active_record/encryption/extended_deterministic_uniqueness_validator.rb +3 -3
- data/lib/active_record/encryption/key_generator.rb +12 -1
- data/lib/active_record/encryption/message_serializer.rb +2 -0
- data/lib/active_record/encryption/properties.rb +3 -3
- data/lib/active_record/encryption/scheme.rb +22 -21
- data/lib/active_record/encryption.rb +1 -0
- data/lib/active_record/enum.rb +112 -28
- data/lib/active_record/errors.rb +112 -18
- data/lib/active_record/explain.rb +23 -3
- data/lib/active_record/fixture_set/model_metadata.rb +14 -4
- data/lib/active_record/fixture_set/render_context.rb +2 -0
- data/lib/active_record/fixture_set/table_row.rb +29 -8
- data/lib/active_record/fixtures.rb +135 -71
- data/lib/active_record/future_result.rb +40 -5
- data/lib/active_record/gem_version.rb +4 -4
- data/lib/active_record/inheritance.rb +30 -16
- data/lib/active_record/insert_all.rb +57 -10
- data/lib/active_record/integration.rb +8 -8
- data/lib/active_record/internal_metadata.rb +120 -30
- data/lib/active_record/locking/optimistic.rb +1 -1
- data/lib/active_record/locking/pessimistic.rb +5 -2
- data/lib/active_record/log_subscriber.rb +29 -12
- data/lib/active_record/marshalling.rb +56 -0
- data/lib/active_record/message_pack.rb +124 -0
- data/lib/active_record/middleware/database_selector/resolver.rb +4 -0
- data/lib/active_record/middleware/database_selector.rb +6 -8
- data/lib/active_record/middleware/shard_selector.rb +3 -1
- data/lib/active_record/migration/command_recorder.rb +104 -5
- data/lib/active_record/migration/compatibility.rb +145 -5
- data/lib/active_record/migration/default_strategy.rb +23 -0
- data/lib/active_record/migration/execution_strategy.rb +19 -0
- data/lib/active_record/migration/pending_migration_connection.rb +21 -0
- data/lib/active_record/migration.rb +219 -111
- data/lib/active_record/model_schema.rb +68 -44
- data/lib/active_record/nested_attributes.rb +24 -6
- data/lib/active_record/normalization.rb +167 -0
- data/lib/active_record/persistence.rb +188 -37
- data/lib/active_record/promise.rb +84 -0
- data/lib/active_record/query_cache.rb +4 -22
- data/lib/active_record/query_logs.rb +77 -52
- data/lib/active_record/query_logs_formatter.rb +41 -0
- data/lib/active_record/querying.rb +15 -2
- data/lib/active_record/railtie.rb +105 -46
- data/lib/active_record/railties/controller_runtime.rb +12 -6
- data/lib/active_record/railties/databases.rake +144 -150
- data/lib/active_record/railties/job_runtime.rb +23 -0
- data/lib/active_record/readonly_attributes.rb +32 -5
- data/lib/active_record/reflection.rb +181 -45
- data/lib/active_record/relation/batches/batch_enumerator.rb +5 -3
- data/lib/active_record/relation/batches.rb +190 -61
- data/lib/active_record/relation/calculations.rb +187 -63
- data/lib/active_record/relation/delegation.rb +23 -9
- data/lib/active_record/relation/finder_methods.rb +77 -16
- data/lib/active_record/relation/merger.rb +2 -0
- data/lib/active_record/relation/predicate_builder/association_query_value.rb +11 -2
- data/lib/active_record/relation/predicate_builder/polymorphic_array_value.rb +10 -7
- data/lib/active_record/relation/predicate_builder/relation_handler.rb +5 -1
- data/lib/active_record/relation/predicate_builder.rb +26 -14
- data/lib/active_record/relation/query_attribute.rb +2 -1
- data/lib/active_record/relation/query_methods.rb +371 -68
- data/lib/active_record/relation/spawn_methods.rb +18 -1
- data/lib/active_record/relation.rb +103 -37
- data/lib/active_record/result.rb +19 -5
- data/lib/active_record/runtime_registry.rb +24 -1
- data/lib/active_record/sanitization.rb +51 -11
- data/lib/active_record/schema.rb +2 -3
- data/lib/active_record/schema_dumper.rb +46 -7
- data/lib/active_record/schema_migration.rb +68 -33
- data/lib/active_record/scoping/default.rb +15 -5
- data/lib/active_record/scoping/named.rb +2 -2
- data/lib/active_record/scoping.rb +2 -1
- data/lib/active_record/secure_password.rb +60 -0
- data/lib/active_record/secure_token.rb +21 -3
- data/lib/active_record/signed_id.rb +7 -5
- data/lib/active_record/store.rb +8 -8
- data/lib/active_record/suppressor.rb +3 -1
- data/lib/active_record/table_metadata.rb +10 -1
- data/lib/active_record/tasks/database_tasks.rb +142 -109
- data/lib/active_record/tasks/mysql_database_tasks.rb +15 -6
- data/lib/active_record/tasks/postgresql_database_tasks.rb +16 -13
- data/lib/active_record/tasks/sqlite_database_tasks.rb +15 -7
- data/lib/active_record/test_fixtures.rb +114 -96
- data/lib/active_record/timestamp.rb +30 -16
- data/lib/active_record/token_for.rb +113 -0
- data/lib/active_record/touch_later.rb +11 -6
- data/lib/active_record/transactions.rb +36 -10
- data/lib/active_record/type/adapter_specific_registry.rb +1 -8
- data/lib/active_record/type/internal/timezone.rb +7 -2
- data/lib/active_record/type/time.rb +4 -0
- data/lib/active_record/validations/absence.rb +1 -1
- data/lib/active_record/validations/numericality.rb +5 -4
- data/lib/active_record/validations/presence.rb +5 -28
- data/lib/active_record/validations/uniqueness.rb +47 -2
- data/lib/active_record/validations.rb +8 -4
- data/lib/active_record/version.rb +1 -1
- data/lib/active_record.rb +122 -17
- data/lib/arel/errors.rb +10 -0
- data/lib/arel/factory_methods.rb +4 -0
- data/lib/arel/nodes/binary.rb +6 -1
- data/lib/arel/nodes/bound_sql_literal.rb +61 -0
- data/lib/arel/nodes/cte.rb +36 -0
- data/lib/arel/nodes/fragments.rb +35 -0
- data/lib/arel/nodes/homogeneous_in.rb +1 -9
- data/lib/arel/nodes/leading_join.rb +8 -0
- data/lib/arel/nodes/node.rb +111 -2
- data/lib/arel/nodes/sql_literal.rb +6 -0
- data/lib/arel/nodes/table_alias.rb +4 -0
- data/lib/arel/nodes.rb +4 -0
- data/lib/arel/predications.rb +2 -0
- data/lib/arel/table.rb +9 -5
- data/lib/arel/tree_manager.rb +5 -1
- data/lib/arel/visitors/mysql.rb +8 -1
- data/lib/arel/visitors/to_sql.rb +83 -18
- data/lib/arel/visitors/visitor.rb +2 -2
- data/lib/arel.rb +16 -2
- data/lib/rails/generators/active_record/application_record/USAGE +8 -0
- data/lib/rails/generators/active_record/migration.rb +3 -1
- data/lib/rails/generators/active_record/model/USAGE +113 -0
- data/lib/rails/generators/active_record/model/model_generator.rb +15 -6
- metadata +48 -12
- data/lib/active_record/connection_adapters/legacy_pool_manager.rb +0 -35
- data/lib/active_record/null_relation.rb +0 -63
data/CHANGELOG.md
CHANGED
|
@@ -1,2381 +1,2724 @@
|
|
|
1
|
-
## Rails 7.
|
|
1
|
+
## Rails 7.1.4 (August 22, 2024) ##
|
|
2
2
|
|
|
3
|
-
*
|
|
3
|
+
* Allow to eager load nested nil associations.
|
|
4
4
|
|
|
5
|
+
*fatkodima*
|
|
5
6
|
|
|
6
|
-
|
|
7
|
+
* Fix `create_table` with `:auto_increment` option for MySQL adapter.
|
|
7
8
|
|
|
8
|
-
*
|
|
9
|
-
using 7.0+ Migrations and SQLite.
|
|
9
|
+
*fatkodima*
|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
* Don't load has_one associations during autosave.
|
|
12
12
|
|
|
13
|
-
*
|
|
13
|
+
*Eugene Kenny*
|
|
14
14
|
|
|
15
|
-
|
|
16
|
-
```ruby
|
|
17
|
-
Post.where(id: 1...3).unscope(where: :id).to_sql # "SELECT `posts`.* FROM `posts` WHERE `posts`.`id` >= 1 AND `posts`.`id` < 3"
|
|
15
|
+
* Fix migration ordering for `bin/rails db:prepare` across databases.
|
|
18
16
|
|
|
19
|
-
|
|
17
|
+
*fatkodima*
|
|
20
18
|
|
|
21
|
-
|
|
22
|
-
```ruby
|
|
23
|
-
Post.where(id: 1...3).unscope(where: :id).to_sql # "SELECT `posts`.* FROM `posts`"
|
|
24
|
-
```
|
|
19
|
+
* Fix `alias_attribute` to ignore methods defined in parent classes.
|
|
25
20
|
|
|
26
|
-
|
|
21
|
+
*Jean Boussier*
|
|
27
22
|
|
|
28
|
-
|
|
23
|
+
* Fix a performance regression in attribute methods.
|
|
29
24
|
|
|
30
|
-
*
|
|
25
|
+
*Jean Boussier*
|
|
31
26
|
|
|
32
|
-
|
|
33
|
-
class Product < ApplicationRecord
|
|
34
|
-
has_many :requests, as: :requestable, class_name: "ProductRequest", dependent: :destroy
|
|
35
|
-
end
|
|
27
|
+
* Fix Active Record configs variable shadowing.
|
|
36
28
|
|
|
37
|
-
|
|
38
|
-
class Request < ApplicationRecord
|
|
39
|
-
belongs_to :requestable, polymorphic: true
|
|
29
|
+
*Joel Lubrano*
|
|
40
30
|
|
|
41
|
-
|
|
42
|
-
end
|
|
31
|
+
* Fix running migrations on other databases when `database_tasks: false` on primary.
|
|
43
32
|
|
|
44
|
-
|
|
45
|
-
belongs_to :user
|
|
46
|
-
end
|
|
47
|
-
```
|
|
33
|
+
*fatkodima*
|
|
48
34
|
|
|
49
|
-
|
|
35
|
+
* Fix non-partial inserts for models with composite identity primary keys.
|
|
50
36
|
|
|
51
|
-
|
|
52
|
-
table_metadata.rb:22:in `has_column?': undefined method `key?' for nil:NilClass (NoMethodError)
|
|
53
|
-
```
|
|
37
|
+
*fatkodima*
|
|
54
38
|
|
|
55
|
-
|
|
39
|
+
* Fix `ActiveRecord::Relation#touch_all` with custom attribute aliased as attribute for update.
|
|
56
40
|
|
|
57
|
-
*
|
|
41
|
+
*fatkodima*
|
|
58
42
|
|
|
59
|
-
|
|
43
|
+
* Fix a crash when an Executor wrapped fork exit.
|
|
60
44
|
|
|
61
|
-
*
|
|
45
|
+
*Joé Dupuis*
|
|
62
46
|
|
|
63
|
-
|
|
47
|
+
* Fix `destroy_async` job for owners with composite primary keys.
|
|
64
48
|
|
|
65
|
-
|
|
49
|
+
*fatkodima*
|
|
66
50
|
|
|
67
|
-
*
|
|
51
|
+
* Ensure pre-7.1 migrations use legacy index names when using `rename_table`.
|
|
68
52
|
|
|
53
|
+
*fatkodima*
|
|
69
54
|
|
|
70
|
-
|
|
55
|
+
* Allow `primary_key:` association option to be composite.
|
|
71
56
|
|
|
72
|
-
*
|
|
57
|
+
*Nikita Vasilevsky*
|
|
73
58
|
|
|
59
|
+
* Do not try to alias on key update when raw SQL is supplied.
|
|
74
60
|
|
|
75
|
-
|
|
61
|
+
*Gabriel Amaral*
|
|
76
62
|
|
|
77
|
-
*
|
|
63
|
+
* Memoize `key_provider` from `key` or deterministic `key_provider` if any.
|
|
78
64
|
|
|
79
|
-
*
|
|
65
|
+
*Rosa Gutierrez*
|
|
80
66
|
|
|
81
|
-
* Fix `
|
|
67
|
+
* Fix `upsert` warning for MySQL.
|
|
82
68
|
|
|
83
|
-
*
|
|
69
|
+
*fatkodima*
|
|
84
70
|
|
|
85
|
-
* Fix
|
|
71
|
+
* Fix predicate builder for polymorphic models referencing models with composite primary keys.
|
|
86
72
|
|
|
87
|
-
*
|
|
73
|
+
*fatkodima*
|
|
88
74
|
|
|
89
|
-
*
|
|
75
|
+
* Fix `update_all/delete_all` on CPK model relation with join subquery.
|
|
90
76
|
|
|
91
|
-
*
|
|
77
|
+
*Nikita Vasilevsky*
|
|
92
78
|
|
|
93
|
-
*
|
|
94
|
-
behavior of `Enumerable#in_order_of`.
|
|
79
|
+
* Remove memoization to accept `key_provider` overridden by `with_encryption_context`.
|
|
95
80
|
|
|
96
|
-
|
|
97
|
-
with `nil` titles, the same as `Post.all.to_a.in_order_of(:title, [nil, "foo"])`.
|
|
81
|
+
*John Hawthorn*
|
|
98
82
|
|
|
99
|
-
|
|
83
|
+
* Raise error for Trilogy when prepared_statements is true.
|
|
100
84
|
|
|
101
|
-
|
|
85
|
+
Trilogy doesn't currently support prepared statements. The error that
|
|
86
|
+
applications would see is a `StatementInvalid` error. This doesn't quite point
|
|
87
|
+
you to the fact this isn't supported. So raise a more appropriate error
|
|
88
|
+
pointing to what to change.
|
|
102
89
|
|
|
103
|
-
|
|
104
|
-
but broke many assumptions which key these errors were stored.
|
|
90
|
+
*Eileen M. Uchitelle*
|
|
105
91
|
|
|
106
|
-
|
|
92
|
+
* Fix loading schema cache when all databases have disabled database tasks.
|
|
107
93
|
|
|
108
|
-
*
|
|
94
|
+
*fatkodima*
|
|
109
95
|
|
|
110
|
-
|
|
111
|
-
Now, any UPDATE or DELETE to a record is considered a change, and will result in `#previously_new_record?`
|
|
112
|
-
returning false.
|
|
96
|
+
* Always request `primary_key` in `RETURNING` if no other columns requested.
|
|
113
97
|
|
|
114
|
-
*
|
|
98
|
+
*Nikita Vasilevsky*
|
|
115
99
|
|
|
116
|
-
*
|
|
100
|
+
* Handle records being loaded with Marshal without triggering schema load
|
|
117
101
|
|
|
118
|
-
|
|
102
|
+
When using the old marshalling format for Active Record and loading
|
|
103
|
+
a serialized instance, it didn't trigger loading the schema and defining
|
|
104
|
+
attribute methods.
|
|
119
105
|
|
|
120
|
-
*
|
|
106
|
+
*Jean Boussier*
|
|
107
|
+
|
|
108
|
+
* Prevent some constant redefinition warnings when defining `inherited` on models.
|
|
121
109
|
|
|
122
|
-
|
|
123
|
-
the query cache, but this had the adverse effect to clearing the primary key when
|
|
124
|
-
the query argument contained an `ActiveRecord::Base` instance.
|
|
110
|
+
*Adrian Hirt*
|
|
125
111
|
|
|
126
|
-
|
|
112
|
+
* Fix a memory perfomance regression in attribute methods.
|
|
113
|
+
|
|
114
|
+
Attribute methods used much more memory and were slower to define than
|
|
115
|
+
they should have been.
|
|
127
116
|
|
|
128
117
|
*Jean Boussier*
|
|
129
118
|
|
|
119
|
+
* Fix an issue that could cause database connection leaks.
|
|
130
120
|
|
|
131
|
-
|
|
121
|
+
If Active Record successfully connected to the database, but then failed
|
|
122
|
+
to read the server informations, the connection would be leaked until the
|
|
123
|
+
Ruby garbage collector triggers.
|
|
132
124
|
|
|
133
|
-
*
|
|
125
|
+
*Jean Boussier*
|
|
134
126
|
|
|
135
|
-
|
|
127
|
+
* Fix an issue where the IDs reader method did not return expected results
|
|
128
|
+
for preloaded associations in models using composite primary keys.
|
|
136
129
|
|
|
137
|
-
*
|
|
130
|
+
*Jay Ang*
|
|
138
131
|
|
|
139
|
-
|
|
132
|
+
* PostgreSQL `Cidr#change?` detects the address prefix change.
|
|
140
133
|
|
|
141
|
-
*
|
|
134
|
+
*Taketo Takashima*
|
|
142
135
|
|
|
143
|
-
|
|
136
|
+
* Fix Active Record serialization to not include instantiated but not loaded associations
|
|
144
137
|
|
|
145
|
-
*
|
|
138
|
+
*Jean Boussier*, *Ben Kyriakou*
|
|
146
139
|
|
|
147
|
-
|
|
140
|
+
* Allow `Sqlite3Adapter` to use `sqlite3` gem version `2.x`
|
|
148
141
|
|
|
149
|
-
*
|
|
142
|
+
*Mike Dalessio*
|
|
143
|
+
|
|
144
|
+
* Strict loading using `:n_plus_one_only` does not eagerly load child associations.
|
|
145
|
+
|
|
146
|
+
With this change, child associations are no longer eagerly loaded, to
|
|
147
|
+
match intended behavior and to prevent non-deterministic order issues caused
|
|
148
|
+
by calling methods like `first` or `last`. As `first` and `last` don't cause
|
|
149
|
+
an N+1 by themselves, calling child associations will no longer raise.
|
|
150
|
+
Fixes #49473.
|
|
150
151
|
|
|
151
152
|
Before:
|
|
153
|
+
|
|
152
154
|
```ruby
|
|
153
|
-
|
|
154
|
-
|
|
155
|
+
person = Person.find(1)
|
|
156
|
+
person.strict_loading!(mode: :n_plus_one_only)
|
|
157
|
+
person.posts.first
|
|
158
|
+
# SELECT * FROM posts WHERE person_id = 1; -- non-deterministic order
|
|
159
|
+
person.posts.first.firm # raises ActiveRecord::StrictLoadingViolationError
|
|
155
160
|
```
|
|
156
161
|
|
|
157
|
-
|
|
162
|
+
After:
|
|
163
|
+
|
|
158
164
|
```ruby
|
|
159
|
-
|
|
160
|
-
|
|
165
|
+
person = Person.find(1)
|
|
166
|
+
person.strict_loading!(mode: :n_plus_one_only)
|
|
167
|
+
person.posts.first # this is 1+1, not N+1
|
|
168
|
+
# SELECT * FROM posts WHERE person_id = 1 ORDER BY id LIMIT 1;
|
|
169
|
+
person.posts.first.firm # no longer raises
|
|
161
170
|
```
|
|
162
171
|
|
|
163
|
-
*
|
|
172
|
+
*Reid Lynch*
|
|
164
173
|
|
|
165
|
-
*
|
|
174
|
+
* Using `Model.query_constraints` with a single non-primary-key column used to raise as expected, but with an
|
|
175
|
+
incorrect error message. This has been fixed to raise with a more appropriate error message.
|
|
166
176
|
|
|
167
|
-
*
|
|
177
|
+
*Joshua Young*
|
|
168
178
|
|
|
169
|
-
*
|
|
179
|
+
* Fix `has_one` association autosave setting the foreign key attribute when it is unchanged.
|
|
170
180
|
|
|
171
|
-
|
|
181
|
+
This behaviour is also inconsistent with autosaving `belongs_to` and can have unintended side effects like raising
|
|
182
|
+
an `ActiveRecord::ReadonlyAttributeError` when the foreign key attribute is marked as read-only.
|
|
172
183
|
|
|
173
|
-
*
|
|
184
|
+
*Joshua Young*
|
|
185
|
+
|
|
186
|
+
* Fix an issue where `ActiveRecord::Encryption` configurations are not ready before the loading
|
|
187
|
+
of Active Record models, when an application is eager loaded. As a result, encrypted attributes
|
|
188
|
+
could be misconfigured in some cases.
|
|
189
|
+
|
|
190
|
+
*Maxime Réty*
|
|
191
|
+
|
|
192
|
+
* Properly synchronize `Mysql2Adapter#active?` and `TrilogyAdapter#active?`
|
|
193
|
+
|
|
194
|
+
As well as `disconnect!` and `verify!`.
|
|
195
|
+
|
|
196
|
+
This generally isn't a big problem as connections must not be shared between
|
|
197
|
+
threads, but is required when running transactional tests or system tests
|
|
198
|
+
and could lead to a SEGV.
|
|
199
|
+
|
|
200
|
+
*Jean Boussier*
|
|
201
|
+
|
|
202
|
+
* Fix counter caches when the foreign key is composite.
|
|
203
|
+
|
|
204
|
+
If the model holding the counter cache had a composite primary key,
|
|
205
|
+
inserting a dependent record would fail with an `ArgumentError`
|
|
206
|
+
`Expected corresponding value for...`
|
|
174
207
|
|
|
175
208
|
*fatkodima*
|
|
176
209
|
|
|
177
|
-
*
|
|
210
|
+
* Fix loading of schema cache for multiple databases.
|
|
211
|
+
|
|
212
|
+
Before this change, if you have multiple databases configured in your
|
|
213
|
+
application, and had schema cache present, Rails would load the same
|
|
214
|
+
cache to all databases.
|
|
215
|
+
|
|
216
|
+
*Rafael Mendonça França*
|
|
217
|
+
|
|
218
|
+
* Fix eager loading of composite primary key associations.
|
|
219
|
+
|
|
220
|
+
`relation.eager_load(:other_model)` could load the wrong records if `other_model`
|
|
221
|
+
had a composite primary key.
|
|
222
|
+
|
|
223
|
+
*Nikita Vasilevsky*
|
|
224
|
+
|
|
225
|
+
* Fix async queries returning a doubly wrapped result when hitting the query cache.
|
|
178
226
|
|
|
179
227
|
*fatkodima*
|
|
180
228
|
|
|
181
|
-
* Fix
|
|
229
|
+
* Fix single quote escapes on default generated MySQL columns
|
|
230
|
+
|
|
231
|
+
MySQL 5.7.5+ supports generated columns, which can be used to create a column that is computed from an expression.
|
|
232
|
+
|
|
233
|
+
Previously, the schema dump would output a string with double escapes for generated columns with single quotes in the default expression.
|
|
234
|
+
|
|
235
|
+
This would result in issues when importing the schema on a fresh instance of a MySQL database.
|
|
236
|
+
|
|
237
|
+
Now, the string will not be escaped and will be valid Ruby upon importing of the schema.
|
|
238
|
+
|
|
239
|
+
*Yash Kapadia*
|
|
182
240
|
|
|
183
|
-
|
|
241
|
+
* Fix Migrations with versions older than 7.1 validating options given to
|
|
242
|
+
`t.references`.
|
|
243
|
+
|
|
244
|
+
*Hartley McGuire*
|
|
184
245
|
|
|
185
246
|
|
|
186
|
-
## Rails 7.
|
|
247
|
+
## Rails 7.1.3.4 (June 04, 2024) ##
|
|
187
248
|
|
|
188
249
|
* No changes.
|
|
189
250
|
|
|
190
|
-
## Rails 7.0.5 (May 24, 2023) ##
|
|
191
251
|
|
|
192
|
-
|
|
252
|
+
## Rails 7.1.3.3 (May 16, 2024) ##
|
|
193
253
|
|
|
194
|
-
|
|
254
|
+
* No changes.
|
|
195
255
|
|
|
196
|
-
* Fix `index_exists?` when column is an array.
|
|
197
256
|
|
|
198
|
-
|
|
257
|
+
## Rails 7.1.3.2 (February 21, 2024) ##
|
|
199
258
|
|
|
200
|
-
*
|
|
259
|
+
* No changes.
|
|
201
260
|
|
|
202
|
-
*Alex Ghiculescu*
|
|
203
261
|
|
|
204
|
-
|
|
262
|
+
## Rails 7.1.3.1 (February 21, 2024) ##
|
|
263
|
+
|
|
264
|
+
* No changes.
|
|
265
|
+
|
|
266
|
+
|
|
267
|
+
## Rails 7.1.3 (January 16, 2024) ##
|
|
268
|
+
|
|
269
|
+
* Fix Migrations with versions older than 7.1 validating options given to
|
|
270
|
+
`add_reference`.
|
|
205
271
|
|
|
206
272
|
*Hartley McGuire*
|
|
207
273
|
|
|
208
|
-
*
|
|
274
|
+
* Ensure `reload` sets correct owner for each association.
|
|
209
275
|
|
|
210
|
-
*
|
|
276
|
+
*Dmytro Savochkin*
|
|
211
277
|
|
|
212
|
-
*
|
|
278
|
+
* Fix view runtime for controllers with async queries.
|
|
213
279
|
|
|
214
280
|
*fatkodima*
|
|
215
281
|
|
|
216
|
-
*
|
|
282
|
+
* Fix `load_async` to work with query cache.
|
|
217
283
|
|
|
218
|
-
*
|
|
284
|
+
*fatkodima*
|
|
219
285
|
|
|
220
|
-
* Fix
|
|
286
|
+
* Fix polymorphic `belongs_to` to correctly use parent's `query_constraints`.
|
|
221
287
|
|
|
222
288
|
*fatkodima*
|
|
223
289
|
|
|
224
|
-
*
|
|
290
|
+
* Fix `Preloader` to not generate a query for already loaded association with `query_constraints`.
|
|
225
291
|
|
|
226
|
-
*
|
|
292
|
+
*fatkodima*
|
|
227
293
|
|
|
228
|
-
* Fix
|
|
294
|
+
* Fix multi-database polymorphic preloading with equivalent table names.
|
|
229
295
|
|
|
230
|
-
|
|
296
|
+
When preloading polymorphic associations, if two models pointed to two
|
|
297
|
+
tables with the same name but located in different databases, the
|
|
298
|
+
preloader would only load one.
|
|
231
299
|
|
|
232
|
-
*
|
|
300
|
+
*Ari Summer*
|
|
233
301
|
|
|
234
|
-
|
|
302
|
+
* Fix `encrypted_attribute?` to take into account context properties passed to `encrypts`.
|
|
235
303
|
|
|
236
|
-
*
|
|
304
|
+
*Maxime Réty*
|
|
305
|
+
|
|
306
|
+
* Fix `find_by` to work correctly in presence of composite primary keys.
|
|
237
307
|
|
|
238
308
|
*fatkodima*
|
|
239
309
|
|
|
240
|
-
* Fix
|
|
310
|
+
* Fix async queries sometimes returning a raw result if they hit the query cache.
|
|
311
|
+
|
|
312
|
+
`ShipPart.async_count` could return a raw integer rather than a Promise
|
|
313
|
+
if it found the result in the query cache.
|
|
241
314
|
|
|
242
315
|
*fatkodima*
|
|
243
316
|
|
|
244
|
-
* Fix
|
|
317
|
+
* Fix `Relation#transaction` to not apply a default scope.
|
|
245
318
|
|
|
246
|
-
|
|
319
|
+
The method was incorrectly setting a default scope around its block:
|
|
247
320
|
|
|
248
|
-
|
|
321
|
+
```ruby
|
|
322
|
+
Post.where(published: true).transaction do
|
|
323
|
+
Post.count # SELECT COUNT(*) FROM posts WHERE published = FALSE;
|
|
324
|
+
end
|
|
325
|
+
```
|
|
326
|
+
|
|
327
|
+
*Jean Boussier*
|
|
328
|
+
|
|
329
|
+
* Fix calling `async_pluck` on a `none` relation.
|
|
330
|
+
|
|
331
|
+
`Model.none.async_pluck(:id)` was returning a naked value
|
|
332
|
+
instead of a promise.
|
|
333
|
+
|
|
334
|
+
*Jean Boussier*
|
|
335
|
+
|
|
336
|
+
* Fix calling `load_async` on a `none` relation.
|
|
337
|
+
|
|
338
|
+
`Model.none.load_async` was returning a broken result.
|
|
339
|
+
|
|
340
|
+
*Lucas Mazza*
|
|
341
|
+
|
|
342
|
+
* TrilogyAdapter: ignore `host` if `socket` parameter is set.
|
|
343
|
+
|
|
344
|
+
This allows to configure a connection on a UNIX socket via DATABASE_URL:
|
|
345
|
+
|
|
346
|
+
```
|
|
347
|
+
DATABASE_URL=trilogy://does-not-matter/my_db_production?socket=/var/run/mysql.sock
|
|
348
|
+
```
|
|
349
|
+
|
|
350
|
+
*Jean Boussier*
|
|
351
|
+
|
|
352
|
+
* Fix `has_secure_token` calls the setter method on initialize.
|
|
353
|
+
|
|
354
|
+
*Abeid Ahmed*
|
|
355
|
+
|
|
356
|
+
* Allow using `object_id` as a database column name.
|
|
357
|
+
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.
|
|
358
|
+
|
|
359
|
+
*Mikhail Doronin*
|
|
360
|
+
|
|
361
|
+
* Fix `rails db:create:all` to not touch databases before they are created.
|
|
249
362
|
|
|
250
363
|
*fatkodima*
|
|
251
364
|
|
|
252
|
-
|
|
365
|
+
|
|
366
|
+
## Rails 7.1.2 (November 10, 2023) ##
|
|
367
|
+
|
|
368
|
+
* Fix renaming primary key index when renaming a table with a UUID primary key
|
|
369
|
+
in PostgreSQL.
|
|
253
370
|
|
|
254
371
|
*fatkodima*
|
|
255
372
|
|
|
256
|
-
* Fix
|
|
373
|
+
* Fix `where(field: values)` queries when `field` is a serialized attribute
|
|
374
|
+
(for example, when `field` uses `ActiveRecord::Base.serialize` or is a JSON
|
|
375
|
+
column).
|
|
376
|
+
|
|
377
|
+
*João Alves*
|
|
378
|
+
|
|
379
|
+
* Prevent marking broken connections as verified.
|
|
380
|
+
|
|
381
|
+
*Daniel Colson*
|
|
382
|
+
|
|
383
|
+
* Don't mark Float::INFINITY as changed when reassigning it
|
|
384
|
+
|
|
385
|
+
When saving a record with a float infinite value, it shouldn't mark as changed
|
|
386
|
+
|
|
387
|
+
*Maicol Bentancor*
|
|
388
|
+
|
|
389
|
+
* `ActiveRecord::Base.table_name` now returns `nil` instead of raising
|
|
390
|
+
"undefined method `abstract_class?` for Object:Class".
|
|
391
|
+
|
|
392
|
+
*a5-stable*
|
|
393
|
+
|
|
394
|
+
* Fix upserting for custom `:on_duplicate` and `:unique_by` consisting of all
|
|
395
|
+
inserts keys.
|
|
257
396
|
|
|
258
397
|
*fatkodima*
|
|
259
398
|
|
|
260
|
-
*
|
|
399
|
+
* Fixed an [issue](https://github.com/rails/rails/issues/49809) where saving a
|
|
400
|
+
record could innappropriately `dup` its attributes.
|
|
261
401
|
|
|
262
|
-
*
|
|
402
|
+
*Jonathan Hefner*
|
|
263
403
|
|
|
264
|
-
*
|
|
404
|
+
* Dump schema only for a specific db for rollback/up/down tasks for multiple dbs.
|
|
265
405
|
|
|
266
|
-
*
|
|
406
|
+
*fatkodima*
|
|
267
407
|
|
|
268
|
-
* Fix
|
|
408
|
+
* Fix `NoMethodError` when casting a PostgreSQL `money` value that uses a
|
|
409
|
+
comma as its radix point and has no leading currency symbol. For example,
|
|
410
|
+
when casting `"3,50"`.
|
|
269
411
|
|
|
270
|
-
|
|
271
|
-
default precision as regular datetime columns, resulting in the following
|
|
272
|
-
being erroneously equivalent:
|
|
412
|
+
*Andreas Reischuck* and *Jonathan Hefner*
|
|
273
413
|
|
|
274
|
-
|
|
275
|
-
|
|
414
|
+
* Re-enable support for using `enum` with non-column-backed attributes.
|
|
415
|
+
Non-column-backed attributes must be previously declared with an explicit
|
|
416
|
+
type. For example:
|
|
276
417
|
|
|
277
|
-
|
|
278
|
-
|
|
418
|
+
```ruby
|
|
419
|
+
class Post < ActiveRecord::Base
|
|
420
|
+
attribute :topic, :string
|
|
421
|
+
enum topic: %i[science tech engineering math]
|
|
422
|
+
end
|
|
423
|
+
```
|
|
279
424
|
|
|
280
|
-
*
|
|
425
|
+
*Jonathan Hefner*
|
|
281
426
|
|
|
282
|
-
*
|
|
427
|
+
* Raise on `foreign_key:` being passed as an array in associations
|
|
283
428
|
|
|
284
|
-
*
|
|
429
|
+
*Nikita Vasilevsky*
|
|
285
430
|
|
|
431
|
+
* Return back maximum allowed PostgreSQL table name to 63 characters.
|
|
286
432
|
|
|
287
|
-
|
|
433
|
+
*fatkodima*
|
|
288
434
|
|
|
289
|
-
*
|
|
435
|
+
* Fix detecting `IDENTITY` columns for PostgreSQL < 10.
|
|
290
436
|
|
|
437
|
+
*fatkodima*
|
|
291
438
|
|
|
292
|
-
## Rails 7.0.4.2 (January 24, 2023) ##
|
|
293
439
|
|
|
294
|
-
|
|
440
|
+
## Rails 7.1.1 (October 11, 2023) ##
|
|
295
441
|
|
|
442
|
+
* Fix auto populating IDENTITY columns for PostgreSQL.
|
|
296
443
|
|
|
297
|
-
|
|
444
|
+
*fatkodima*
|
|
445
|
+
|
|
446
|
+
* Fix "ArgumentError: wrong number of arguments (given 3, expected 2)" when
|
|
447
|
+
down migrating `rename_table` in older migrations.
|
|
448
|
+
|
|
449
|
+
*fatkodima*
|
|
298
450
|
|
|
299
|
-
*
|
|
451
|
+
* Do not require the Action Text, Active Storage and Action Mailbox tables
|
|
452
|
+
to be present when running when running test on CI.
|
|
300
453
|
|
|
301
|
-
|
|
302
|
-
attempting sanitization. That sanitization could be bypassed with
|
|
303
|
-
carefully crafted input.
|
|
454
|
+
*Rafael Mendonça França*
|
|
304
455
|
|
|
305
|
-
This commit makes the sanitization more robust by replacing any
|
|
306
|
-
occurrences of "/*" or "*/" with "/ *" or "* /". It also performs a
|
|
307
|
-
first pass to remove one surrounding comment to avoid compatibility
|
|
308
|
-
issues for users relying on the existing removal.
|
|
309
456
|
|
|
310
|
-
|
|
311
|
-
be provided user input.
|
|
457
|
+
## Rails 7.1.0 (October 05, 2023) ##
|
|
312
458
|
|
|
313
|
-
|
|
459
|
+
* No changes.
|
|
314
460
|
|
|
315
|
-
* Added integer width check to PostgreSQL::Quoting
|
|
316
461
|
|
|
317
|
-
|
|
318
|
-
PostgreSQL will treat the column type as numeric. Comparing
|
|
319
|
-
integer values against numeric values can result in a slow
|
|
320
|
-
sequential scan.
|
|
462
|
+
## Rails 7.1.0.rc2 (October 01, 2023) ##
|
|
321
463
|
|
|
322
|
-
|
|
323
|
-
ActiveRecord::Base.raise_int_wider_than_64bit which defaults to true.
|
|
464
|
+
* Remove -shm and -wal SQLite files when `rails db:drop` is run.
|
|
324
465
|
|
|
325
|
-
|
|
466
|
+
*Niklas Häusele*
|
|
326
467
|
|
|
468
|
+
* Revert the change to raise an `ArgumentError` when `#accepts_nested_attributes_for` is declared more than once for
|
|
469
|
+
an association in the same class.
|
|
327
470
|
|
|
328
|
-
|
|
471
|
+
The reverted behavior broke the case where the `#accepts_nested_attributes_for` was defined in a concern and
|
|
472
|
+
where overridden in the class that included the concern.
|
|
329
473
|
|
|
330
|
-
*
|
|
474
|
+
*Rafael Mendonça França*
|
|
331
475
|
|
|
332
|
-
*Étienne Barrié*
|
|
333
476
|
|
|
334
|
-
|
|
477
|
+
## Rails 7.1.0.rc1 (September 27, 2023) ##
|
|
335
478
|
|
|
336
|
-
|
|
337
|
-
which is wasteful and cause problem with YAML safe_load.
|
|
479
|
+
* Better naming for unique constraints support.
|
|
338
480
|
|
|
339
|
-
|
|
481
|
+
Naming unique keys leads to misunderstanding it's a short-hand of unique indexes.
|
|
482
|
+
Just naming it unique constraints is not misleading.
|
|
340
483
|
|
|
341
|
-
|
|
484
|
+
In Rails 7.1.0.beta1 or before:
|
|
342
485
|
|
|
343
|
-
|
|
486
|
+
```ruby
|
|
487
|
+
add_unique_key :sections, [:position], deferrable: :deferred, name: "unique_section_position"
|
|
488
|
+
remove_unique_key :sections, name: "unique_section_position"
|
|
489
|
+
```
|
|
344
490
|
|
|
345
|
-
|
|
491
|
+
Now:
|
|
346
492
|
|
|
347
493
|
```ruby
|
|
348
|
-
|
|
494
|
+
add_unique_constraint :sections, [:position], deferrable: :deferred, name: "unique_section_position"
|
|
495
|
+
remove_unique_constraint :sections, name: "unique_section_position"
|
|
349
496
|
```
|
|
350
497
|
|
|
351
|
-
*
|
|
498
|
+
*Ryuta Kamizono*
|
|
352
499
|
|
|
353
|
-
* Fix
|
|
500
|
+
* Fix duplicate quoting for check constraint expressions in schema dump when using MySQL
|
|
501
|
+
|
|
502
|
+
A check constraint with an expression, that already contains quotes, lead to an invalid schema
|
|
503
|
+
dump with the mysql2 adapter.
|
|
504
|
+
|
|
505
|
+
Fixes #42424.
|
|
506
|
+
|
|
507
|
+
*Felix Tscheulin*
|
|
508
|
+
|
|
509
|
+
* Performance tune the SQLite3 adapter connection configuration
|
|
510
|
+
|
|
511
|
+
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.
|
|
512
|
+
|
|
513
|
+
*Stephen Margheim*
|
|
514
|
+
|
|
515
|
+
* Allow SQLite3 `busy_handler` to be configured with simple max number of `retries`
|
|
516
|
+
|
|
517
|
+
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`.
|
|
518
|
+
|
|
519
|
+
*Stephen Margheim*
|
|
520
|
+
|
|
521
|
+
* The SQLite3 adapter now supports `supports_insert_returning?`
|
|
522
|
+
|
|
523
|
+
Implementing the full `supports_insert_returning?` contract means the SQLite3 adapter supports auto-populated columns (#48241) as well as custom primary keys.
|
|
524
|
+
|
|
525
|
+
*Stephen Margheim*
|
|
526
|
+
|
|
527
|
+
* Ensure the SQLite3 adapter handles default functions with the `||` concatenation operator
|
|
528
|
+
|
|
529
|
+
Previously, this default function would produce the static string `"'Ruby ' || 'on ' || 'Rails'"`.
|
|
530
|
+
Now, the adapter will appropriately receive and use `"Ruby on Rails"`.
|
|
354
531
|
|
|
355
532
|
```ruby
|
|
356
|
-
|
|
357
|
-
add_column :shops, :open_hours, :tsrange, array: true
|
|
358
|
-
# In app config
|
|
359
|
-
ActiveRecord::Base.time_zone_aware_types += [:tsrange]
|
|
360
|
-
# In the code times are properly converted to app time zone
|
|
361
|
-
Shop.create!(open_hours: [Time.current..8.hour.from_now])
|
|
533
|
+
change_column_default "test_models", "ruby_on_rails", -> { "('Ruby ' || 'on ' || 'Rails')" }
|
|
362
534
|
```
|
|
363
535
|
|
|
364
|
-
*
|
|
536
|
+
*Stephen Margheim*
|
|
365
537
|
|
|
366
|
-
*
|
|
538
|
+
* Dump PostgreSQL schemas as part of the schema dump.
|
|
367
539
|
|
|
368
|
-
|
|
369
|
-
ivar. This led to a confusing situation where despite having the correct data the relation
|
|
370
|
-
still reported a stale cache_version.
|
|
540
|
+
*Lachlan Sylvester*
|
|
371
541
|
|
|
372
|
-
|
|
542
|
+
|
|
543
|
+
## Rails 7.1.0.beta1 (September 13, 2023) ##
|
|
544
|
+
|
|
545
|
+
* Encryption now supports `support_unencrypted_data` being set per-attribute.
|
|
546
|
+
|
|
547
|
+
You can now opt out of `support_unencrypted_data` on a specific encrypted attribute.
|
|
548
|
+
This only has an effect if `ActiveRecord::Encryption.config.support_unencrypted_data == true`.
|
|
373
549
|
|
|
374
550
|
```ruby
|
|
375
|
-
|
|
376
|
-
|
|
551
|
+
class User < ActiveRecord::Base
|
|
552
|
+
encrypts :name, deterministic: true, support_unencrypted_data: false
|
|
553
|
+
encrypts :email, deterministic: true
|
|
554
|
+
end
|
|
555
|
+
```
|
|
377
556
|
|
|
378
|
-
|
|
557
|
+
*Alex Ghiculescu*
|
|
379
558
|
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
559
|
+
* Add instrumentation for Active Record transactions
|
|
560
|
+
|
|
561
|
+
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.
|
|
562
|
+
|
|
563
|
+
```ruby
|
|
564
|
+
ActiveSupport::Notifications.subscribe("transaction.active_record") do |event|
|
|
565
|
+
puts "Transaction event occurred!"
|
|
566
|
+
connection = event.payload[:connection]
|
|
567
|
+
puts "Connection: #{connection.inspect}"
|
|
568
|
+
end
|
|
383
569
|
```
|
|
384
570
|
|
|
385
|
-
|
|
571
|
+
*Daniel Colson*, *Ian Candy*
|
|
386
572
|
|
|
387
|
-
|
|
573
|
+
* Support composite foreign keys via migration helpers.
|
|
574
|
+
|
|
575
|
+
```ruby
|
|
576
|
+
# Assuming "carts" table has "(shop_id, user_id)" as a primary key.
|
|
388
577
|
|
|
389
|
-
|
|
578
|
+
add_foreign_key(:orders, :carts, primary_key: [:shop_id, :user_id])
|
|
390
579
|
|
|
391
|
-
|
|
392
|
-
|
|
580
|
+
remove_foreign_key(:orders, :carts, primary_key: [:shop_id, :user_id])
|
|
581
|
+
foreign_key_exists?(:orders, :carts, primary_key: [:shop_id, :user_id])
|
|
582
|
+
```
|
|
583
|
+
|
|
584
|
+
*fatkodima*
|
|
585
|
+
|
|
586
|
+
* Adds support for `if_not_exists` when adding a check constraint.
|
|
393
587
|
|
|
394
588
|
```ruby
|
|
395
|
-
|
|
396
|
-
comments.to_a # perform an entirely new sync query
|
|
589
|
+
add_check_constraint :posts, "post_type IN ('blog', 'comment', 'share')", if_not_exists: true
|
|
397
590
|
```
|
|
398
591
|
|
|
399
|
-
|
|
400
|
-
cause the association to be loaded.
|
|
592
|
+
*Cody Cutrer*
|
|
401
593
|
|
|
402
|
-
|
|
594
|
+
* Raise an `ArgumentError` when `#accepts_nested_attributes_for` is declared more than once for an association in
|
|
595
|
+
the same class. Previously, the last declaration would silently override the previous one. Overriding in a subclass
|
|
596
|
+
is still allowed.
|
|
403
597
|
|
|
404
|
-
*
|
|
598
|
+
*Joshua Young*
|
|
405
599
|
|
|
406
|
-
|
|
600
|
+
* Deprecate `rewhere` argument on `#merge`.
|
|
407
601
|
|
|
408
|
-
|
|
602
|
+
The `rewhere` argument on `#merge`is deprecated without replacement and
|
|
603
|
+
will be removed in Rails 7.2.
|
|
409
604
|
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
605
|
+
*Adam Hess*
|
|
606
|
+
|
|
607
|
+
* Deprecate aliasing non-attributes with `alias_attribute`.
|
|
608
|
+
|
|
609
|
+
*Ian Candy*
|
|
610
|
+
|
|
611
|
+
* Fix unscope is not working in specific case
|
|
612
|
+
|
|
613
|
+
Before:
|
|
614
|
+
```ruby
|
|
615
|
+
Post.where(id: 1...3).unscope(where: :id).to_sql # "SELECT `posts`.* FROM `posts` WHERE `posts`.`id` >= 1 AND `posts`.`id` < 3"
|
|
413
616
|
|
|
414
617
|
```
|
|
415
|
-
|
|
618
|
+
|
|
619
|
+
After:
|
|
620
|
+
```ruby
|
|
621
|
+
Post.where(id: 1...3).unscope(where: :id).to_sql # "SELECT `posts`.* FROM `posts`"
|
|
416
622
|
```
|
|
417
623
|
|
|
418
|
-
|
|
624
|
+
Fixes #48094.
|
|
419
625
|
|
|
420
|
-
*
|
|
626
|
+
*Kazuya Hatanaka*
|
|
421
627
|
|
|
422
|
-
|
|
628
|
+
* Change `has_secure_token` default to `on: :initialize`
|
|
423
629
|
|
|
630
|
+
Change the new default value from `on: :create` to `on: :initialize`
|
|
424
631
|
|
|
425
|
-
|
|
632
|
+
Can be controlled by the `config.active_record.generate_secure_token_on`
|
|
633
|
+
configuration:
|
|
426
634
|
|
|
427
|
-
|
|
635
|
+
```ruby
|
|
636
|
+
config.active_record.generate_secure_token_on = :create
|
|
637
|
+
```
|
|
428
638
|
|
|
429
|
-
|
|
430
|
-
follows:
|
|
639
|
+
*Sean Doyle*
|
|
431
640
|
|
|
432
|
-
|
|
641
|
+
* Fix `change_column` not setting `precision: 6` on `datetime` columns when
|
|
642
|
+
using 7.0+ Migrations and SQLite.
|
|
433
643
|
|
|
434
|
-
|
|
435
|
-
"unsafe" YAML loading strategy, maintaining the existing behavior but leaving
|
|
436
|
-
the possible escalation vulnerability in place. Setting this option to true
|
|
437
|
-
is *not* recommended, but can aid in upgrading.
|
|
644
|
+
*Hartley McGuire*
|
|
438
645
|
|
|
439
|
-
|
|
646
|
+
* Support composite identifiers in `to_key`
|
|
440
647
|
|
|
441
|
-
|
|
442
|
-
by default. This option allows you to specify classes deemed "safe" in your
|
|
443
|
-
application. For example, if your application uses Symbol and Time in
|
|
444
|
-
serialized data, you can add Symbol and Time to the allowed list as follows:
|
|
648
|
+
`to_key` avoids wrapping `#id` value into an `Array` if `#id` already an array
|
|
445
649
|
|
|
446
|
-
|
|
447
|
-
|
|
650
|
+
*Nikita Vasilevsky*
|
|
651
|
+
|
|
652
|
+
* Add validation option for `enum`
|
|
653
|
+
|
|
654
|
+
```ruby
|
|
655
|
+
class Contract < ApplicationRecord
|
|
656
|
+
enum :status, %w[in_progress completed], validate: true
|
|
657
|
+
end
|
|
658
|
+
Contract.new(status: "unknown").valid? # => false
|
|
659
|
+
Contract.new(status: nil).valid? # => false
|
|
660
|
+
Contract.new(status: "completed").valid? # => true
|
|
661
|
+
|
|
662
|
+
class Contract < ApplicationRecord
|
|
663
|
+
enum :status, %w[in_progress completed], validate: { allow_nil: true }
|
|
664
|
+
end
|
|
665
|
+
Contract.new(status: "unknown").valid? # => false
|
|
666
|
+
Contract.new(status: nil).valid? # => true
|
|
667
|
+
Contract.new(status: "completed").valid? # => true
|
|
448
668
|
```
|
|
449
669
|
|
|
450
|
-
|
|
670
|
+
*Edem Topuzov*, *Ryuta Kamizono*
|
|
451
671
|
|
|
672
|
+
* Allow batching methods to use already loaded relation if available
|
|
452
673
|
|
|
453
|
-
|
|
674
|
+
Calling batch methods on already loaded relations will use the records previously loaded instead of retrieving
|
|
675
|
+
them from the database again.
|
|
454
676
|
|
|
455
|
-
*
|
|
456
|
-
methods in class objects that referenced reloadable constants. See
|
|
457
|
-
[#44125](https://github.com/rails/rails/issues/44125) for details.
|
|
677
|
+
*Adam Hess*
|
|
458
678
|
|
|
459
|
-
|
|
679
|
+
* Deprecate `read_attribute(:id)` returning the primary key if the primary key is not `:id`.
|
|
460
680
|
|
|
461
|
-
|
|
681
|
+
Starting in Rails 7.2, `read_attribute(:id)` will return the value of the id column, regardless of the model's
|
|
682
|
+
primary key. To retrieve the value of the primary key, use `#id` instead. `read_attribute(:id)` for composite
|
|
683
|
+
primary key models will now return the value of the id column.
|
|
462
684
|
|
|
463
|
-
|
|
464
|
-
if using `db:schema:load`. Further more the function name would be
|
|
465
|
-
added as string content when saving new records.
|
|
685
|
+
*Adrianna Chang*
|
|
466
686
|
|
|
467
|
-
|
|
687
|
+
* Fix `change_table` setting datetime precision for 6.1 Migrations
|
|
468
688
|
|
|
469
|
-
*
|
|
689
|
+
*Hartley McGuire*
|
|
470
690
|
|
|
471
|
-
|
|
691
|
+
* Fix change_column setting datetime precision for 6.1 Migrations
|
|
472
692
|
|
|
473
|
-
*
|
|
693
|
+
*Hartley McGuire*
|
|
474
694
|
|
|
475
|
-
|
|
476
|
-
|
|
695
|
+
* Add `ActiveRecord::Base#id_value` alias to access the raw value of a record's id column.
|
|
696
|
+
|
|
697
|
+
This alias is only provided for models that declare an `:id` column.
|
|
698
|
+
|
|
699
|
+
*Adrianna Chang*
|
|
700
|
+
|
|
701
|
+
* Fix previous change tracking for `ActiveRecord::Store` when using a column with JSON structured database type
|
|
702
|
+
|
|
703
|
+
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
|
|
704
|
+
|
|
705
|
+
*Robert DiMartino*
|
|
706
|
+
|
|
707
|
+
* Fully support `NULLS [NOT] DISTINCT` for PostgreSQL 15+ indexes.
|
|
708
|
+
|
|
709
|
+
Previous work was done to allow the index to be created in a migration, but it was not
|
|
710
|
+
supported in schema.rb. Additionally, the matching for `NULLS [NOT] DISTINCT` was not
|
|
711
|
+
in the correct order, which could have resulted in inconsistent schema detection.
|
|
712
|
+
|
|
713
|
+
*Gregory Jones*
|
|
714
|
+
|
|
715
|
+
* Allow escaping of literal colon characters in `sanitize_sql_*` methods when named bind variables are used
|
|
716
|
+
|
|
717
|
+
*Justin Bull*
|
|
718
|
+
|
|
719
|
+
* Fix `#previously_new_record?` to return true for destroyed records.
|
|
720
|
+
|
|
721
|
+
Before, if a record was created and then destroyed, `#previously_new_record?` would return true.
|
|
722
|
+
Now, any UPDATE or DELETE to a record is considered a change, and will result in `#previously_new_record?`
|
|
723
|
+
returning false.
|
|
724
|
+
|
|
725
|
+
*Adrianna Chang*
|
|
726
|
+
|
|
727
|
+
* Specify callback in `has_secure_token`
|
|
477
728
|
|
|
478
729
|
```ruby
|
|
479
|
-
|
|
730
|
+
class User < ApplicationRecord
|
|
731
|
+
has_secure_token on: :initialize
|
|
732
|
+
end
|
|
733
|
+
|
|
734
|
+
User.new.token # => "abc123...."
|
|
480
735
|
```
|
|
481
736
|
|
|
482
|
-
*
|
|
737
|
+
*Sean Doyle*
|
|
483
738
|
|
|
484
|
-
*
|
|
739
|
+
* Fix incrementation of in memory counter caches when associations overlap
|
|
485
740
|
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
with a matching name in other models.
|
|
741
|
+
When two associations had a similarly named counter cache column, Active Record
|
|
742
|
+
could sometime increment the wrong one.
|
|
489
743
|
|
|
490
|
-
*
|
|
744
|
+
*Jacopo Beschi*, *Jean Boussier*
|
|
491
745
|
|
|
492
|
-
*
|
|
746
|
+
* Don't show secrets for Active Record's `Cipher::Aes256Gcm#inspect`.
|
|
493
747
|
|
|
494
|
-
|
|
748
|
+
Before:
|
|
495
749
|
|
|
496
|
-
|
|
750
|
+
```ruby
|
|
751
|
+
ActiveRecord::Encryption::Cipher::Aes256Gcm.new(secret).inspect
|
|
752
|
+
"#<ActiveRecord::Encryption::Cipher::Aes256Gcm:0x0000000104888038 ... @secret=\"\\xAF\\bFh]LV}q\\nl\\xB2U\\xB3 ... >"
|
|
753
|
+
```
|
|
497
754
|
|
|
498
|
-
|
|
755
|
+
After:
|
|
499
756
|
|
|
500
|
-
|
|
757
|
+
```ruby
|
|
758
|
+
ActiveRecord::Encryption::Cipher::Aes256Gcm(secret).inspect
|
|
759
|
+
"#<ActiveRecord::Encryption::Cipher::Aes256Gcm:0x0000000104888038>"
|
|
760
|
+
```
|
|
501
761
|
|
|
502
|
-
*
|
|
762
|
+
*Petrik de Heus*
|
|
503
763
|
|
|
764
|
+
* Bring back the historical behavior of committing transaction on non-local return.
|
|
504
765
|
|
|
505
|
-
|
|
766
|
+
```ruby
|
|
767
|
+
Model.transaction do
|
|
768
|
+
model.save
|
|
769
|
+
return
|
|
770
|
+
other_model.save # not executed
|
|
771
|
+
end
|
|
772
|
+
```
|
|
506
773
|
|
|
507
|
-
|
|
774
|
+
Historically only raised errors would trigger a rollback, but in Ruby `2.3`, the `timeout` library
|
|
775
|
+
started using `throw` to interrupt execution which had the adverse effect of committing open transactions.
|
|
508
776
|
|
|
777
|
+
To solve this, in Active Record 6.1 the behavior was changed to instead rollback the transaction as it was safer
|
|
778
|
+
than to potentially commit an incomplete transaction.
|
|
509
779
|
|
|
510
|
-
|
|
780
|
+
Using `return`, `break` or `throw` inside a `transaction` block was essentially deprecated from Rails 6.1 onwards.
|
|
511
781
|
|
|
512
|
-
|
|
782
|
+
However with the release of `timeout 0.4.0`, `Timeout.timeout` now raises an error again, and Active Record is able
|
|
783
|
+
to return to its original, less surprising, behavior.
|
|
513
784
|
|
|
785
|
+
This historical behavior can now be opt-ed in via:
|
|
514
786
|
|
|
515
|
-
|
|
787
|
+
```
|
|
788
|
+
Rails.application.config.active_record.commit_transaction_on_non_local_return = true
|
|
789
|
+
```
|
|
516
790
|
|
|
517
|
-
|
|
791
|
+
And is the default for new applications created in Rails 7.1.
|
|
518
792
|
|
|
793
|
+
*Jean Boussier*
|
|
519
794
|
|
|
520
|
-
|
|
795
|
+
* Deprecate `name` argument on `#remove_connection`.
|
|
521
796
|
|
|
522
|
-
|
|
797
|
+
The `name` argument is deprecated on `#remove_connection` without replacement. `#remove_connection` should be called directly on the class that established the connection.
|
|
523
798
|
|
|
524
|
-
*
|
|
799
|
+
*Eileen M. Uchitelle*
|
|
525
800
|
|
|
526
|
-
* Fix
|
|
801
|
+
* Fix has_one through singular building with inverse.
|
|
527
802
|
|
|
528
|
-
|
|
803
|
+
Allows building of records from an association with a has_one through a
|
|
804
|
+
singular association with inverse. For belongs_to through associations,
|
|
805
|
+
linking the foreign key to the primary key model isn't needed.
|
|
806
|
+
For has_one, we cannot build records due to the association not being mutable.
|
|
529
807
|
|
|
530
|
-
*
|
|
808
|
+
*Gannon McGibbon*
|
|
531
809
|
|
|
532
|
-
|
|
810
|
+
* Disable database prepared statements when query logs are enabled
|
|
533
811
|
|
|
534
|
-
|
|
812
|
+
Prepared Statements and Query Logs are incompatible features due to query logs making every query unique.
|
|
535
813
|
|
|
536
|
-
*
|
|
814
|
+
*zzak, Jean Boussier*
|
|
537
815
|
|
|
538
|
-
*
|
|
816
|
+
* Support decrypting data encrypted non-deterministically with a SHA1 hash digest.
|
|
539
817
|
|
|
540
|
-
|
|
541
|
-
with a
|
|
542
|
-
when loading the database schema, would get the new precision value, which would not match
|
|
543
|
-
the production schema.
|
|
818
|
+
This adds a new Active Record encryption option to support decrypting data encrypted
|
|
819
|
+
non-deterministically with a SHA1 hash digest:
|
|
544
820
|
|
|
545
|
-
|
|
546
|
-
|
|
821
|
+
```
|
|
822
|
+
Rails.application.config.active_record.encryption.support_sha1_for_non_deterministic_encryption = true
|
|
823
|
+
```
|
|
824
|
+
|
|
825
|
+
The new option addresses a problem when upgrading from 7.0 to 7.1. Due to a bug in how Active Record
|
|
826
|
+
Encryption was getting initialized, the key provider used for non-deterministic encryption were using
|
|
827
|
+
SHA-1 as its digest class, instead of the one configured globally by Rails via
|
|
828
|
+
`Rails.application.config.active_support.key_generator_hash_digest_class`.
|
|
829
|
+
|
|
830
|
+
*Cadu Ribeiro and Jorge Manrubia*
|
|
831
|
+
|
|
832
|
+
* Added PostgreSQL migration commands for enum rename, add value, and rename value.
|
|
547
833
|
|
|
834
|
+
`rename_enum` and `rename_enum_value` are reversible. Due to Postgres
|
|
835
|
+
limitation, `add_enum_value` is not reversible since you cannot delete enum
|
|
836
|
+
values. As an alternative you should drop and recreate the enum entirely.
|
|
837
|
+
|
|
838
|
+
```ruby
|
|
839
|
+
rename_enum :article_status, to: :article_state
|
|
548
840
|
```
|
|
549
|
-
|
|
841
|
+
|
|
842
|
+
```ruby
|
|
843
|
+
add_enum_value :article_state, "archived" # will be at the end of existing values
|
|
844
|
+
add_enum_value :article_state, "in review", before: "published"
|
|
845
|
+
add_enum_value :article_state, "approved", after: "in review"
|
|
550
846
|
```
|
|
551
847
|
|
|
552
|
-
|
|
553
|
-
|
|
848
|
+
```ruby
|
|
849
|
+
rename_enum_value :article_state, from: "archived", to: "deleted"
|
|
850
|
+
```
|
|
554
851
|
|
|
555
|
-
*
|
|
852
|
+
*Ray Faddis*
|
|
556
853
|
|
|
557
|
-
*
|
|
854
|
+
* Allow composite primary key to be derived from schema
|
|
558
855
|
|
|
559
|
-
|
|
856
|
+
Booting an application with a schema that contains composite primary keys
|
|
857
|
+
will not issue warning and won't `nil`ify the `ActiveRecord::Base#primary_key` value anymore.
|
|
560
858
|
|
|
561
|
-
|
|
562
|
-
|
|
859
|
+
Given a `travel_routes` table definition and a `TravelRoute` model like:
|
|
860
|
+
```ruby
|
|
861
|
+
create_table :travel_routes, primary_key: [:origin, :destination], force: true do |t|
|
|
862
|
+
t.string :origin
|
|
863
|
+
t.string :destination
|
|
864
|
+
end
|
|
563
865
|
|
|
564
|
-
|
|
866
|
+
class TravelRoute < ActiveRecord::Base; end
|
|
867
|
+
```
|
|
868
|
+
The `TravelRoute.primary_key` value will be automatically derived to `["origin", "destination"]`
|
|
565
869
|
|
|
566
|
-
*
|
|
870
|
+
*Nikita Vasilevsky*
|
|
567
871
|
|
|
568
|
-
|
|
872
|
+
* Include the `connection_pool` with exceptions raised from an adapter.
|
|
569
873
|
|
|
570
|
-
|
|
874
|
+
The `connection_pool` provides added context such as the connection used
|
|
875
|
+
that led to the exception as well as which role and shard.
|
|
571
876
|
|
|
572
|
-
*
|
|
877
|
+
*Luan Vieira*
|
|
573
878
|
|
|
574
|
-
*
|
|
879
|
+
* Support multiple column ordering for `find_each`, `find_in_batches` and `in_batches`.
|
|
575
880
|
|
|
576
|
-
|
|
881
|
+
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.
|
|
577
882
|
|
|
578
|
-
|
|
883
|
+
```ruby
|
|
884
|
+
Person.find_each(order: [:desc, :asc]) do |person|
|
|
885
|
+
person.party_all_night!
|
|
886
|
+
end
|
|
887
|
+
```
|
|
579
888
|
|
|
580
|
-
|
|
889
|
+
*Takuya Kurimoto*
|
|
581
890
|
|
|
582
|
-
|
|
891
|
+
* Fix where on association with has_one/has_many polymorphic relations.
|
|
583
892
|
|
|
584
|
-
|
|
893
|
+
Before:
|
|
894
|
+
```ruby
|
|
895
|
+
Treasure.where(price_estimates: PriceEstimate.all)
|
|
896
|
+
#=> SELECT (...) WHERE "treasures"."id" IN (SELECT "price_estimates"."estimate_of_id" FROM "price_estimates")
|
|
897
|
+
```
|
|
585
898
|
|
|
586
|
-
|
|
899
|
+
Later:
|
|
900
|
+
```ruby
|
|
901
|
+
Treasure.where(price_estimates: PriceEstimate.all)
|
|
902
|
+
#=> SELECT (...) WHERE "treasures"."id" IN (SELECT "price_estimates"."estimate_of_id" FROM "price_estimates" WHERE "price_estimates"."estimate_of_type" = 'Treasure')
|
|
903
|
+
```
|
|
587
904
|
|
|
905
|
+
*Lázaro Nixon*
|
|
588
906
|
|
|
589
|
-
|
|
907
|
+
* Assign auto populated columns on Active Record record creation.
|
|
590
908
|
|
|
909
|
+
Changes record creation logic to allow for the `auto_increment` column to be assigned
|
|
910
|
+
immediately after creation regardless of it's relation to the model's primary key.
|
|
591
911
|
|
|
592
|
-
|
|
912
|
+
The PostgreSQL adapter benefits the most from the change allowing for any number of auto-populated
|
|
913
|
+
columns to be assigned on the object immediately after row insertion utilizing the `RETURNING` statement.
|
|
593
914
|
|
|
594
|
-
|
|
915
|
+
*Nikita Vasilevsky*
|
|
595
916
|
|
|
596
|
-
|
|
917
|
+
* Use the first key in the `shards` hash from `connected_to` for the `default_shard`.
|
|
597
918
|
|
|
598
|
-
|
|
919
|
+
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.
|
|
599
920
|
|
|
600
|
-
|
|
921
|
+
For example if your model looked like this:
|
|
601
922
|
|
|
602
923
|
```ruby
|
|
603
|
-
|
|
924
|
+
class ShardRecord < ApplicationRecord
|
|
925
|
+
self.abstract_class = true
|
|
926
|
+
|
|
927
|
+
connects_to shards: {
|
|
928
|
+
shard_one: { writing: :shard_one },
|
|
929
|
+
shard_two: { writing: :shard_two }
|
|
930
|
+
}
|
|
604
931
|
```
|
|
605
932
|
|
|
606
|
-
|
|
933
|
+
Then the `default_shard` for this class would be set to `shard_one`.
|
|
607
934
|
|
|
608
|
-
|
|
935
|
+
Fixes: #45390
|
|
609
936
|
|
|
610
|
-
*
|
|
937
|
+
*Eileen M. Uchitelle*
|
|
611
938
|
|
|
612
|
-
|
|
939
|
+
* Fix mutation detection for serialized attributes backed by binary columns.
|
|
613
940
|
|
|
614
|
-
*
|
|
941
|
+
*Jean Boussier*
|
|
615
942
|
|
|
616
|
-
|
|
943
|
+
* Add `ActiveRecord.disconnect_all!` method to immediately close all connections from all pools.
|
|
617
944
|
|
|
618
|
-
*
|
|
945
|
+
*Jean Boussier*
|
|
619
946
|
|
|
620
|
-
|
|
947
|
+
* Discard connections which may have been left in a transaction.
|
|
621
948
|
|
|
622
|
-
|
|
949
|
+
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:
|
|
950
|
+
- Writes appear to fail when they actually succeed.
|
|
951
|
+
- Writes appear to succeed when they actually fail.
|
|
952
|
+
- Reads return stale or uncommitted data.
|
|
623
953
|
|
|
624
|
-
|
|
954
|
+
Previously, the following case was detected:
|
|
955
|
+
- An error is encountered during the transaction, then another error is encountered while attempting to roll it back.
|
|
625
956
|
|
|
626
|
-
|
|
957
|
+
Now, the following additional cases are detected:
|
|
958
|
+
- An error is encountered just after successfully beginning a transaction.
|
|
959
|
+
- An error is encountered while committing a transaction, then another error is encountered while attempting to roll it back.
|
|
960
|
+
- An error is encountered while rolling back a transaction.
|
|
627
961
|
|
|
628
|
-
*
|
|
962
|
+
*Nick Dower*
|
|
629
963
|
|
|
630
|
-
|
|
964
|
+
* Active Record query cache now evicts least recently used entries
|
|
631
965
|
|
|
632
|
-
|
|
966
|
+
By default it only keeps the `100` most recently used queries.
|
|
633
967
|
|
|
634
|
-
|
|
968
|
+
The cache size can be configured via `database.yml`
|
|
635
969
|
|
|
636
|
-
|
|
970
|
+
```yaml
|
|
971
|
+
development:
|
|
972
|
+
adapter: mysql2
|
|
973
|
+
query_cache: 200
|
|
974
|
+
```
|
|
637
975
|
|
|
638
|
-
|
|
976
|
+
It can also be entirely disabled:
|
|
639
977
|
|
|
640
|
-
|
|
978
|
+
```yaml
|
|
979
|
+
development:
|
|
980
|
+
adapter: mysql2
|
|
981
|
+
query_cache: false
|
|
982
|
+
```
|
|
641
983
|
|
|
642
|
-
|
|
643
|
-
bigint instead of integer for the SQLite Adapter.
|
|
984
|
+
*Jean Boussier*
|
|
644
985
|
|
|
645
|
-
|
|
986
|
+
* Deprecate `check_pending!` in favor of `check_all_pending!`.
|
|
646
987
|
|
|
647
|
-
|
|
988
|
+
`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.
|
|
648
989
|
|
|
649
|
-
*
|
|
990
|
+
*Eileen M. Uchitelle*
|
|
650
991
|
|
|
651
|
-
*
|
|
992
|
+
* Make `increment_counter`/`decrement_counter` accept an amount argument
|
|
652
993
|
|
|
653
994
|
```ruby
|
|
654
|
-
Post.
|
|
995
|
+
Post.increment_counter(:comments_count, 5, by: 3)
|
|
655
996
|
```
|
|
656
997
|
|
|
657
|
-
|
|
658
|
-
|
|
998
|
+
*fatkodima*
|
|
999
|
+
|
|
1000
|
+
* Add support for `Array#intersect?` to `ActiveRecord::Relation`.
|
|
1001
|
+
|
|
1002
|
+
`Array#intersect?` is only available on Ruby 3.1 or later.
|
|
1003
|
+
|
|
1004
|
+
This allows the Rubocop `Style/ArrayIntersect` cop to work with `ActiveRecord::Relation` objects.
|
|
1005
|
+
|
|
1006
|
+
*John Harry Kelly*
|
|
1007
|
+
|
|
1008
|
+
* The deferrable foreign key can be passed to `t.references`.
|
|
1009
|
+
|
|
1010
|
+
*Hiroyuki Ishii*
|
|
1011
|
+
|
|
1012
|
+
* Deprecate `deferrable: true` option of `add_foreign_key`.
|
|
1013
|
+
|
|
1014
|
+
`deferrable: true` is deprecated in favor of `deferrable: :immediate`, and
|
|
1015
|
+
will be removed in Rails 7.2.
|
|
1016
|
+
|
|
1017
|
+
Because `deferrable: true` and `deferrable: :deferred` are hard to understand.
|
|
1018
|
+
Both true and :deferred are truthy values.
|
|
1019
|
+
This behavior is the same as the deferrable option of the add_unique_key method, added in #46192.
|
|
1020
|
+
|
|
1021
|
+
*Hiroyuki Ishii*
|
|
1022
|
+
|
|
1023
|
+
* `AbstractAdapter#execute` and `#exec_query` now clear the query cache
|
|
1024
|
+
|
|
1025
|
+
If you need to perform a read only SQL query without clearing the query
|
|
1026
|
+
cache, use `AbstractAdapter#select_all`.
|
|
659
1027
|
|
|
660
1028
|
*Jean Boussier*
|
|
661
1029
|
|
|
662
|
-
*
|
|
1030
|
+
* Make `.joins` / `.left_outer_joins` work with CTEs.
|
|
663
1031
|
|
|
664
|
-
|
|
1032
|
+
For example:
|
|
665
1033
|
|
|
666
|
-
|
|
1034
|
+
```ruby
|
|
1035
|
+
Post
|
|
1036
|
+
.with(commented_posts: Comment.select(:post_id).distinct)
|
|
1037
|
+
.joins(:commented_posts)
|
|
1038
|
+
#=> WITH (...) SELECT ... INNER JOIN commented_posts on posts.id = commented_posts.post_id
|
|
1039
|
+
```
|
|
667
1040
|
|
|
668
|
-
|
|
669
|
-
|
|
1041
|
+
*Vladimir Dementyev*
|
|
1042
|
+
|
|
1043
|
+
* Add a load hook for `ActiveRecord::ConnectionAdapters::Mysql2Adapter`
|
|
1044
|
+
(named `active_record_mysql2adapter`) to allow for overriding aspects of the
|
|
1045
|
+
`ActiveRecord::ConnectionAdapters::Mysql2Adapter` class. This makes `Mysql2Adapter`
|
|
1046
|
+
consistent with `PostgreSQLAdapter` and `SQLite3Adapter` that already have load hooks.
|
|
1047
|
+
|
|
1048
|
+
*fatkodima*
|
|
1049
|
+
|
|
1050
|
+
* Introduce adapter for Trilogy database client
|
|
1051
|
+
|
|
1052
|
+
Trilogy is a MySQL-compatible database client. Rails applications can use Trilogy
|
|
1053
|
+
by configuring their `config/database.yml`:
|
|
1054
|
+
|
|
1055
|
+
```yaml
|
|
1056
|
+
development:
|
|
1057
|
+
adapter: trilogy
|
|
1058
|
+
database: blog_development
|
|
1059
|
+
pool: 5
|
|
1060
|
+
```
|
|
1061
|
+
|
|
1062
|
+
Or by using the `DATABASE_URL` environment variable:
|
|
670
1063
|
|
|
671
1064
|
```ruby
|
|
672
|
-
|
|
673
|
-
|
|
1065
|
+
ENV['DATABASE_URL'] # => "trilogy://localhost/blog_development?pool=5"
|
|
1066
|
+
```
|
|
1067
|
+
|
|
1068
|
+
*Adrianna Chang*
|
|
1069
|
+
|
|
1070
|
+
* `after_commit` callbacks defined on models now execute in the correct order.
|
|
1071
|
+
|
|
1072
|
+
```ruby
|
|
1073
|
+
class User < ActiveRecord::Base
|
|
1074
|
+
after_commit { puts("this gets called first") }
|
|
1075
|
+
after_commit { puts("this gets called second") }
|
|
674
1076
|
end
|
|
675
|
-
Test.group(:id).count
|
|
676
|
-
# syntax error at or near "1" (ActiveRecord::StatementInvalid)
|
|
677
|
-
# LINE 1: SELECT COUNT(*) AS count_all, "1abc"."id" AS 1abc_id FROM "1...
|
|
678
1077
|
```
|
|
679
1078
|
|
|
680
|
-
|
|
1079
|
+
Previously, the callbacks executed in the reverse order. To opt in to the new behaviour:
|
|
1080
|
+
|
|
1081
|
+
```ruby
|
|
1082
|
+
config.active_record.run_after_transaction_callbacks_in_order_defined = true
|
|
1083
|
+
```
|
|
681
1084
|
|
|
1085
|
+
This is the default for new apps.
|
|
682
1086
|
|
|
683
|
-
|
|
1087
|
+
*Alex Ghiculescu*
|
|
684
1088
|
|
|
685
|
-
*
|
|
1089
|
+
* Infer `foreign_key` when `inverse_of` is present on `has_one` and `has_many` associations.
|
|
686
1090
|
|
|
687
1091
|
```ruby
|
|
688
|
-
|
|
1092
|
+
has_many :citations, foreign_key: "book1_id", inverse_of: :book
|
|
689
1093
|
```
|
|
690
1094
|
|
|
691
|
-
|
|
692
|
-
responsible to detect write queries.
|
|
1095
|
+
can be simplified to
|
|
693
1096
|
|
|
694
|
-
|
|
695
|
-
|
|
1097
|
+
```ruby
|
|
1098
|
+
has_many :citations, inverse_of: :book
|
|
1099
|
+
```
|
|
696
1100
|
|
|
697
|
-
|
|
1101
|
+
and the foreign_key will be read from the corresponding `belongs_to` association.
|
|
698
1102
|
|
|
699
|
-
*
|
|
1103
|
+
*Daniel Whitney*
|
|
700
1104
|
|
|
701
|
-
|
|
1105
|
+
* Limit max length of auto generated index names
|
|
702
1106
|
|
|
703
|
-
|
|
1107
|
+
Auto generated index names are now limited to 62 bytes, which fits within
|
|
1108
|
+
the default index name length limits for MySQL, Postgres and SQLite.
|
|
704
1109
|
|
|
1110
|
+
Any index name over the limit will fallback to the new short format.
|
|
705
1111
|
|
|
706
|
-
|
|
1112
|
+
Before (too long):
|
|
1113
|
+
```
|
|
1114
|
+
index_testings_on_foo_and_bar_and_first_name_and_last_name_and_administrator
|
|
1115
|
+
```
|
|
707
1116
|
|
|
708
|
-
|
|
1117
|
+
After (short format):
|
|
1118
|
+
```
|
|
1119
|
+
idx_on_foo_bar_first_name_last_name_administrator_5939248142
|
|
1120
|
+
```
|
|
709
1121
|
|
|
1122
|
+
The short format includes a hash to ensure the name is unique database-wide.
|
|
710
1123
|
|
|
711
|
-
|
|
1124
|
+
*Mike Coutermarsh*
|
|
712
1125
|
|
|
713
|
-
*
|
|
1126
|
+
* Introduce a more stable and optimized Marshal serializer for Active Record models.
|
|
714
1127
|
|
|
1128
|
+
Can be enabled with `config.active_record.marshalling_format_version = 7.1`.
|
|
715
1129
|
|
|
716
|
-
|
|
1130
|
+
*Jean Boussier*
|
|
717
1131
|
|
|
718
|
-
*
|
|
1132
|
+
* Allow specifying where clauses with column-tuple syntax.
|
|
719
1133
|
|
|
720
|
-
|
|
1134
|
+
Querying through `#where` now accepts a new tuple-syntax which accepts, as
|
|
1135
|
+
a key, an array of columns and, as a value, an array of corresponding tuples.
|
|
1136
|
+
The key specifies a list of columns, while the value is an array of
|
|
1137
|
+
ordered-tuples that conform to the column list.
|
|
721
1138
|
|
|
722
|
-
|
|
1139
|
+
For instance:
|
|
723
1140
|
|
|
724
|
-
|
|
1141
|
+
```ruby
|
|
1142
|
+
# Cpk::Book => Cpk::Book(author_id: integer, number: integer, title: string, revision: integer)
|
|
1143
|
+
# Cpk::Book.primary_key => ["author_id", "number"]
|
|
725
1144
|
|
|
726
|
-
|
|
1145
|
+
book = Cpk::Book.create!(author_id: 1, number: 1)
|
|
1146
|
+
Cpk::Book.where(Cpk::Book.primary_key => [[1, 2]]) # => [book]
|
|
727
1147
|
|
|
728
|
-
|
|
1148
|
+
# Topic => Topic(id: integer, title: string, author_name: string...)
|
|
1149
|
+
|
|
1150
|
+
Topic.where([:title, :author_name] => [["The Alchemist", "Paulo Coelho"], ["Harry Potter", "J.K Rowling"]])
|
|
1151
|
+
```
|
|
1152
|
+
|
|
1153
|
+
*Paarth Madan*
|
|
1154
|
+
|
|
1155
|
+
* Allow warning codes to be ignore when reporting SQL warnings.
|
|
1156
|
+
|
|
1157
|
+
Active Record config that can ignore warning codes
|
|
1158
|
+
|
|
1159
|
+
```ruby
|
|
1160
|
+
# Configure allowlist of warnings that should always be ignored
|
|
1161
|
+
config.active_record.db_warnings_ignore = [
|
|
1162
|
+
"1062", # MySQL Error 1062: Duplicate entry
|
|
1163
|
+
]
|
|
1164
|
+
```
|
|
729
1165
|
|
|
730
|
-
|
|
1166
|
+
This is supported for the MySQL and PostgreSQL adapters.
|
|
731
1167
|
|
|
732
|
-
*
|
|
1168
|
+
*Nick Borromeo*
|
|
733
1169
|
|
|
734
|
-
*
|
|
1170
|
+
* Introduce `:active_record_fixtures` lazy load hook.
|
|
735
1171
|
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
the value of these fields was not parsed and remained `nil`
|
|
1172
|
+
Hooks defined with this name will be run whenever `TestFixtures` is included
|
|
1173
|
+
in a class.
|
|
739
1174
|
|
|
740
|
-
|
|
1175
|
+
```ruby
|
|
1176
|
+
ActiveSupport.on_load(:active_record_fixtures) do
|
|
1177
|
+
self.fixture_paths << "test/fixtures"
|
|
1178
|
+
end
|
|
741
1179
|
|
|
742
|
-
|
|
1180
|
+
klass = Class.new
|
|
1181
|
+
klass.include(ActiveRecord::TestFixtures)
|
|
743
1182
|
|
|
744
|
-
|
|
1183
|
+
klass.fixture_paths # => ["test/fixtures"]
|
|
1184
|
+
```
|
|
745
1185
|
|
|
746
|
-
*
|
|
1186
|
+
*Andrew Novoselac*
|
|
747
1187
|
|
|
748
|
-
|
|
1188
|
+
* Introduce `TestFixtures#fixture_paths`.
|
|
749
1189
|
|
|
750
|
-
|
|
1190
|
+
Multiple fixture paths can now be specified using the `#fixture_paths` accessor.
|
|
1191
|
+
Apps will continue to have `test/fixtures` as their one fixture path by default,
|
|
1192
|
+
but additional fixture paths can be specified.
|
|
751
1193
|
|
|
752
1194
|
```ruby
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
end
|
|
756
|
-
|
|
757
|
-
Book.in_order_of(:status, %w[written published proposed])
|
|
1195
|
+
ActiveSupport::TestCase.fixture_paths << "component1/test/fixtures"
|
|
1196
|
+
ActiveSupport::TestCase.fixture_paths << "component2/test/fixtures"
|
|
758
1197
|
```
|
|
759
1198
|
|
|
760
|
-
|
|
1199
|
+
`TestFixtures#fixture_path` is now deprecated.
|
|
761
1200
|
|
|
762
|
-
*
|
|
763
|
-
|
|
764
|
-
*Kevin Sjöberg*
|
|
1201
|
+
*Andrew Novoselac*
|
|
765
1202
|
|
|
766
|
-
*
|
|
1203
|
+
* Adds support for deferrable exclude constraints in PostgreSQL.
|
|
767
1204
|
|
|
768
|
-
|
|
1205
|
+
By default, exclude constraints in PostgreSQL are checked after each statement.
|
|
1206
|
+
This works for most use cases, but becomes a major limitation when replacing
|
|
1207
|
+
records with overlapping ranges by using multiple statements.
|
|
769
1208
|
|
|
770
1209
|
```ruby
|
|
771
|
-
|
|
772
|
-
[
|
|
773
|
-
{ id: 2, name: "Copper", price: 4.84 },
|
|
774
|
-
{ id: 4, name: "Gold", price: 1380.87 },
|
|
775
|
-
{ id: 6, name: "Aluminium", price: 0.35 }
|
|
776
|
-
],
|
|
777
|
-
update_only: [:price] # Only prices will be updated
|
|
778
|
-
)
|
|
1210
|
+
exclusion_constraint :users, "daterange(valid_from, valid_to) WITH &&", deferrable: :immediate
|
|
779
1211
|
```
|
|
780
1212
|
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
*Rafael Mendonça França*
|
|
1213
|
+
Passing `deferrable: :immediate` checks constraint after each statement,
|
|
1214
|
+
but allows manually deferring the check using `SET CONSTRAINTS ALL DEFERRED`
|
|
1215
|
+
within a transaction. This will cause the excludes to be checked after the transaction.
|
|
786
1216
|
|
|
787
|
-
|
|
1217
|
+
It's also possible to change the default behavior from an immediate check
|
|
1218
|
+
(after the statement), to a deferred check (after the transaction):
|
|
788
1219
|
|
|
789
|
-
|
|
1220
|
+
```ruby
|
|
1221
|
+
exclusion_constraint :users, "daterange(valid_from, valid_to) WITH &&", deferrable: :deferred
|
|
1222
|
+
```
|
|
790
1223
|
|
|
791
|
-
*
|
|
1224
|
+
*Hiroyuki Ishii*
|
|
792
1225
|
|
|
793
|
-
|
|
1226
|
+
* Respect `foreign_type` option to `delegated_type` for `{role}_class` method.
|
|
794
1227
|
|
|
795
|
-
|
|
1228
|
+
Usage of `delegated_type` with non-conventional `{role}_type` column names can now be specified with `foreign_type` option.
|
|
1229
|
+
This option is the same as `foreign_type` as forwarded to the underlying `belongs_to` association that `delegated_type` wraps.
|
|
796
1230
|
|
|
797
|
-
*
|
|
1231
|
+
*Jason Karns*
|
|
798
1232
|
|
|
799
|
-
*
|
|
1233
|
+
* Add support for unique constraints (PostgreSQL-only).
|
|
800
1234
|
|
|
801
|
-
|
|
1235
|
+
```ruby
|
|
1236
|
+
add_unique_key :sections, [:position], deferrable: :deferred, name: "unique_section_position"
|
|
1237
|
+
remove_unique_key :sections, name: "unique_section_position"
|
|
1238
|
+
```
|
|
802
1239
|
|
|
803
|
-
|
|
1240
|
+
See PostgreSQL's [Unique Constraints](https://www.postgresql.org/docs/current/ddl-constraints.html#DDL-CONSTRAINTS-UNIQUE-CONSTRAINTS) documentation for more on unique constraints.
|
|
804
1241
|
|
|
805
|
-
|
|
1242
|
+
By default, unique constraints in PostgreSQL are checked after each statement.
|
|
1243
|
+
This works for most use cases, but becomes a major limitation when replacing
|
|
1244
|
+
records with unique column by using multiple statements.
|
|
806
1245
|
|
|
807
|
-
|
|
1246
|
+
An example of swapping unique columns between records.
|
|
808
1247
|
|
|
809
|
-
```
|
|
810
|
-
#
|
|
811
|
-
|
|
1248
|
+
```ruby
|
|
1249
|
+
# position is unique column
|
|
1250
|
+
old_item = Item.create!(position: 1)
|
|
1251
|
+
new_item = Item.create!(position: 2)
|
|
812
1252
|
|
|
813
|
-
|
|
814
|
-
|
|
1253
|
+
Item.transaction do
|
|
1254
|
+
old_item.update!(position: 2)
|
|
1255
|
+
new_item.update!(position: 1)
|
|
1256
|
+
end
|
|
815
1257
|
```
|
|
816
1258
|
|
|
817
|
-
|
|
1259
|
+
Using the default behavior, the transaction would fail when executing the
|
|
1260
|
+
first `UPDATE` statement.
|
|
818
1261
|
|
|
819
|
-
|
|
1262
|
+
By passing the `:deferrable` option to the `add_unique_key` statement in
|
|
1263
|
+
migrations, it's possible to defer this check.
|
|
820
1264
|
|
|
821
|
-
|
|
1265
|
+
```ruby
|
|
1266
|
+
add_unique_key :items, [:position], deferrable: :immediate
|
|
1267
|
+
```
|
|
822
1268
|
|
|
823
|
-
|
|
1269
|
+
Passing `deferrable: :immediate` does not change the behaviour of the previous example,
|
|
1270
|
+
but allows manually deferring the check using `SET CONSTRAINTS ALL DEFERRED` within a transaction.
|
|
1271
|
+
This will cause the unique constraints to be checked after the transaction.
|
|
824
1272
|
|
|
825
|
-
|
|
1273
|
+
It's also possible to adjust the default behavior from an immediate
|
|
1274
|
+
check (after the statement), to a deferred check (after the transaction):
|
|
826
1275
|
|
|
827
|
-
|
|
1276
|
+
```ruby
|
|
1277
|
+
add_unique_key :items, [:position], deferrable: :deferred
|
|
1278
|
+
```
|
|
828
1279
|
|
|
829
|
-
|
|
1280
|
+
If you want to change an existing unique index to deferrable, you can use :using_index
|
|
1281
|
+
to create deferrable unique constraints.
|
|
830
1282
|
|
|
831
|
-
|
|
1283
|
+
```ruby
|
|
1284
|
+
add_unique_key :items, deferrable: :deferred, using_index: "index_items_on_position"
|
|
1285
|
+
```
|
|
832
1286
|
|
|
833
|
-
*
|
|
1287
|
+
*Hiroyuki Ishii*
|
|
834
1288
|
|
|
835
|
-
* Remove deprecated `Tasks::DatabaseTasks.
|
|
1289
|
+
* Remove deprecated `Tasks::DatabaseTasks.schema_file_type`.
|
|
836
1290
|
|
|
837
1291
|
*Rafael Mendonça França*
|
|
838
1292
|
|
|
839
|
-
* Remove deprecated `
|
|
1293
|
+
* Remove deprecated `config.active_record.partial_writes`.
|
|
840
1294
|
|
|
841
1295
|
*Rafael Mendonça França*
|
|
842
1296
|
|
|
843
|
-
*
|
|
844
|
-
and will be consistently replaced by the latter condition.
|
|
845
|
-
|
|
846
|
-
```ruby
|
|
847
|
-
# Rails 6.1 (IN clause is replaced by merger side equality condition)
|
|
848
|
-
Author.where(id: [david.id, mary.id]).merge(Author.where(id: bob)) # => [bob]
|
|
849
|
-
# Rails 6.1 (both conflict conditions exists, deprecated)
|
|
850
|
-
Author.where(id: david.id..mary.id).merge(Author.where(id: bob)) # => []
|
|
851
|
-
# Rails 6.1 with rewhere to migrate to Rails 7.0's behavior
|
|
852
|
-
Author.where(id: david.id..mary.id).merge(Author.where(id: bob), rewhere: true) # => [bob]
|
|
853
|
-
# Rails 7.0 (same behavior with IN clause, mergee side condition is consistently replaced)
|
|
854
|
-
Author.where(id: [david.id, mary.id]).merge(Author.where(id: bob)) # => [bob]
|
|
855
|
-
Author.where(id: david.id..mary.id).merge(Author.where(id: bob)) # => [bob]
|
|
1297
|
+
* Remove deprecated `ActiveRecord::Base` config accessors.
|
|
856
1298
|
|
|
857
1299
|
*Rafael Mendonça França*
|
|
858
1300
|
|
|
859
|
-
* Remove
|
|
1301
|
+
* Remove the `:include_replicas` argument from `configs_for`. Use `:include_hidden` argument instead.
|
|
860
1302
|
|
|
861
|
-
*
|
|
1303
|
+
*Eileen M. Uchitelle*
|
|
862
1304
|
|
|
863
|
-
*
|
|
1305
|
+
* Allow applications to lookup a config via a custom hash key.
|
|
864
1306
|
|
|
865
|
-
|
|
866
|
-
* `db:structure:dump`
|
|
867
|
-
* `db:structure:load`
|
|
868
|
-
* `db:structure:load_if_sql`
|
|
869
|
-
* `db:structure:dump:#{name}`
|
|
870
|
-
* `db:structure:load:#{name}`
|
|
871
|
-
* `db:test:load_structure`
|
|
872
|
-
* `db:test:load_structure:#{name}`
|
|
1307
|
+
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.
|
|
873
1308
|
|
|
874
|
-
|
|
1309
|
+
```ruby
|
|
1310
|
+
ActiveRecord::Base.configurations.configs_for(env_name: "development", name: "primary", config_key: :vitess)
|
|
1311
|
+
ActiveRecord::Base.configurations.configs_for(env_name: "development", config_key: :vitess)
|
|
1312
|
+
```
|
|
875
1313
|
|
|
876
|
-
*
|
|
1314
|
+
*Eileen M. Uchitelle*
|
|
877
1315
|
|
|
878
|
-
|
|
1316
|
+
* Allow applications to register a custom database configuration handler.
|
|
879
1317
|
|
|
880
|
-
|
|
1318
|
+
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`.
|
|
881
1319
|
|
|
882
|
-
|
|
1320
|
+
Given the following database YAML we want the `animals` db to create a `CustomConfig` object instead while the `primary` database will be a `UrlConfig`:
|
|
883
1321
|
|
|
884
|
-
|
|
885
|
-
|
|
1322
|
+
```yaml
|
|
1323
|
+
development:
|
|
1324
|
+
primary:
|
|
1325
|
+
url: postgres://localhost/primary
|
|
1326
|
+
animals:
|
|
1327
|
+
url: postgres://localhost/animals
|
|
1328
|
+
custom_config:
|
|
1329
|
+
sharded: 1
|
|
1330
|
+
```
|
|
886
1331
|
|
|
887
|
-
|
|
1332
|
+
To register a custom handler first make a class that has your custom methods:
|
|
888
1333
|
|
|
889
|
-
|
|
1334
|
+
```ruby
|
|
1335
|
+
class CustomConfig < ActiveRecord::DatabaseConfigurations::UrlConfig
|
|
1336
|
+
def sharded?
|
|
1337
|
+
custom_config.fetch("sharded", false)
|
|
1338
|
+
end
|
|
1339
|
+
|
|
1340
|
+
private
|
|
1341
|
+
def custom_config
|
|
1342
|
+
configuration_hash.fetch(:custom_config)
|
|
1343
|
+
end
|
|
1344
|
+
end
|
|
1345
|
+
```
|
|
890
1346
|
|
|
891
|
-
|
|
1347
|
+
Then register the config in an initializer:
|
|
892
1348
|
|
|
893
1349
|
```ruby
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
}
|
|
1350
|
+
ActiveRecord::DatabaseConfigurations.register_db_config_handler do |env_name, name, url, config|
|
|
1351
|
+
next unless config.key?(:custom_config)
|
|
1352
|
+
CustomConfig.new(env_name, name, url, config)
|
|
1353
|
+
end
|
|
899
1354
|
```
|
|
900
1355
|
|
|
901
|
-
|
|
1356
|
+
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.
|
|
902
1357
|
|
|
903
|
-
*Eileen M. Uchitelle
|
|
1358
|
+
*Eileen M. Uchitelle and John Crepezzi*
|
|
904
1359
|
|
|
905
|
-
*
|
|
1360
|
+
* `ActiveRecord::Base.serialize` no longer uses YAML by default.
|
|
906
1361
|
|
|
907
|
-
|
|
1362
|
+
YAML isn't particularly performant and can lead to security issues
|
|
1363
|
+
if not used carefully.
|
|
908
1364
|
|
|
909
|
-
|
|
1365
|
+
Unfortunately there isn't really any good serializers in Ruby's stdlib
|
|
1366
|
+
to replace it.
|
|
910
1367
|
|
|
911
|
-
|
|
1368
|
+
The obvious choice would be JSON, which is a fine format for this use case,
|
|
1369
|
+
however the JSON serializer in Ruby's stdlib isn't strict enough, as it fallback
|
|
1370
|
+
to casting unknown types to strings, which could lead to corrupted data.
|
|
912
1371
|
|
|
913
|
-
|
|
1372
|
+
Some third party JSON libraries like `Oj` have a suitable strict mode.
|
|
914
1373
|
|
|
915
|
-
|
|
1374
|
+
So it's preferable that users choose a serializer based on their own constraints.
|
|
916
1375
|
|
|
917
|
-
|
|
1376
|
+
The original default can be restored by setting `config.active_record.default_column_serializer = YAML`.
|
|
918
1377
|
|
|
919
|
-
*
|
|
1378
|
+
*Jean Boussier*
|
|
920
1379
|
|
|
921
|
-
*
|
|
1380
|
+
* `ActiveRecord::Base.serialize` signature changed.
|
|
922
1381
|
|
|
923
|
-
|
|
1382
|
+
Rather than a single positional argument that accepts two possible
|
|
1383
|
+
types of values, `serialize` now accepts two distinct keyword arguments.
|
|
924
1384
|
|
|
925
|
-
|
|
1385
|
+
Before:
|
|
926
1386
|
|
|
927
1387
|
```ruby
|
|
928
|
-
|
|
1388
|
+
serialize :content, JSON
|
|
1389
|
+
serialize :backtrace, Array
|
|
929
1390
|
```
|
|
930
1391
|
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
* Remove deprecated support to YAML load `ActiveRecord::Base` instance in the Rails 4.2 and 4.1 formats.
|
|
1392
|
+
After:
|
|
934
1393
|
|
|
935
|
-
|
|
1394
|
+
```ruby
|
|
1395
|
+
serialize :content, coder: JSON
|
|
1396
|
+
serialize :backtrace, type: Array
|
|
1397
|
+
```
|
|
936
1398
|
|
|
937
|
-
*
|
|
1399
|
+
*Jean Boussier*
|
|
938
1400
|
|
|
939
|
-
|
|
1401
|
+
* YAML columns use `YAML.safe_dump` if available.
|
|
940
1402
|
|
|
941
|
-
|
|
1403
|
+
As of `psych 5.1.0`, `YAML.safe_dump` can now apply the same permitted
|
|
1404
|
+
types restrictions than `YAML.safe_load`.
|
|
942
1405
|
|
|
943
|
-
|
|
1406
|
+
It's preferable to ensure the payload only use allowed types when we first
|
|
1407
|
+
try to serialize it, otherwise you may end up with invalid records in the
|
|
1408
|
+
database.
|
|
944
1409
|
|
|
945
|
-
*
|
|
1410
|
+
*Jean Boussier*
|
|
946
1411
|
|
|
947
|
-
|
|
1412
|
+
* `ActiveRecord::QueryLogs` better handle broken encoding.
|
|
948
1413
|
|
|
949
|
-
|
|
1414
|
+
It's not uncommon when building queries with BLOB fields to contain
|
|
1415
|
+
binary data. Unless the call carefully encode the string in ASCII-8BIT
|
|
1416
|
+
it generally end up being encoded in `UTF-8`, and `QueryLogs` would
|
|
1417
|
+
end up failing on it.
|
|
950
1418
|
|
|
951
|
-
|
|
1419
|
+
`ActiveRecord::QueryLogs` no longer depend on the query to be properly encoded.
|
|
952
1420
|
|
|
953
|
-
*
|
|
1421
|
+
*Jean Boussier*
|
|
954
1422
|
|
|
955
|
-
*
|
|
1423
|
+
* Fix a bug where `ActiveRecord::Generators::ModelGenerator` would not respect create_table_migration template overrides.
|
|
956
1424
|
|
|
957
|
-
```
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
1425
|
+
```
|
|
1426
|
+
rails g model create_books title:string content:text
|
|
1427
|
+
```
|
|
1428
|
+
will now read from the create_table_migration.rb.tt template in the following locations in order:
|
|
1429
|
+
```
|
|
1430
|
+
lib/templates/active_record/model/create_table_migration.rb
|
|
1431
|
+
lib/templates/active_record/migration/create_table_migration.rb
|
|
1432
|
+
```
|
|
962
1433
|
|
|
963
|
-
|
|
964
|
-
# => #<Entry:0x00>
|
|
965
|
-
# id: 1
|
|
966
|
-
# entryable_id: 1,
|
|
967
|
-
# entryable_type: 'Message'
|
|
968
|
-
# ...>
|
|
1434
|
+
*Spencer Neste*
|
|
969
1435
|
|
|
970
|
-
|
|
971
|
-
# => #<Message:0x01>
|
|
972
|
-
# id: 1
|
|
973
|
-
# content: 'Hello world'
|
|
974
|
-
# ...>
|
|
975
|
-
```
|
|
1436
|
+
* `ActiveRecord::Relation#explain` now accepts options.
|
|
976
1437
|
|
|
977
|
-
|
|
1438
|
+
For databases and adapters which support them (currently PostgreSQL
|
|
1439
|
+
and MySQL), options can be passed to `explain` to provide more
|
|
1440
|
+
detailed query plan analysis:
|
|
978
1441
|
|
|
979
1442
|
```ruby
|
|
980
|
-
|
|
981
|
-
# ArgumentError: Cannot build association `entryable'. Are you trying to build a polymorphic one-to-one association?
|
|
1443
|
+
Customer.where(id: 1).joins(:orders).explain(:analyze, :verbose)
|
|
982
1444
|
```
|
|
983
1445
|
|
|
984
|
-
*
|
|
985
|
-
|
|
986
|
-
* Use subquery for DELETE with GROUP_BY and HAVING clauses.
|
|
1446
|
+
*Reid Lynch*
|
|
987
1447
|
|
|
988
|
-
|
|
1448
|
+
* Multiple `Arel::Nodes::SqlLiteral` nodes can now be added together to
|
|
1449
|
+
form `Arel::Nodes::Fragments` nodes. This allows joining several pieces
|
|
1450
|
+
of SQL.
|
|
989
1451
|
|
|
990
|
-
|
|
1452
|
+
*Matthew Draper*, *Ole Friis*
|
|
991
1453
|
|
|
992
|
-
|
|
993
|
-
DELETE FROM "posts" WHERE "posts"."id" IN (
|
|
994
|
-
SELECT "posts"."id" FROM "posts" INNER JOIN "comments" ON "comments"."post_id" = "posts"."id" GROUP BY "posts"."id" HAVING (count(comments.id) >= 2))
|
|
995
|
-
) [["flagged", "t"]]
|
|
996
|
-
```
|
|
1454
|
+
* `ActiveRecord::Base#signed_id` raises if called on a new record.
|
|
997
1455
|
|
|
998
|
-
|
|
1456
|
+
Previously it would return an ID that was not usable, since it was based on `id = nil`.
|
|
999
1457
|
|
|
1000
|
-
*
|
|
1458
|
+
*Alex Ghiculescu*
|
|
1001
1459
|
|
|
1002
|
-
|
|
1460
|
+
* Allow SQL warnings to be reported.
|
|
1003
1461
|
|
|
1004
|
-
|
|
1005
|
-
UPDATE "posts" SET "flagged" = ? WHERE "posts"."id" IN (
|
|
1006
|
-
SELECT "posts"."id" FROM "posts" INNER JOIN "comments" ON "comments"."post_id" = "posts"."id"
|
|
1007
|
-
) [["flagged", "t"]]
|
|
1008
|
-
```
|
|
1462
|
+
Active Record configs can be set to enable SQL warning reporting.
|
|
1009
1463
|
|
|
1010
|
-
|
|
1464
|
+
```ruby
|
|
1465
|
+
# Configure action to take when SQL query produces warning
|
|
1466
|
+
config.active_record.db_warnings_action = :raise
|
|
1011
1467
|
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1468
|
+
# Configure allowlist of warnings that should always be ignored
|
|
1469
|
+
config.active_record.db_warnings_ignore = [
|
|
1470
|
+
/Invalid utf8mb4 character string/,
|
|
1471
|
+
"An exact warning message",
|
|
1472
|
+
]
|
|
1017
1473
|
```
|
|
1018
1474
|
|
|
1019
|
-
|
|
1475
|
+
This is supported for the MySQL and PostgreSQL adapters.
|
|
1020
1476
|
|
|
1021
|
-
*
|
|
1477
|
+
*Adrianna Chang*, *Paarth Madan*
|
|
1022
1478
|
|
|
1023
|
-
|
|
1479
|
+
* Add `#regroup` query method as a short-hand for `.unscope(:group).group(fields)`
|
|
1024
1480
|
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
animals:
|
|
1031
|
-
database: animals_db
|
|
1032
|
-
schema_dump: false
|
|
1481
|
+
Example:
|
|
1482
|
+
|
|
1483
|
+
```ruby
|
|
1484
|
+
Post.group(:title).regroup(:author)
|
|
1485
|
+
# SELECT `posts`.`*` FROM `posts` GROUP BY `posts`.`author`
|
|
1033
1486
|
```
|
|
1034
1487
|
|
|
1035
|
-
|
|
1488
|
+
*Danielius Visockas*
|
|
1036
1489
|
|
|
1037
|
-
|
|
1490
|
+
* PostgreSQL adapter method `enable_extension` now allows parameter to be `[schema_name.]<extension_name>`
|
|
1491
|
+
if the extension must be installed on another schema.
|
|
1038
1492
|
|
|
1039
|
-
|
|
1493
|
+
Example: `enable_extension('heroku_ext.hstore')`
|
|
1040
1494
|
|
|
1041
|
-
*
|
|
1495
|
+
*Leonardo Luarte*
|
|
1042
1496
|
|
|
1043
|
-
*
|
|
1497
|
+
* Add `:include` option to `add_index`.
|
|
1044
1498
|
|
|
1045
|
-
|
|
1499
|
+
Add support for including non-key columns in indexes for PostgreSQL
|
|
1500
|
+
with the `INCLUDE` parameter.
|
|
1046
1501
|
|
|
1047
|
-
|
|
1502
|
+
```ruby
|
|
1503
|
+
add_index(:users, :email, include: [:id, :created_at])
|
|
1504
|
+
```
|
|
1048
1505
|
|
|
1049
|
-
|
|
1506
|
+
will result in:
|
|
1050
1507
|
|
|
1051
|
-
|
|
1508
|
+
```sql
|
|
1509
|
+
CREATE INDEX index_users_on_email USING btree (email) INCLUDE (id, created_at)
|
|
1510
|
+
```
|
|
1052
1511
|
|
|
1053
|
-
*
|
|
1512
|
+
*Steve Abrams*
|
|
1054
1513
|
|
|
1055
|
-
|
|
1514
|
+
* `ActiveRecord::Relation`’s `#any?`, `#none?`, and `#one?` methods take an optional pattern
|
|
1515
|
+
argument, more closely matching their `Enumerable` equivalents.
|
|
1056
1516
|
|
|
1057
|
-
|
|
1517
|
+
*George Claghorn*
|
|
1058
1518
|
|
|
1059
|
-
|
|
1519
|
+
* Add `ActiveRecord::Base.normalizes` for declaring attribute normalizations.
|
|
1060
1520
|
|
|
1061
|
-
|
|
1521
|
+
An attribute normalization is applied when the attribute is assigned or
|
|
1522
|
+
updated, and the normalized value will be persisted to the database. The
|
|
1523
|
+
normalization is also applied to the corresponding keyword argument of query
|
|
1524
|
+
methods, allowing records to be queried using unnormalized values.
|
|
1062
1525
|
|
|
1063
|
-
|
|
1526
|
+
For example:
|
|
1064
1527
|
|
|
1065
|
-
|
|
1528
|
+
```ruby
|
|
1529
|
+
class User < ActiveRecord::Base
|
|
1530
|
+
normalizes :email, with: -> email { email.strip.downcase }
|
|
1531
|
+
normalizes :phone, with: -> phone { phone.delete("^0-9").delete_prefix("1") }
|
|
1532
|
+
end
|
|
1066
1533
|
|
|
1067
|
-
|
|
1534
|
+
user = User.create(email: " CRUISE-CONTROL@EXAMPLE.COM\n")
|
|
1535
|
+
user.email # => "cruise-control@example.com"
|
|
1068
1536
|
|
|
1069
|
-
|
|
1537
|
+
user = User.find_by(email: "\tCRUISE-CONTROL@EXAMPLE.COM ")
|
|
1538
|
+
user.email # => "cruise-control@example.com"
|
|
1539
|
+
user.email_before_type_cast # => "cruise-control@example.com"
|
|
1070
1540
|
|
|
1071
|
-
|
|
1541
|
+
User.where(email: "\tCRUISE-CONTROL@EXAMPLE.COM ").count # => 1
|
|
1542
|
+
User.where(["email = ?", "\tCRUISE-CONTROL@EXAMPLE.COM "]).count # => 0
|
|
1072
1543
|
|
|
1073
|
-
|
|
1544
|
+
User.exists?(email: "\tCRUISE-CONTROL@EXAMPLE.COM ") # => true
|
|
1545
|
+
User.exists?(["email = ?", "\tCRUISE-CONTROL@EXAMPLE.COM "]) # => false
|
|
1074
1546
|
|
|
1075
|
-
|
|
1547
|
+
User.normalize_value_for(:phone, "+1 (555) 867-5309") # => "5558675309"
|
|
1548
|
+
```
|
|
1076
1549
|
|
|
1077
|
-
*
|
|
1550
|
+
*Jonathan Hefner*
|
|
1078
1551
|
|
|
1079
|
-
|
|
1080
|
-
example, the `comments` association here now automatically detects
|
|
1081
|
-
`inverse_of: :post`, so we don't need to pass that option:
|
|
1552
|
+
* Hide changes to before_committed! callback behaviour behind flag.
|
|
1082
1553
|
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1554
|
+
In #46525, behavior around before_committed! callbacks was changed so that callbacks
|
|
1555
|
+
would run on every enrolled record in a transaction, not just the first copy of a record.
|
|
1556
|
+
This change in behavior is now controlled by a configuration option,
|
|
1557
|
+
`config.active_record.before_committed_on_all_records`. It will be enabled by default on Rails 7.1.
|
|
1087
1558
|
|
|
1088
|
-
|
|
1089
|
-
belongs_to :post
|
|
1090
|
-
end
|
|
1091
|
-
```
|
|
1559
|
+
*Adrianna Chang*
|
|
1092
1560
|
|
|
1093
|
-
|
|
1094
|
-
association has a scope. In this example a scope on the `post` association
|
|
1095
|
-
would still prevent Rails from finding the inverse for the `comments`
|
|
1096
|
-
association.
|
|
1561
|
+
* The `namespaced_controller` Query Log tag now matches the `controller` format
|
|
1097
1562
|
|
|
1098
|
-
|
|
1563
|
+
For example, a request processed by `NameSpaced::UsersController` will now log as:
|
|
1099
1564
|
|
|
1100
|
-
```
|
|
1101
|
-
|
|
1565
|
+
```
|
|
1566
|
+
:controller # "users"
|
|
1567
|
+
:namespaced_controller # "name_spaced/users"
|
|
1102
1568
|
```
|
|
1103
1569
|
|
|
1104
|
-
*
|
|
1105
|
-
|
|
1106
|
-
* Accept optional transaction args to `ActiveRecord::Locking::Pessimistic#with_lock`
|
|
1107
|
-
|
|
1108
|
-
`#with_lock` now accepts transaction options like `requires_new:`,
|
|
1109
|
-
`isolation:`, and `joinable:`
|
|
1110
|
-
|
|
1111
|
-
*John Mileham*
|
|
1570
|
+
*Alex Ghiculescu*
|
|
1112
1571
|
|
|
1113
|
-
*
|
|
1572
|
+
* Return only unique ids from ActiveRecord::Calculations#ids
|
|
1114
1573
|
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
One example of this is looking up / creating a person via one or more unique alias.
|
|
1574
|
+
Updated ActiveRecord::Calculations#ids to only return the unique ids of the base model
|
|
1575
|
+
when using eager_load, preload and includes.
|
|
1118
1576
|
|
|
1119
1577
|
```ruby
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
|
|
1126
|
-
.create_with(name: "David Heinemeier Hansson")
|
|
1127
|
-
.create_or_find_by(id: alias.user_id)
|
|
1128
|
-
end
|
|
1578
|
+
Post.find_by(id: 1).comments.count
|
|
1579
|
+
# => 5
|
|
1580
|
+
Post.includes(:comments).where(id: 1).pluck(:id)
|
|
1581
|
+
# => [1, 1, 1, 1, 1]
|
|
1582
|
+
Post.includes(:comments).where(id: 1).ids
|
|
1583
|
+
# => [1]
|
|
1129
1584
|
```
|
|
1130
1585
|
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
By passing the `:deferrable` option to the `add_foreign_key` statement in migrations, it's possible to defer this
|
|
1134
|
-
check.
|
|
1586
|
+
*Joshua Young*
|
|
1135
1587
|
|
|
1136
|
-
|
|
1137
|
-
add_foreign_key :aliases, :person, deferrable: true
|
|
1138
|
-
```
|
|
1588
|
+
* Stop using `LOWER()` for case-insensitive queries on `citext` columns
|
|
1139
1589
|
|
|
1140
|
-
|
|
1141
|
-
`
|
|
1142
|
-
|
|
1590
|
+
Previously, `LOWER()` was added for e.g. uniqueness validations with
|
|
1591
|
+
`case_sensitive: false`.
|
|
1592
|
+
It wasn't mentioned in the documentation that the index without `LOWER()`
|
|
1593
|
+
wouldn't be used in this case.
|
|
1143
1594
|
|
|
1144
|
-
|
|
1145
|
-
(after the transaction):
|
|
1595
|
+
*Phil Pirozhkov*
|
|
1146
1596
|
|
|
1147
|
-
|
|
1148
|
-
|
|
1149
|
-
```
|
|
1597
|
+
* Extract `#sync_timezone_changes` method in AbstractMysqlAdapter to enable subclasses
|
|
1598
|
+
to sync database timezone changes without overriding `#raw_execute`.
|
|
1150
1599
|
|
|
1151
|
-
*
|
|
1600
|
+
*Adrianna Chang*, *Paarth Madan*
|
|
1152
1601
|
|
|
1153
|
-
*
|
|
1602
|
+
* Do not write additional new lines when dumping sql migration versions
|
|
1154
1603
|
|
|
1155
|
-
|
|
1156
|
-
```ruby
|
|
1157
|
-
ActiveRecord::DatabaseConfigurations::UrlConfig.new(
|
|
1158
|
-
:production, :production, 'postgres:///?user=user&password=secret&dbname=app', {}
|
|
1159
|
-
).configuration_hash
|
|
1160
|
-
```
|
|
1604
|
+
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.
|
|
1161
1605
|
|
|
1162
|
-
|
|
1606
|
+
*Misha Schwartz*
|
|
1163
1607
|
|
|
1164
|
-
|
|
1165
|
-
{ :user=>"user", :password=>"secret", :dbname=>"app", :adapter=>"postgresql" }
|
|
1166
|
-
```
|
|
1608
|
+
* Fix `composed_of` value freezing and duplication.
|
|
1167
1609
|
|
|
1168
|
-
|
|
1610
|
+
Previously composite values exhibited two confusing behaviors:
|
|
1169
1611
|
|
|
1170
|
-
|
|
1612
|
+
- When reading a compositve value it'd _NOT_ be frozen, allowing it to get out of sync with its underlying database
|
|
1613
|
+
columns.
|
|
1614
|
+
- When writing a compositve value the argument would be frozen, potentially confusing the caller.
|
|
1171
1615
|
|
|
1172
|
-
|
|
1616
|
+
Currently, composite values instantiated based on database columns are frozen (addressing the first issue) and
|
|
1617
|
+
assigned compositve values are duplicated and the duplicate is frozen (addressing the second issue).
|
|
1173
1618
|
|
|
1174
|
-
|
|
1175
|
-
def up
|
|
1176
|
-
create_enum :mood, ["happy", "sad"]
|
|
1619
|
+
*Greg Navis*
|
|
1177
1620
|
|
|
1178
|
-
|
|
1179
|
-
t.enum :current_mood, enum_type: "mood", default: "happy", null: false
|
|
1180
|
-
end
|
|
1181
|
-
end
|
|
1182
|
-
```
|
|
1621
|
+
* Fix redundant updates to the column insensitivity cache
|
|
1183
1622
|
|
|
1184
|
-
|
|
1185
|
-
|
|
1623
|
+
Fixed redundant queries checking column capability for insensitive
|
|
1624
|
+
comparison.
|
|
1186
1625
|
|
|
1187
|
-
*
|
|
1626
|
+
*Phil Pirozhkov*
|
|
1188
1627
|
|
|
1189
|
-
*
|
|
1628
|
+
* Allow disabling methods generated by `ActiveRecord.enum`.
|
|
1190
1629
|
|
|
1191
|
-
|
|
1192
|
-
This allows loading the dump without a pgsql superuser account.
|
|
1630
|
+
*Alfred Dominic*
|
|
1193
1631
|
|
|
1194
|
-
|
|
1632
|
+
* Avoid validating `belongs_to` association if it has not changed.
|
|
1195
1633
|
|
|
1196
|
-
|
|
1634
|
+
Previously, when updating a record, Active Record will perform an extra query to check for the presence of
|
|
1635
|
+
`belongs_to` associations (if the presence is configured to be mandatory), even if that attribute hasn't changed.
|
|
1197
1636
|
|
|
1198
|
-
|
|
1637
|
+
Currently, only `belongs_to`-related columns are checked for presence. It is possible to have orphaned records with
|
|
1638
|
+
this approach. To avoid this problem, you need to use a foreign key.
|
|
1199
1639
|
|
|
1200
|
-
|
|
1201
|
-
support of those to the PostgreSQL adapter.
|
|
1640
|
+
This behavior can be controlled by configuration:
|
|
1202
1641
|
|
|
1203
1642
|
```ruby
|
|
1204
|
-
|
|
1205
|
-
t.string :name
|
|
1206
|
-
t.virtual :name_upcased, type: :string, as: 'upper(name)', stored: true
|
|
1207
|
-
end
|
|
1643
|
+
config.active_record.belongs_to_required_validates_foreign_key = false
|
|
1208
1644
|
```
|
|
1209
1645
|
|
|
1210
|
-
|
|
1646
|
+
and will be disabled by default with `config.load_defaults 7.1`.
|
|
1211
1647
|
|
|
1648
|
+
*fatkodima*
|
|
1212
1649
|
|
|
1213
|
-
|
|
1650
|
+
* `has_one` and `belongs_to` associations now define a `reset_association` method
|
|
1651
|
+
on the owner model (where `association` is the name of the association). This
|
|
1652
|
+
method unloads the cached associate record, if any, and causes the next access
|
|
1653
|
+
to query it from the database.
|
|
1214
1654
|
|
|
1215
|
-
*
|
|
1655
|
+
*George Claghorn*
|
|
1216
1656
|
|
|
1657
|
+
* Allow per attribute setting of YAML permitted classes (safe load) and unsafe load.
|
|
1217
1658
|
|
|
1218
|
-
|
|
1659
|
+
*Carlos Palhares*
|
|
1219
1660
|
|
|
1220
|
-
*
|
|
1661
|
+
* Add a build persistence method
|
|
1221
1662
|
|
|
1222
|
-
|
|
1663
|
+
Provides a wrapper for `new`, to provide feature parity with `create`s
|
|
1664
|
+
ability to create multiple records from an array of hashes, using the
|
|
1665
|
+
same notation as the `build` method on associations.
|
|
1223
1666
|
|
|
1224
|
-
|
|
1225
|
-
Creating scope :my_scope_name. Overwriting existing method "MyClass.my_scope_name" when overwriting existing scopes
|
|
1226
|
-
```
|
|
1667
|
+
*Sean Denny*
|
|
1227
1668
|
|
|
1228
|
-
|
|
1669
|
+
* Raise on assignment to readonly attributes
|
|
1229
1670
|
|
|
1230
|
-
|
|
1671
|
+
```ruby
|
|
1672
|
+
class Post < ActiveRecord::Base
|
|
1673
|
+
attr_readonly :content
|
|
1674
|
+
end
|
|
1675
|
+
Post.create!(content: "cannot be updated")
|
|
1676
|
+
post.content # "cannot be updated"
|
|
1677
|
+
post.content = "something else" # => ActiveRecord::ReadonlyAttributeError
|
|
1678
|
+
```
|
|
1231
1679
|
|
|
1232
|
-
|
|
1233
|
-
and not all databases support explicitly specifying additional precision.
|
|
1680
|
+
Previously, assignment would succeed but silently not write to the database.
|
|
1234
1681
|
|
|
1235
|
-
|
|
1236
|
-
for the SQL to produce a high precision timestamp on the current database.
|
|
1682
|
+
This behavior can be controlled by configuration:
|
|
1237
1683
|
|
|
1238
|
-
|
|
1684
|
+
```ruby
|
|
1685
|
+
config.active_record.raise_on_assign_to_attr_readonly = true
|
|
1686
|
+
```
|
|
1239
1687
|
|
|
1240
|
-
|
|
1688
|
+
and will be enabled by default with `config.load_defaults 7.1`.
|
|
1241
1689
|
|
|
1242
|
-
*
|
|
1690
|
+
*Alex Ghiculescu*, *Hartley McGuire*
|
|
1243
1691
|
|
|
1244
|
-
|
|
1245
|
-
when running postgresql database tasks.
|
|
1692
|
+
* Allow unscoping of preload and eager_load associations
|
|
1246
1693
|
|
|
1247
|
-
|
|
1248
|
-
|
|
1694
|
+
Added the ability to unscope preload and eager_load associations just like
|
|
1695
|
+
includes, joins, etc. See ActiveRecord::QueryMethods::VALID_UNSCOPING_VALUES
|
|
1696
|
+
for the full list of supported unscopable scopes.
|
|
1249
1697
|
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
|
-
sslcert: client.crt
|
|
1253
|
-
sslkey: client.key
|
|
1254
|
-
sslrootcert: ca.crt
|
|
1698
|
+
```ruby
|
|
1699
|
+
query.unscope(:eager_load, :preload).group(:id).select(:id)
|
|
1255
1700
|
```
|
|
1256
1701
|
|
|
1257
|
-
|
|
1702
|
+
*David Morehouse*
|
|
1258
1703
|
|
|
1259
|
-
|
|
1260
|
-
PGSSLMODE=verify-full
|
|
1261
|
-
PGSSLCERT=client.crt
|
|
1262
|
-
PGSSLKEY=client.key
|
|
1263
|
-
PGSSLROOTCERT=ca.crt
|
|
1264
|
-
```
|
|
1704
|
+
* Add automatic filtering of encrypted attributes on inspect
|
|
1265
1705
|
|
|
1266
|
-
|
|
1706
|
+
This feature is enabled by default but can be disabled with
|
|
1267
1707
|
|
|
1268
|
-
|
|
1708
|
+
```ruby
|
|
1709
|
+
config.active_record.encryption.add_to_filter_parameters = false
|
|
1710
|
+
```
|
|
1711
|
+
|
|
1712
|
+
*Hartley McGuire*
|
|
1269
1713
|
|
|
1270
|
-
*
|
|
1714
|
+
* Clear locking column on #dup
|
|
1271
1715
|
|
|
1272
|
-
|
|
1273
|
-
and not also to the callbacks from the update itself.
|
|
1716
|
+
This change fixes not to duplicate locking_column like id and timestamps.
|
|
1274
1717
|
|
|
1275
|
-
|
|
1718
|
+
```
|
|
1719
|
+
car = Car.create!
|
|
1720
|
+
car.touch
|
|
1721
|
+
car.lock_version #=> 1
|
|
1722
|
+
car.dup.lock_version #=> 0
|
|
1723
|
+
```
|
|
1276
1724
|
|
|
1277
|
-
*
|
|
1278
|
-
using `String#constantize` instead of the model's `polymorphic_class_for`.
|
|
1725
|
+
*Shouichi Kamiya*, *Seonggi Yang*, *Ryohei UEDA*
|
|
1279
1726
|
|
|
1280
|
-
|
|
1281
|
-
1. `touch`ing the previously associated record
|
|
1282
|
-
2. updating the previously associated record's `counter_cache`
|
|
1727
|
+
* Invalidate transaction as early as possible
|
|
1283
1728
|
|
|
1284
|
-
|
|
1729
|
+
After rescuing a `TransactionRollbackError` exception Rails invalidates transactions earlier in the flow
|
|
1730
|
+
allowing the framework to skip issuing the `ROLLBACK` statement in more cases.
|
|
1731
|
+
Only affects adapters that have `savepoint_errors_invalidate_transactions?` configured as `true`,
|
|
1732
|
+
which at this point is only applicable to the `mysql2` adapter.
|
|
1285
1733
|
|
|
1286
|
-
*
|
|
1734
|
+
*Nikita Vasilevsky*
|
|
1287
1735
|
|
|
1288
|
-
|
|
1736
|
+
* Allow configuring columns list to be used in SQL queries issued by an `ActiveRecord::Base` object
|
|
1289
1737
|
|
|
1290
|
-
|
|
1738
|
+
It is now possible to configure columns list that will be used to build an SQL query clauses when
|
|
1739
|
+
updating, deleting or reloading an `ActiveRecord::Base` object
|
|
1291
1740
|
|
|
1292
1741
|
```ruby
|
|
1293
|
-
|
|
1742
|
+
class Developer < ActiveRecord::Base
|
|
1743
|
+
query_constraints :company_id, :id
|
|
1744
|
+
end
|
|
1745
|
+
developer = Developer.first.update(name: "Bob")
|
|
1746
|
+
# => UPDATE "developers" SET "name" = 'Bob' WHERE "developers"."company_id" = 1 AND "developers"."id" = 1
|
|
1294
1747
|
```
|
|
1295
1748
|
|
|
1296
|
-
|
|
1749
|
+
*Nikita Vasilevsky*
|
|
1297
1750
|
|
|
1298
|
-
|
|
1299
|
-
config.active_record.schema_cache_ignored_tables = [/^_/]
|
|
1300
|
-
```
|
|
1751
|
+
* Adds `validate` to foreign keys and check constraints in schema.rb
|
|
1301
1752
|
|
|
1302
|
-
|
|
1753
|
+
Previously, `schema.rb` would not record if `validate: false` had been used when adding a foreign key or check
|
|
1754
|
+
constraint, so restoring a database from the schema could result in foreign keys or check constraints being
|
|
1755
|
+
incorrectly validated.
|
|
1303
1756
|
|
|
1304
|
-
*
|
|
1757
|
+
*Tommy Graves*
|
|
1305
1758
|
|
|
1306
|
-
|
|
1307
|
-
|
|
1308
|
-
database adapters. This change unifies the behavior so each method behaves the same regardless
|
|
1309
|
-
of adapter.
|
|
1759
|
+
* Adapter `#execute` methods now accept an `allow_retry` option. When set to `true`, the SQL statement will be
|
|
1760
|
+
retried, up to the database's configured `connection_retries` value, upon encountering connection-related errors.
|
|
1310
1761
|
|
|
1311
|
-
|
|
1762
|
+
*Adrianna Chang*
|
|
1312
1763
|
|
|
1313
|
-
|
|
1314
|
-
`columns_hash`: (unchanged) raises a db error if the table does not exist.
|
|
1315
|
-
`primary_keys`: (unchanged) returns `nil` if the table does not exist.
|
|
1316
|
-
`indexes`: (changed for mysql2) returns `[]` if the table does not exist.
|
|
1764
|
+
* Only trigger `after_commit :destroy` callbacks when a database row is deleted.
|
|
1317
1765
|
|
|
1318
|
-
|
|
1766
|
+
This prevents `after_commit :destroy` callbacks from being triggered again
|
|
1767
|
+
when `destroy` is called multiple times on the same record.
|
|
1319
1768
|
|
|
1320
|
-
*
|
|
1769
|
+
*Ben Sheldon*
|
|
1321
1770
|
|
|
1322
|
-
|
|
1771
|
+
* Fix `ciphertext_for` for yet-to-be-encrypted values.
|
|
1323
1772
|
|
|
1324
|
-
|
|
1773
|
+
Previously, `ciphertext_for` returned the cleartext of values that had not
|
|
1774
|
+
yet been encrypted, such as with an unpersisted record:
|
|
1325
1775
|
|
|
1326
|
-
|
|
1776
|
+
```ruby
|
|
1777
|
+
Post.encrypts :body
|
|
1327
1778
|
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
|
|
1779
|
+
post = Post.create!(body: "Hello")
|
|
1780
|
+
post.ciphertext_for(:body)
|
|
1781
|
+
# => "{\"p\":\"abc..."
|
|
1331
1782
|
|
|
1332
|
-
|
|
1333
|
-
|
|
1783
|
+
post.body = "World"
|
|
1784
|
+
post.ciphertext_for(:body)
|
|
1785
|
+
# => "World"
|
|
1786
|
+
```
|
|
1334
1787
|
|
|
1335
|
-
|
|
1336
|
-
|
|
1337
|
-
database: my_database
|
|
1338
|
-
adapter: mysql2
|
|
1339
|
-
animals:
|
|
1340
|
-
database: my_animals_database
|
|
1341
|
-
adapter: mysql2
|
|
1342
|
-
database_tasks: false
|
|
1343
|
-
```
|
|
1788
|
+
Now, `ciphertext_for` will always return the ciphertext of encrypted
|
|
1789
|
+
attributes:
|
|
1344
1790
|
|
|
1345
|
-
|
|
1791
|
+
```ruby
|
|
1792
|
+
Post.encrypts :body
|
|
1346
1793
|
|
|
1347
|
-
|
|
1794
|
+
post = Post.create!(body: "Hello")
|
|
1795
|
+
post.ciphertext_for(:body)
|
|
1796
|
+
# => "{\"p\":\"abc..."
|
|
1348
1797
|
|
|
1349
|
-
|
|
1350
|
-
|
|
1798
|
+
post.body = "World"
|
|
1799
|
+
post.ciphertext_for(:body)
|
|
1800
|
+
# => "{\"p\":\"xyz..."
|
|
1801
|
+
```
|
|
1351
1802
|
|
|
1352
|
-
|
|
1803
|
+
*Jonathan Hefner*
|
|
1353
1804
|
|
|
1354
|
-
*
|
|
1805
|
+
* Fix a bug where using groups and counts with long table names would return incorrect results.
|
|
1355
1806
|
|
|
1356
|
-
|
|
1807
|
+
*Shota Toguchi*, *Yusaku Ono*
|
|
1357
1808
|
|
|
1358
|
-
|
|
1359
|
-
# config/application.rb
|
|
1360
|
-
module MyApp
|
|
1361
|
-
class Application < Rails::Application
|
|
1362
|
-
config.active_record.query_log_tags_enabled = true
|
|
1363
|
-
end
|
|
1364
|
-
end
|
|
1365
|
-
```
|
|
1809
|
+
* Fix encryption of column default values.
|
|
1366
1810
|
|
|
1367
|
-
|
|
1811
|
+
Previously, encrypted attributes that used column default values appeared to
|
|
1812
|
+
be encrypted on create, but were not:
|
|
1368
1813
|
|
|
1369
|
-
|
|
1370
|
-
|
|
1371
|
-
def index
|
|
1372
|
-
@books = Book.all
|
|
1373
|
-
end
|
|
1374
|
-
end
|
|
1375
|
-
```
|
|
1814
|
+
```ruby
|
|
1815
|
+
Book.encrypts :name
|
|
1376
1816
|
|
|
1377
|
-
|
|
1378
|
-
|
|
1379
|
-
|
|
1380
|
-
|
|
1817
|
+
book = Book.create!
|
|
1818
|
+
book.name
|
|
1819
|
+
# => "<untitled>"
|
|
1820
|
+
book.name_before_type_cast
|
|
1821
|
+
# => "{\"p\":\"abc..."
|
|
1822
|
+
book.reload.name_before_type_cast
|
|
1823
|
+
# => "<untitled>"
|
|
1824
|
+
```
|
|
1381
1825
|
|
|
1382
|
-
|
|
1826
|
+
Now, attributes with column default values are encrypted:
|
|
1383
1827
|
|
|
1384
|
-
|
|
1385
|
-
|
|
1386
|
-
:application,
|
|
1387
|
-
:controller,
|
|
1388
|
-
:action,
|
|
1389
|
-
{
|
|
1390
|
-
custom_static: "foo",
|
|
1391
|
-
custom_dynamic: -> { Time.now }
|
|
1392
|
-
}
|
|
1393
|
-
]
|
|
1394
|
-
```
|
|
1828
|
+
```ruby
|
|
1829
|
+
Book.encrypts :name
|
|
1395
1830
|
|
|
1396
|
-
|
|
1831
|
+
book = Book.create!
|
|
1832
|
+
book.name
|
|
1833
|
+
# => "<untitled>"
|
|
1834
|
+
book.name_before_type_cast
|
|
1835
|
+
# => "{\"p\":\"abc..."
|
|
1836
|
+
book.reload.name_before_type_cast
|
|
1837
|
+
# => "{\"p\":\"abc..."
|
|
1838
|
+
```
|
|
1397
1839
|
|
|
1398
|
-
*
|
|
1840
|
+
*Jonathan Hefner*
|
|
1399
1841
|
|
|
1400
|
-
|
|
1842
|
+
* Deprecate delegation from `Base` to `connection_handler`.
|
|
1401
1843
|
|
|
1402
|
-
|
|
1844
|
+
Calling `Base.clear_all_connections!`, `Base.clear_active_connections!`, `Base.clear_reloadable_connections!` and `Base.flush_idle_connections!` is deprecated. Please call these methods on the connection handler directly. In future Rails versions, the delegation from `Base` to the `connection_handler` will be removed.
|
|
1403
1845
|
|
|
1404
|
-
|
|
1405
|
-
about to use for `#or` or `#and` is structurally compatible with the
|
|
1406
|
-
receiver.
|
|
1846
|
+
*Eileen M. Uchitelle*
|
|
1407
1847
|
|
|
1408
|
-
|
|
1848
|
+
* Allow ActiveRecord::QueryMethods#reselect to receive hash values, similar to ActiveRecord::QueryMethods#select
|
|
1409
1849
|
|
|
1410
|
-
*
|
|
1850
|
+
*Sampat Badhe*
|
|
1411
1851
|
|
|
1412
|
-
|
|
1413
|
-
returned in based on a SQL expression. By default, this will be accomplished
|
|
1414
|
-
using a case statement, as in:
|
|
1852
|
+
* Validate options when managing columns and tables in migrations.
|
|
1415
1853
|
|
|
1416
|
-
|
|
1417
|
-
|
|
1418
|
-
|
|
1854
|
+
If an invalid option is passed to a migration method like `create_table` and `add_column`, an error will be raised
|
|
1855
|
+
instead of the option being silently ignored. Validation of the options will only be applied for new migrations
|
|
1856
|
+
that are created.
|
|
1419
1857
|
|
|
1420
|
-
|
|
1858
|
+
*Guo Xiang Tan*, *George Wambold*
|
|
1421
1859
|
|
|
1422
|
-
|
|
1423
|
-
SELECT "posts".* FROM "posts" ORDER BY CASE "posts"."id" WHEN 3 THEN 1 WHEN 5 THEN 2 WHEN 1 THEN 3 ELSE 4 END ASC
|
|
1424
|
-
```
|
|
1860
|
+
* Update query log tags to use the [SQLCommenter](https://open-telemetry.github.io/opentelemetry-sqlcommenter/) format by default. See [#46179](https://github.com/rails/rails/issues/46179)
|
|
1425
1861
|
|
|
1426
|
-
|
|
1427
|
-
`FIELD` function, that connection adapter will generate the following SQL
|
|
1428
|
-
instead:
|
|
1862
|
+
To opt out of SQLCommenter-formatted query log tags, set `config.active_record.query_log_tags_format = :legacy`. By default, this is set to `:sqlcommenter`.
|
|
1429
1863
|
|
|
1430
|
-
|
|
1431
|
-
SELECT "posts".* FROM "posts" ORDER BY FIELD("posts"."id", 1, 5, 3) DESC
|
|
1432
|
-
```
|
|
1864
|
+
*Modulitos* and *Iheanyi*
|
|
1433
1865
|
|
|
1434
|
-
|
|
1866
|
+
* Allow any ERB in the database.yml when creating rake tasks.
|
|
1435
1867
|
|
|
1436
|
-
|
|
1868
|
+
Any ERB can be used in `database.yml` even if it accesses environment
|
|
1869
|
+
configurations.
|
|
1437
1870
|
|
|
1438
|
-
|
|
1871
|
+
Deprecates `config.active_record.suppress_multiple_database_warning`.
|
|
1439
1872
|
|
|
1440
|
-
|
|
1441
|
-
scope = Post.includes(:comments).order(:"comments.label")
|
|
1442
|
-
=> true
|
|
1443
|
-
```
|
|
1873
|
+
*Eike Send*
|
|
1444
1874
|
|
|
1445
|
-
|
|
1875
|
+
* Add table to error for duplicate column definitions.
|
|
1446
1876
|
|
|
1447
|
-
|
|
1877
|
+
If a migration defines duplicate columns for a table, the error message
|
|
1878
|
+
shows which table it concerns.
|
|
1448
1879
|
|
|
1449
|
-
|
|
1450
|
-
if a different associated object has been assigned and the foreign key will be updated in the
|
|
1451
|
-
next save.
|
|
1880
|
+
*Petrik de Heus*
|
|
1452
1881
|
|
|
1453
|
-
|
|
1454
|
-
association to reference a different associated object.
|
|
1882
|
+
* Fix erroneous nil default precision on virtual datetime columns.
|
|
1455
1883
|
|
|
1456
|
-
|
|
1884
|
+
Prior to this change, virtual datetime columns did not have the same
|
|
1885
|
+
default precision as regular datetime columns, resulting in the following
|
|
1886
|
+
being erroneously equivalent:
|
|
1457
1887
|
|
|
1458
|
-
|
|
1888
|
+
t.virtual :name, type: datetime, as: "expression"
|
|
1889
|
+
t.virtual :name, type: datetime, precision: nil, as: "expression"
|
|
1459
1890
|
|
|
1460
|
-
|
|
1461
|
-
|
|
1891
|
+
This change fixes the default precision lookup, so virtual and regular
|
|
1892
|
+
datetime column default precisions match.
|
|
1462
1893
|
|
|
1463
|
-
|
|
1464
|
-
# config/database.yml
|
|
1894
|
+
*Sam Bostock*
|
|
1465
1895
|
|
|
1466
|
-
|
|
1467
|
-
schema_dump: false
|
|
1468
|
-
```
|
|
1896
|
+
* Use connection from `#with_raw_connection` in `#quote_string`.
|
|
1469
1897
|
|
|
1470
|
-
|
|
1898
|
+
This ensures that the string quoting is wrapped in the reconnect and retry logic
|
|
1899
|
+
that `#with_raw_connection` offers.
|
|
1471
1900
|
|
|
1472
|
-
*
|
|
1901
|
+
*Adrianna Chang*
|
|
1473
1902
|
|
|
1474
|
-
|
|
1475
|
-
on an outer table.
|
|
1903
|
+
* Add `expires_at` option to `signed_id`.
|
|
1476
1904
|
|
|
1477
|
-
|
|
1478
|
-
Post.includes(:comments).order({ "comments.label": :ASC }).eager_loading?
|
|
1479
|
-
# => true
|
|
1480
|
-
```
|
|
1905
|
+
*Shouichi Kamiya*
|
|
1481
1906
|
|
|
1482
|
-
|
|
1907
|
+
* Allow applications to set retry deadline for query retries.
|
|
1483
1908
|
|
|
1484
|
-
|
|
1909
|
+
Building on the work done in #44576 and #44591, we extend the logic that automatically
|
|
1910
|
+
reconnects database connections to take into account a timeout limit. We won't retry
|
|
1911
|
+
a query if a given amount of time has elapsed since the query was first attempted. This
|
|
1912
|
+
value defaults to nil, meaning that all retryable queries are retried regardless of time elapsed,
|
|
1913
|
+
but this can be changed via the `retry_deadline` option in the database config.
|
|
1485
1914
|
|
|
1486
|
-
|
|
1915
|
+
*Adrianna Chang*
|
|
1487
1916
|
|
|
1488
|
-
|
|
1917
|
+
* Fix a case where the query cache can return wrong values. See #46044
|
|
1489
1918
|
|
|
1490
|
-
*
|
|
1919
|
+
*Aaron Patterson*
|
|
1491
1920
|
|
|
1492
|
-
|
|
1921
|
+
* Support MySQL's ssl-mode option for MySQLDatabaseTasks.
|
|
1493
1922
|
|
|
1494
|
-
|
|
1495
|
-
|
|
1496
|
-
|
|
1923
|
+
Verifying the identity of the database server requires setting the ssl-mode
|
|
1924
|
+
option to VERIFY_CA or VERIFY_IDENTITY. This option was previously ignored
|
|
1925
|
+
for MySQL database tasks like creating a database and dumping the structure.
|
|
1497
1926
|
|
|
1498
|
-
|
|
1499
|
-
would cause old processes to no longer be able to create new records.
|
|
1927
|
+
*Petrik de Heus*
|
|
1500
1928
|
|
|
1501
|
-
|
|
1502
|
-
to stop using it.
|
|
1929
|
+
* Move `ActiveRecord::InternalMetadata` to an independent object.
|
|
1503
1930
|
|
|
1504
|
-
|
|
1931
|
+
`ActiveRecord::InternalMetadata` no longer inherits from `ActiveRecord::Base` and is now an independent object that should be instantiated with a `connection`. This class is private and should not be used by applications directly. If you want to interact with the schema migrations table, please access it on the connection directly, for example: `ActiveRecord::Base.connection.schema_migration`.
|
|
1505
1932
|
|
|
1506
|
-
*
|
|
1933
|
+
*Eileen M. Uchitelle*
|
|
1507
1934
|
|
|
1508
|
-
|
|
1935
|
+
* Deprecate quoting `ActiveSupport::Duration` as an integer
|
|
1509
1936
|
|
|
1510
|
-
|
|
1511
|
-
|
|
1937
|
+
Using ActiveSupport::Duration as an interpolated bind parameter in a SQL
|
|
1938
|
+
string template is deprecated. To avoid this warning, you should explicitly
|
|
1939
|
+
convert the duration to a more specific database type. For example, if you
|
|
1940
|
+
want to use a duration as an integer number of seconds:
|
|
1941
|
+
```
|
|
1942
|
+
Record.where("duration = ?", 1.hour.to_i)
|
|
1943
|
+
```
|
|
1944
|
+
If you want to use a duration as an ISO 8601 string:
|
|
1945
|
+
```
|
|
1946
|
+
Record.where("duration = ?", 1.hour.iso8601)
|
|
1512
1947
|
```
|
|
1513
1948
|
|
|
1514
|
-
|
|
1515
|
-
|
|
1516
|
-
The feature is supported by SQLite and PostgreSQL, other adapters can also add support for it.
|
|
1949
|
+
*Aram Greenman*
|
|
1517
1950
|
|
|
1518
|
-
|
|
1951
|
+
* Allow `QueryMethods#in_order_of` to order by a string column name.
|
|
1519
1952
|
|
|
1520
|
-
|
|
1953
|
+
```ruby
|
|
1954
|
+
Post.in_order_of("id", [4,2,3,1]).to_a
|
|
1955
|
+
Post.joins(:author).in_order_of("authors.name", ["Bob", "Anna", "John"]).to_a
|
|
1956
|
+
```
|
|
1521
1957
|
|
|
1522
|
-
|
|
1523
|
-
the owner should still return `nil` on the `has_one` relation.
|
|
1958
|
+
*Igor Kasyanchuk*
|
|
1524
1959
|
|
|
1525
|
-
|
|
1960
|
+
* Move `ActiveRecord::SchemaMigration` to an independent object.
|
|
1526
1961
|
|
|
1527
|
-
|
|
1962
|
+
`ActiveRecord::SchemaMigration` no longer inherits from `ActiveRecord::Base` and is now an independent object that should be instantiated with a `connection`. This class is private and should not be used by applications directly. If you want to interact with the schema migrations table, please access it on the connection directly, for example: `ActiveRecord::Base.connection.schema_migration`.
|
|
1528
1963
|
|
|
1529
|
-
*
|
|
1964
|
+
*Eileen M. Uchitelle*
|
|
1530
1965
|
|
|
1531
|
-
|
|
1966
|
+
* Deprecate `all_connection_pools` and make `connection_pool_list` more explicit.
|
|
1532
1967
|
|
|
1533
|
-
|
|
1968
|
+
Following on #45924 `all_connection_pools` is now deprecated. `connection_pool_list` will either take an explicit role or applications can opt into the new behavior by passing `:all`.
|
|
1534
1969
|
|
|
1535
|
-
|
|
1536
|
-
that already exists or when removing a foreign key that does not exist.
|
|
1970
|
+
*Eileen M. Uchitelle*
|
|
1537
1971
|
|
|
1538
|
-
|
|
1972
|
+
* Fix connection handler methods to operate on all pools.
|
|
1539
1973
|
|
|
1540
|
-
|
|
1541
|
-
class AddAuthorsForeignKeyToArticles < ActiveRecord::Migration[7.0]
|
|
1542
|
-
def change
|
|
1543
|
-
add_foreign_key :articles, :authors, if_not_exists: true
|
|
1544
|
-
end
|
|
1545
|
-
end
|
|
1546
|
-
```
|
|
1974
|
+
`active_connections?`, `clear_active_connections!`, `clear_reloadable_connections!`, `clear_all_connections!`, and `flush_idle_connections!` now operate on all pools by default. Previously they would default to using the `current_role` or `:writing` role unless specified.
|
|
1547
1975
|
|
|
1548
|
-
|
|
1549
|
-
class RemoveAuthorsForeignKeyFromArticles < ActiveRecord::Migration[7.0]
|
|
1550
|
-
def change
|
|
1551
|
-
remove_foreign_key :articles, :authors, if_exists: true
|
|
1552
|
-
end
|
|
1553
|
-
end
|
|
1554
|
-
```
|
|
1976
|
+
*Eileen M. Uchitelle*
|
|
1555
1977
|
|
|
1556
|
-
*Roberto Miranda*
|
|
1557
1978
|
|
|
1558
|
-
*
|
|
1979
|
+
* Allow ActiveRecord::QueryMethods#select to receive hash values.
|
|
1559
1980
|
|
|
1560
|
-
|
|
1561
|
-
environment variables which persisted beyond the command being run, and may
|
|
1562
|
-
have caused subsequent commands and connections to fail. Tasks running
|
|
1563
|
-
across multiple postgresql databases like `rails db:test:prepare` may have
|
|
1564
|
-
been affected.
|
|
1981
|
+
Currently, `select` might receive only raw sql and symbols to define columns and aliases to select.
|
|
1565
1982
|
|
|
1566
|
-
|
|
1983
|
+
With this change we can provide `hash` as argument, for example:
|
|
1567
1984
|
|
|
1568
|
-
|
|
1985
|
+
```ruby
|
|
1986
|
+
Post.joins(:comments).select(posts: [:id, :title, :created_at], comments: [:id, :body, :author_id])
|
|
1987
|
+
#=> "SELECT \"posts\".\"id\", \"posts\".\"title\", \"posts\".\"created_at\", \"comments\".\"id\", \"comments\".\"body\", \"comments\".\"author_id\"
|
|
1988
|
+
# FROM \"posts\" INNER JOIN \"comments\" ON \"comments\".\"post_id\" = \"posts\".\"id\""
|
|
1569
1989
|
|
|
1570
|
-
|
|
1990
|
+
Post.joins(:comments).select(posts: { id: :post_id, title: :post_title }, comments: { id: :comment_id, body: :comment_body })
|
|
1991
|
+
#=> "SELECT posts.id as post_id, posts.title as post_title, comments.id as comment_id, comments.body as comment_body
|
|
1992
|
+
# FROM \"posts\" INNER JOIN \"comments\" ON \"comments\".\"post_id\" = \"posts\".\"id\""
|
|
1993
|
+
```
|
|
1994
|
+
*Oleksandr Holubenko*, *Josef Šimánek*, *Jean Boussier*
|
|
1571
1995
|
|
|
1572
|
-
|
|
1996
|
+
* Adapts virtual attributes on `ActiveRecord::Persistence#becomes`.
|
|
1573
1997
|
|
|
1574
|
-
|
|
1998
|
+
When source and target classes have a different set of attributes adapts
|
|
1999
|
+
attributes such that the extra attributes from target are added.
|
|
1575
2000
|
|
|
1576
|
-
|
|
2001
|
+
```ruby
|
|
2002
|
+
class Person < ApplicationRecord
|
|
2003
|
+
end
|
|
1577
2004
|
|
|
1578
|
-
|
|
2005
|
+
class WebUser < Person
|
|
2006
|
+
attribute :is_admin, :boolean
|
|
2007
|
+
after_initialize :set_admin
|
|
1579
2008
|
|
|
1580
|
-
|
|
2009
|
+
def set_admin
|
|
2010
|
+
write_attribute(:is_admin, email =~ /@ourcompany\.com$/)
|
|
2011
|
+
end
|
|
2012
|
+
end
|
|
1581
2013
|
|
|
1582
|
-
|
|
1583
|
-
|
|
1584
|
-
|
|
1585
|
-
|
|
2014
|
+
person = Person.find_by(email: "email@ourcompany.com")
|
|
2015
|
+
person.respond_to? :is_admin
|
|
2016
|
+
# => false
|
|
2017
|
+
person.becomes(WebUser).is_admin?
|
|
2018
|
+
# => true
|
|
2019
|
+
```
|
|
1586
2020
|
|
|
1587
|
-
|
|
1588
|
-
that is `Encoding::UTF_8` by default. It can be disabled by setting it to `nil`.
|
|
2021
|
+
*Jacopo Beschi*, *Sampson Crowley*
|
|
1589
2022
|
|
|
1590
|
-
|
|
2023
|
+
* Fix `ActiveRecord::QueryMethods#in_order_of` to include `nil`s, to match the
|
|
2024
|
+
behavior of `Enumerable#in_order_of`.
|
|
1591
2025
|
|
|
1592
|
-
|
|
2026
|
+
For example, `Post.in_order_of(:title, [nil, "foo"])` will now include posts
|
|
2027
|
+
with `nil` titles, the same as `Post.all.to_a.in_order_of(:title, [nil, "foo"])`.
|
|
1593
2028
|
|
|
1594
|
-
|
|
1595
|
-
instance `"foo" = 0`, will implicitly cast `"foo"` to `0` and will evaluate to `TRUE` which can
|
|
1596
|
-
lead to security vulnerabilities.
|
|
2029
|
+
*fatkodima*
|
|
1597
2030
|
|
|
1598
|
-
|
|
1599
|
-
being compared, however until now it was still vulnerable when using bind parameters:
|
|
2031
|
+
* Optimize `add_timestamps` to use a single SQL statement.
|
|
1600
2032
|
|
|
1601
2033
|
```ruby
|
|
1602
|
-
|
|
2034
|
+
add_timestamps :my_table
|
|
1603
2035
|
```
|
|
1604
2036
|
|
|
1605
|
-
|
|
2037
|
+
Now results in the following SQL:
|
|
1606
2038
|
|
|
1607
2039
|
```sql
|
|
1608
|
-
|
|
2040
|
+
ALTER TABLE "my_table" ADD COLUMN "created_at" datetime(6) NOT NULL, ADD COLUMN "updated_at" datetime(6) NOT NULL
|
|
1609
2041
|
```
|
|
1610
2042
|
|
|
1611
|
-
|
|
1612
|
-
|
|
1613
|
-
```sql
|
|
1614
|
-
SELECT * FROM `users` WHERE `login_token` = '0' LIMIT 1;
|
|
1615
|
-
```
|
|
2043
|
+
*Iliana Hadzhiatanasova*
|
|
1616
2044
|
|
|
1617
|
-
|
|
2045
|
+
* Add `drop_enum` migration command for PostgreSQL
|
|
1618
2046
|
|
|
1619
|
-
|
|
2047
|
+
This does the inverse of `create_enum`. Before dropping an enum, ensure you have
|
|
2048
|
+
dropped columns that depend on it.
|
|
1620
2049
|
|
|
1621
|
-
|
|
1622
|
-
would silently have no effects.
|
|
2050
|
+
*Alex Ghiculescu*
|
|
1623
2051
|
|
|
1624
|
-
|
|
2052
|
+
* Adds support for `if_exists` option when removing a check constraint.
|
|
1625
2053
|
|
|
1626
|
-
|
|
2054
|
+
The `remove_check_constraint` method now accepts an `if_exists` option. If set
|
|
2055
|
+
to true an error won't be raised if the check constraint doesn't exist.
|
|
1627
2056
|
|
|
1628
|
-
|
|
2057
|
+
*Margaret Parsa* and *Aditya Bhutani*
|
|
1629
2058
|
|
|
1630
|
-
|
|
1631
|
-
Person.update!(:all, state: "confirmed")
|
|
1632
|
-
```
|
|
2059
|
+
* `find_or_create_by` now try to find a second time if it hits a unicity constraint.
|
|
1633
2060
|
|
|
1634
|
-
|
|
2061
|
+
`find_or_create_by` always has been inherently racy, either creating multiple
|
|
2062
|
+
duplicate records or failing with `ActiveRecord::RecordNotUnique` depending on
|
|
2063
|
+
whether a proper unicity constraint was set.
|
|
1635
2064
|
|
|
1636
|
-
|
|
2065
|
+
`create_or_find_by` was introduced for this use case, however it's quite wasteful
|
|
2066
|
+
when the record is expected to exist most of the time, as INSERT require to send
|
|
2067
|
+
more data than SELECT and require more work from the database. Also on some
|
|
2068
|
+
databases it can actually consume a primary key increment which is undesirable.
|
|
1637
2069
|
|
|
1638
|
-
|
|
2070
|
+
So for case where most of the time the record is expected to exist, `find_or_create_by`
|
|
2071
|
+
can be made race-condition free by re-trying the `find` if the `create` failed
|
|
2072
|
+
with `ActiveRecord::RecordNotUnique`. This assumes that the table has the proper
|
|
2073
|
+
unicity constraints, if not, `find_or_create_by` will still lead to duplicated records.
|
|
1639
2074
|
|
|
1640
|
-
*
|
|
2075
|
+
*Jean Boussier*, *Alex Kitchens*
|
|
1641
2076
|
|
|
1642
|
-
*
|
|
2077
|
+
* Introduce a simpler constructor API for ActiveRecord database adapters.
|
|
1643
2078
|
|
|
1644
|
-
|
|
2079
|
+
Previously the adapter had to know how to build a new raw connection to
|
|
2080
|
+
support reconnect, but also expected to be passed an initial already-
|
|
2081
|
+
established connection.
|
|
1645
2082
|
|
|
1646
|
-
|
|
2083
|
+
When manually creating an adapter instance, it will now accept a single
|
|
2084
|
+
config hash, and only establish the real connection on demand.
|
|
1647
2085
|
|
|
1648
|
-
*
|
|
2086
|
+
*Matthew Draper*
|
|
1649
2087
|
|
|
1650
|
-
|
|
2088
|
+
* Avoid redundant `SELECT 1` connection-validation query during DB pool
|
|
2089
|
+
checkout when possible.
|
|
1651
2090
|
|
|
1652
|
-
|
|
2091
|
+
If the first query run during a request is known to be idempotent, it can be
|
|
2092
|
+
used directly to validate the connection, saving a network round-trip.
|
|
1653
2093
|
|
|
1654
|
-
|
|
2094
|
+
*Matthew Draper*
|
|
1655
2095
|
|
|
1656
|
-
|
|
2096
|
+
* Automatically reconnect broken database connections when safe, even
|
|
2097
|
+
mid-request.
|
|
1657
2098
|
|
|
1658
|
-
|
|
2099
|
+
When an error occurs while attempting to run a known-idempotent query, and
|
|
2100
|
+
not inside a transaction, it is safe to immediately reconnect to the
|
|
2101
|
+
database server and try again, so this is now the default behavior.
|
|
1659
2102
|
|
|
1660
|
-
|
|
1661
|
-
|
|
2103
|
+
This new default should always be safe -- to support that, it's consciously
|
|
2104
|
+
conservative about which queries are considered idempotent -- but if
|
|
2105
|
+
necessary it can be disabled by setting the `connection_retries` connection
|
|
2106
|
+
option to `0`.
|
|
1662
2107
|
|
|
1663
|
-
*
|
|
2108
|
+
*Matthew Draper*
|
|
1664
2109
|
|
|
1665
|
-
*
|
|
2110
|
+
* Avoid removing a PostgreSQL extension when there are dependent objects.
|
|
1666
2111
|
|
|
1667
|
-
|
|
1668
|
-
on a subclass won't change the parent's logger.
|
|
2112
|
+
Previously, removing an extension also implicitly removed dependent objects. Now, this will raise an error.
|
|
1669
2113
|
|
|
1670
|
-
|
|
2114
|
+
You can force removing the extension:
|
|
1671
2115
|
|
|
1672
|
-
|
|
2116
|
+
```ruby
|
|
2117
|
+
disable_extension :citext, force: :cascade
|
|
2118
|
+
```
|
|
1673
2119
|
|
|
1674
|
-
|
|
2120
|
+
Fixes #29091.
|
|
1675
2121
|
|
|
1676
|
-
*
|
|
2122
|
+
*fatkodima*
|
|
1677
2123
|
|
|
1678
|
-
|
|
2124
|
+
* Allow nested functions as safe SQL string
|
|
1679
2125
|
|
|
1680
|
-
*
|
|
2126
|
+
*Michael Siegfried*
|
|
1681
2127
|
|
|
1682
|
-
|
|
1683
|
-
the `column_exists?` check would look for a column with the same name and type as the migration.
|
|
2128
|
+
* Allow `destroy_association_async_job=` to be configured with a class string instead of a constant.
|
|
1684
2129
|
|
|
1685
|
-
|
|
1686
|
-
|
|
1687
|
-
|
|
1688
|
-
the type to the database type without running the migration, we opted to drop the type check from
|
|
1689
|
-
`add_column`. This means that migrations adding a duplicate column with a different type will no
|
|
1690
|
-
longer raise an error.
|
|
2130
|
+
Defers an autoloading dependency between `ActiveRecord::Base` and `ActiveJob::Base`
|
|
2131
|
+
and moves the configuration of `ActiveRecord::DestroyAssociationAsyncJob`
|
|
2132
|
+
from ActiveJob to ActiveRecord.
|
|
1691
2133
|
|
|
1692
|
-
|
|
2134
|
+
Deprecates `ActiveRecord::ActiveJobRequiredError` and now raises a `NameError`
|
|
2135
|
+
if the job class is unloadable or an `ActiveRecord::ConfigurationError` if
|
|
2136
|
+
`dependent: :destroy_async` is declared on an association but there is no job
|
|
2137
|
+
class configured.
|
|
1693
2138
|
|
|
1694
|
-
*
|
|
2139
|
+
*Ben Sheldon*
|
|
1695
2140
|
|
|
1696
|
-
|
|
1697
|
-
in a new Rails application.
|
|
1698
|
-
For the above reasons log a warning message when running SQLite in production.
|
|
2141
|
+
* Fix `ActiveRecord::Store` to serialize as a regular Hash
|
|
1699
2142
|
|
|
1700
|
-
|
|
2143
|
+
Previously it would serialize as an `ActiveSupport::HashWithIndifferentAccess`
|
|
2144
|
+
which is wasteful and cause problem with YAML safe_load.
|
|
1701
2145
|
|
|
1702
|
-
*
|
|
2146
|
+
*Jean Boussier*
|
|
1703
2147
|
|
|
1704
|
-
* Add
|
|
2148
|
+
* Add `timestamptz` as a time zone aware type for PostgreSQL
|
|
1705
2149
|
|
|
1706
|
-
|
|
1707
|
-
databases. When set, this option instructs Rails to generate 2 or
|
|
1708
|
-
more queries rather than generating joins for `has_one` associations.
|
|
2150
|
+
This is required for correctly parsing `timestamp with time zone` values in your database.
|
|
1709
2151
|
|
|
1710
|
-
|
|
2152
|
+
If you don't want this, you can opt out by adding this initializer:
|
|
1711
2153
|
|
|
1712
2154
|
```ruby
|
|
1713
|
-
|
|
1714
|
-
has_one :dog
|
|
1715
|
-
has_one :veterinarian, through: :dog, disable_joins: true
|
|
1716
|
-
end
|
|
1717
|
-
```
|
|
1718
|
-
|
|
1719
|
-
Then instead of generating join SQL, two queries are used for `@person.veterinarian`:
|
|
1720
|
-
|
|
1721
|
-
```
|
|
1722
|
-
SELECT "dogs"."id" FROM "dogs" WHERE "dogs"."person_id" = ? [["person_id", 1]]
|
|
1723
|
-
SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."dog_id" = ? [["dog_id", 1]]
|
|
2155
|
+
ActiveRecord::Base.time_zone_aware_types -= [:timestamptz]
|
|
1724
2156
|
```
|
|
1725
2157
|
|
|
1726
|
-
*
|
|
1727
|
-
|
|
1728
|
-
* `Arel::Visitors::Dot` now renders a complete set of properties when visiting
|
|
1729
|
-
`Arel::Nodes::SelectCore`, `SelectStatement`, `InsertStatement`, `UpdateStatement`, and
|
|
1730
|
-
`DeleteStatement`, which fixes #42026. Previously, some properties were omitted.
|
|
1731
|
-
|
|
1732
|
-
*Mike Dalessio*
|
|
2158
|
+
*Alex Ghiculescu*
|
|
1733
2159
|
|
|
1734
|
-
*
|
|
1735
|
-
`DistinctOn`, `Else`, `Except`, `InfixOperation`, `Intersect`, `Lock`, `NotRegexp`, `Quoted`,
|
|
1736
|
-
`Regexp`, `UnaryOperation`, `Union`, `UnionAll`, `When`, and `With`. Previously, these node
|
|
1737
|
-
types caused an exception to be raised by `Arel::Visitors::Dot#accept`.
|
|
2160
|
+
* Add new `ActiveRecord::Base.generates_token_for` API.
|
|
1738
2161
|
|
|
1739
|
-
|
|
2162
|
+
Currently, `signed_id` fulfills the role of generating tokens for e.g.
|
|
2163
|
+
resetting a password. However, signed IDs cannot reflect record state, so
|
|
2164
|
+
if a token is intended to be single-use, it must be tracked in a database at
|
|
2165
|
+
least until it expires.
|
|
1740
2166
|
|
|
1741
|
-
|
|
2167
|
+
With `generates_token_for`, a token can embed data from a record. When
|
|
2168
|
+
using the token to fetch the record, the data from the token and the current
|
|
2169
|
+
data from the record will be compared. If the two do not match, the token
|
|
2170
|
+
will be treated as invalid, the same as if it had expired. For example:
|
|
1742
2171
|
|
|
1743
2172
|
```ruby
|
|
1744
|
-
|
|
1745
|
-
|
|
2173
|
+
class User < ActiveRecord::Base
|
|
2174
|
+
has_secure_password
|
|
1746
2175
|
|
|
1747
|
-
|
|
2176
|
+
generates_token_for :password_reset, expires_in: 15.minutes do
|
|
2177
|
+
# A password's BCrypt salt changes when the password is updated.
|
|
2178
|
+
# By embedding (part of) the salt in a token, the token will
|
|
2179
|
+
# expire when the password is updated.
|
|
2180
|
+
BCrypt::Password.new(password_digest).salt[-10..]
|
|
2181
|
+
end
|
|
2182
|
+
end
|
|
1748
2183
|
|
|
1749
|
-
|
|
1750
|
-
|
|
1751
|
-
```
|
|
2184
|
+
user = User.first
|
|
2185
|
+
token = user.generate_token_for(:password_reset)
|
|
1752
2186
|
|
|
1753
|
-
|
|
2187
|
+
User.find_by_token_for(:password_reset, token) # => user
|
|
1754
2188
|
|
|
1755
|
-
|
|
2189
|
+
user.update!(password: "new password")
|
|
2190
|
+
User.find_by_token_for(:password_reset, token) # => nil
|
|
2191
|
+
```
|
|
1756
2192
|
|
|
1757
|
-
|
|
1758
|
-
By doing this the autosave callback are made more consistent for
|
|
1759
|
-
all 3 cases: `has_many`, `has_one`, and `belongs_to`.
|
|
2193
|
+
*Jonathan Hefner*
|
|
1760
2194
|
|
|
1761
|
-
|
|
2195
|
+
* Optimize Active Record batching for whole table iterations.
|
|
1762
2196
|
|
|
1763
|
-
|
|
2197
|
+
Previously, `in_batches` got all the ids and constructed an `IN`-based query for each batch.
|
|
2198
|
+
When iterating over the whole tables, this approach is not optimal as it loads unneeded ids and
|
|
2199
|
+
`IN` queries with lots of items are slow.
|
|
1764
2200
|
|
|
1765
|
-
|
|
1766
|
-
|
|
1767
|
-
|
|
2201
|
+
Now, whole table iterations use range iteration (`id >= x AND id <= y`) by default which can make iteration
|
|
2202
|
+
several times faster. E.g., tested on a PostgreSQL table with 10 million records: querying (`253s` vs `30s`),
|
|
2203
|
+
updating (`288s` vs `124s`), deleting (`268s` vs `83s`).
|
|
1768
2204
|
|
|
1769
|
-
|
|
2205
|
+
Only whole table iterations use this style of iteration by default. You can disable this behavior by passing `use_ranges: false`.
|
|
2206
|
+
If you iterate over the table and the only condition is, e.g., `archived_at: nil` (and only a tiny fraction
|
|
2207
|
+
of the records are archived), it makes sense to opt in to this approach:
|
|
1770
2208
|
|
|
1771
2209
|
```ruby
|
|
1772
|
-
|
|
1773
|
-
|
|
1774
|
-
has_many :humans
|
|
2210
|
+
Project.where(archived_at: nil).in_batches(use_ranges: true) do |relation|
|
|
2211
|
+
# do something
|
|
1775
2212
|
end
|
|
1776
2213
|
```
|
|
1777
2214
|
|
|
1778
|
-
|
|
1779
|
-
|
|
1780
|
-
```
|
|
1781
|
-
SELECT "humans"."id" FROM "humans" WHERE "humans"."dog_id" = ? [["dog_id", 1]]
|
|
1782
|
-
SELECT "treats".* FROM "treats" WHERE "treats"."human_id" IN (?, ?, ?) [["human_id", 1], ["human_id", 2], ["human_id", 3]]
|
|
1783
|
-
```
|
|
1784
|
-
|
|
1785
|
-
*Eileen M. Uchitelle*, *Aaron Patterson*, *Lee Quarella*
|
|
1786
|
-
|
|
1787
|
-
* Add setting for enumerating column names in SELECT statements.
|
|
2215
|
+
See #45414 for more details.
|
|
1788
2216
|
|
|
1789
|
-
|
|
1790
|
-
change the result of wildcard `SELECT *` queries, which invalidates the result
|
|
1791
|
-
of cached prepared statements and raises a `PreparedStatementCacheExpired` error.
|
|
1792
|
-
|
|
1793
|
-
When enabled, Active Record will avoid wildcards and always include column names
|
|
1794
|
-
in `SELECT` queries, which will return consistent results and avoid prepared
|
|
1795
|
-
statement errors.
|
|
2217
|
+
*fatkodima*
|
|
1796
2218
|
|
|
1797
|
-
|
|
2219
|
+
* `.with` query method added. Construct common table expressions with ease and get `ActiveRecord::Relation` back.
|
|
1798
2220
|
|
|
1799
2221
|
```ruby
|
|
1800
|
-
|
|
1801
|
-
#
|
|
2222
|
+
Post.with(posts_with_comments: Post.where("comments_count > ?", 0))
|
|
2223
|
+
# => ActiveRecord::Relation
|
|
2224
|
+
# WITH posts_with_comments AS (SELECT * FROM posts WHERE (comments_count > 0)) SELECT * FROM posts
|
|
1802
2225
|
```
|
|
1803
2226
|
|
|
1804
|
-
|
|
1805
|
-
|
|
1806
|
-
```ruby
|
|
1807
|
-
# config/application.rb
|
|
1808
|
-
module MyApp
|
|
1809
|
-
class Application < Rails::Application
|
|
1810
|
-
config.active_record.enumerate_columns_in_select_statements = true
|
|
1811
|
-
end
|
|
1812
|
-
end
|
|
2227
|
+
*Vlado Cingel*
|
|
1813
2228
|
|
|
1814
|
-
|
|
1815
|
-
class Book < ApplicationRecord
|
|
1816
|
-
self.enumerate_columns_in_select_statements = true
|
|
1817
|
-
end
|
|
1818
|
-
```
|
|
2229
|
+
* Don't establish a new connection if an identical pool exists already.
|
|
1819
2230
|
|
|
1820
|
-
|
|
1821
|
-
Book.limit(5)
|
|
1822
|
-
# SELECT id, author_id, name, format, status, language, etc FROM books LIMIT 5
|
|
1823
|
-
```
|
|
2231
|
+
Previously, if `establish_connection` was called on a class that already had an established connection, the existing connection would be removed regardless of whether it was the same config. Now if a pool is found with the same values as the new connection, the existing connection will be returned instead of creating a new one.
|
|
1824
2232
|
|
|
1825
|
-
|
|
2233
|
+
This has a slight change in behavior if application code is depending on a new connection being established regardless of whether it's identical to an existing connection. If the old behavior is desirable, applications should call `ActiveRecord::Base#remove_connection` before establishing a new one. Calling `establish_connection` with a different config works the same way as it did previously.
|
|
1826
2234
|
|
|
1827
|
-
*
|
|
2235
|
+
*Eileen M. Uchitelle*
|
|
1828
2236
|
|
|
1829
|
-
|
|
1830
|
-
Book.upsert_all(
|
|
1831
|
-
[{ id: 1, status: 1 }, { id: 2, status: 1 }],
|
|
1832
|
-
on_duplicate: Arel.sql("status = GREATEST(books.status, EXCLUDED.status)")
|
|
1833
|
-
)
|
|
1834
|
-
```
|
|
2237
|
+
* Update `db:prepare` task to load schema when an uninitialized database exists, and dump schema after migrations.
|
|
1835
2238
|
|
|
1836
|
-
*
|
|
2239
|
+
*Ben Sheldon*
|
|
1837
2240
|
|
|
1838
|
-
*
|
|
2241
|
+
* Fix supporting timezone awareness for `tsrange` and `tstzrange` array columns.
|
|
1839
2242
|
|
|
1840
2243
|
```ruby
|
|
1841
|
-
|
|
1842
|
-
|
|
1843
|
-
|
|
1844
|
-
|
|
1845
|
-
|
|
1846
|
-
|
|
1847
|
-
)
|
|
2244
|
+
# In database migrations
|
|
2245
|
+
add_column :shops, :open_hours, :tsrange, array: true
|
|
2246
|
+
# In app config
|
|
2247
|
+
ActiveRecord::Base.time_zone_aware_types += [:tsrange]
|
|
2248
|
+
# In the code times are properly converted to app time zone
|
|
2249
|
+
Shop.create!(open_hours: [Time.current..8.hour.from_now])
|
|
1848
2250
|
```
|
|
1849
2251
|
|
|
1850
|
-
*
|
|
2252
|
+
*Wojciech Wnętrzak*
|
|
1851
2253
|
|
|
1852
|
-
*
|
|
2254
|
+
* Introduce strategy pattern for executing migrations.
|
|
1853
2255
|
|
|
1854
|
-
|
|
2256
|
+
By default, migrations will use a strategy object that delegates the method
|
|
2257
|
+
to the connection adapter. Consumers can implement custom strategy objects
|
|
2258
|
+
to change how their migrations run.
|
|
1855
2259
|
|
|
1856
|
-
*
|
|
2260
|
+
*Adrianna Chang*
|
|
1857
2261
|
|
|
1858
|
-
|
|
1859
|
-
are regular Active Record attributes backed by a column with
|
|
1860
|
-
the same name. The system will transparently encrypt these
|
|
1861
|
-
attributes before saving them into the database and will
|
|
1862
|
-
decrypt them when retrieving their values.
|
|
2262
|
+
* Add adapter option disallowing foreign keys
|
|
1863
2263
|
|
|
2264
|
+
This adds a new option to be added to `database.yml` which enables skipping
|
|
2265
|
+
foreign key constraints usage even if the underlying database supports them.
|
|
1864
2266
|
|
|
1865
|
-
|
|
1866
|
-
|
|
1867
|
-
|
|
1868
|
-
|
|
1869
|
-
|
|
2267
|
+
Usage:
|
|
2268
|
+
```yaml
|
|
2269
|
+
development:
|
|
2270
|
+
<<: *default
|
|
2271
|
+
database: storage/development.sqlite3
|
|
2272
|
+
foreign_keys: false
|
|
1870
2273
|
```
|
|
1871
2274
|
|
|
1872
|
-
|
|
1873
|
-
guide](https://edgeguides.rubyonrails.org/active_record_encryption.html).
|
|
2275
|
+
*Paulo Barros*
|
|
1874
2276
|
|
|
1875
|
-
|
|
2277
|
+
* Add configurable deprecation warning for singular associations
|
|
1876
2278
|
|
|
1877
|
-
|
|
1878
|
-
|
|
2279
|
+
This adds a deprecation warning when using the plural name of a singular associations in `where`.
|
|
2280
|
+
It is possible to opt into the new more performant behavior with `config.active_record.allow_deprecated_singular_associations_name = false`
|
|
1879
2281
|
|
|
1880
|
-
*
|
|
2282
|
+
*Adam Hess*
|
|
1881
2283
|
|
|
1882
|
-
*
|
|
2284
|
+
* Run transactional callbacks on the freshest instance to save a given
|
|
2285
|
+
record within a transaction.
|
|
1883
2286
|
|
|
1884
|
-
|
|
1885
|
-
|
|
2287
|
+
When multiple Active Record instances change the same record within a
|
|
2288
|
+
transaction, Rails runs `after_commit` or `after_rollback` callbacks for
|
|
2289
|
+
only one of them. `config.active_record.run_commit_callbacks_on_first_saved_instances_in_transaction`
|
|
2290
|
+
was added to specify how Rails chooses which instance receives the
|
|
2291
|
+
callbacks. The framework defaults were changed to use the new logic.
|
|
1886
2292
|
|
|
1887
|
-
|
|
1888
|
-
|
|
2293
|
+
When `config.active_record.run_commit_callbacks_on_first_saved_instances_in_transaction`
|
|
2294
|
+
is `true`, transactional callbacks are run on the first instance to save,
|
|
2295
|
+
even though its instance state may be stale.
|
|
1889
2296
|
|
|
1890
|
-
|
|
1891
|
-
|
|
1892
|
-
|
|
2297
|
+
When it is `false`, which is the new framework default starting with version
|
|
2298
|
+
7.1, transactional callbacks are run on the instances with the freshest
|
|
2299
|
+
instance state. Those instances are chosen as follows:
|
|
1893
2300
|
|
|
1894
|
-
|
|
1895
|
-
|
|
1896
|
-
|
|
1897
|
-
|
|
2301
|
+
- In general, run transactional callbacks on the last instance to save a
|
|
2302
|
+
given record within the transaction.
|
|
2303
|
+
- There are two exceptions:
|
|
2304
|
+
- If the record is created within the transaction, then updated by
|
|
2305
|
+
another instance, `after_create_commit` callbacks will be run on the
|
|
2306
|
+
second instance. This is instead of the `after_update_commit`
|
|
2307
|
+
callbacks that would naively be run based on that instance’s state.
|
|
2308
|
+
- If the record is destroyed within the transaction, then
|
|
2309
|
+
`after_destroy_commit` callbacks will be fired on the last destroyed
|
|
2310
|
+
instance, even if a stale instance subsequently performed an update
|
|
2311
|
+
(which will have affected 0 rows).
|
|
1898
2312
|
|
|
1899
|
-
*
|
|
2313
|
+
*Cameron Bothner and Mitch Vollebregt*
|
|
1900
2314
|
|
|
1901
|
-
*
|
|
2315
|
+
* Enable strict strings mode for `SQLite3Adapter`.
|
|
1902
2316
|
|
|
1903
|
-
|
|
2317
|
+
Configures SQLite with a strict strings mode, which disables double-quoted string literals.
|
|
1904
2318
|
|
|
1905
|
-
|
|
1906
|
-
|
|
1907
|
-
|
|
2319
|
+
SQLite has some quirks around double-quoted string literals.
|
|
2320
|
+
It first tries to consider double-quoted strings as identifier names, but if they don't exist
|
|
2321
|
+
it then considers them as string literals. Because of this, typos can silently go unnoticed.
|
|
2322
|
+
For example, it is possible to create an index for a non existing column.
|
|
2323
|
+
See [SQLite documentation](https://www.sqlite.org/quirks.html#double_quoted_string_literals_are_accepted) for more details.
|
|
1908
2324
|
|
|
1909
|
-
|
|
1910
|
-
create_table "postgresql_infinities" do |t|
|
|
1911
|
-
t.datetime "datetime"
|
|
1912
|
-
end
|
|
2325
|
+
If you don't want this behavior, you can disable it via:
|
|
1913
2326
|
|
|
1914
|
-
|
|
1915
|
-
|
|
1916
|
-
|
|
2327
|
+
```ruby
|
|
2328
|
+
# config/application.rb
|
|
2329
|
+
config.active_record.sqlite3_adapter_strict_strings_by_default = false
|
|
1917
2330
|
```
|
|
1918
2331
|
|
|
1919
|
-
|
|
2332
|
+
Fixes #27782.
|
|
2333
|
+
|
|
2334
|
+
*fatkodima*, *Jean Boussier*
|
|
1920
2335
|
|
|
1921
|
-
|
|
2336
|
+
* Resolve issue where a relation cache_version could be left stale.
|
|
1922
2337
|
|
|
1923
|
-
|
|
2338
|
+
Previously, when `reset` was called on a relation object it did not reset the cache_versions
|
|
2339
|
+
ivar. This led to a confusing situation where despite having the correct data the relation
|
|
2340
|
+
still reported a stale cache_version.
|
|
1924
2341
|
|
|
1925
|
-
|
|
2342
|
+
Usage:
|
|
1926
2343
|
|
|
1927
2344
|
```ruby
|
|
1928
|
-
|
|
1929
|
-
|
|
1930
|
-
end
|
|
1931
|
-
```
|
|
2345
|
+
developers = Developer.all
|
|
2346
|
+
developers.cache_version
|
|
1932
2347
|
|
|
1933
|
-
|
|
2348
|
+
Developer.update_all(updated_at: Time.now.utc + 1.second)
|
|
1934
2349
|
|
|
1935
|
-
|
|
1936
|
-
|
|
1937
|
-
|
|
1938
|
-
# => #<Book id: 1, status: "proposed", ...> (for mysql2 adapter)
|
|
1939
|
-
# => ActiveRecord::StatementInvalid: PG::InvalidTextRepresentation: ERROR: invalid input syntax for type integer: "prohibited" (for postgresql adapter)
|
|
1940
|
-
# => nil (for sqlite3 adapter)
|
|
2350
|
+
developers.cache_version # Stale cache_version
|
|
2351
|
+
developers.reset
|
|
2352
|
+
developers.cache_version # Returns the current correct cache_version
|
|
1941
2353
|
```
|
|
1942
2354
|
|
|
1943
|
-
|
|
2355
|
+
Fixes #45341.
|
|
2356
|
+
|
|
2357
|
+
*Austen Madden*
|
|
2358
|
+
|
|
2359
|
+
* Add support for exclusion constraints (PostgreSQL-only).
|
|
1944
2360
|
|
|
1945
2361
|
```ruby
|
|
1946
|
-
|
|
1947
|
-
|
|
1948
|
-
# => nil (for all adapters)
|
|
2362
|
+
add_exclusion_constraint :invoices, "daterange(start_date, end_date) WITH &&", using: :gist, name: "invoices_date_overlap"
|
|
2363
|
+
remove_exclusion_constraint :invoices, name: "invoices_date_overlap"
|
|
1949
2364
|
```
|
|
1950
2365
|
|
|
1951
|
-
|
|
2366
|
+
See PostgreSQL's [`CREATE TABLE ... EXCLUDE ...`](https://www.postgresql.org/docs/12/sql-createtable.html#SQL-CREATETABLE-EXCLUDE) documentation for more on exclusion constraints.
|
|
1952
2367
|
|
|
1953
|
-
*
|
|
2368
|
+
*Alex Robbin*
|
|
1954
2369
|
|
|
1955
|
-
|
|
2370
|
+
* `change_column_null` raises if a non-boolean argument is provided
|
|
1956
2371
|
|
|
1957
|
-
|
|
1958
|
-
|
|
1959
|
-
|
|
1960
|
-
name: George the Monkey
|
|
1961
|
-
fruits: apple
|
|
2372
|
+
Previously if you provided a non-boolean argument, `change_column_null` would
|
|
2373
|
+
treat it as truthy and make your column nullable. This could be surprising, so now
|
|
2374
|
+
the input must be either `true` or `false`.
|
|
1962
2375
|
|
|
1963
|
-
|
|
1964
|
-
|
|
1965
|
-
|
|
2376
|
+
```ruby
|
|
2377
|
+
change_column_null :table, :column, true # good
|
|
2378
|
+
change_column_null :table, :column, false # good
|
|
2379
|
+
change_column_null :table, :column, from: true, to: false # raises (previously this made the column nullable)
|
|
1966
2380
|
```
|
|
1967
2381
|
|
|
1968
|
-
If the join table (`fruit_monkeys`) contains `created_at` or `updated_at` columns,
|
|
1969
|
-
these will now be populated when loading the fixture. Previously, fixture loading
|
|
1970
|
-
would crash if these columns were required, and leave them as null otherwise.
|
|
1971
|
-
|
|
1972
2382
|
*Alex Ghiculescu*
|
|
1973
2383
|
|
|
1974
|
-
*
|
|
2384
|
+
* Enforce limit on table names length.
|
|
1975
2385
|
|
|
1976
|
-
|
|
1977
|
-
a single global thread pool for all queries. By default, Rails will set `async_query_executor`
|
|
1978
|
-
to `nil` which will not initialize any executor. If `load_async` is called and no executor
|
|
1979
|
-
has been configured, the query will be executed in the foreground.
|
|
2386
|
+
Fixes #45130.
|
|
1980
2387
|
|
|
1981
|
-
|
|
1982
|
-
`config.active_record.async_query_executor` to `:global_thread_pool` and optionally define
|
|
1983
|
-
`config.active_record.global_executor_concurrency`. This defaults to 4. For applications that want
|
|
1984
|
-
to have a thread pool for each database connection, `config.active_record.async_query_executor` can
|
|
1985
|
-
be set to `:multi_thread_pool`. The configuration for each thread pool is set in the database
|
|
1986
|
-
configuration.
|
|
2388
|
+
*fatkodima*
|
|
1987
2389
|
|
|
1988
|
-
|
|
2390
|
+
* Adjust the minimum MariaDB version for check constraints support.
|
|
1989
2391
|
|
|
1990
|
-
*
|
|
2392
|
+
*Eddie Lebow*
|
|
1991
2393
|
|
|
1992
|
-
|
|
2394
|
+
* Fix Hstore deserialize regression.
|
|
1993
2395
|
|
|
1994
|
-
|
|
1995
|
-
class Book < ActiveRecord::Base
|
|
1996
|
-
enum status: [ :proposed, :written ], _prefix: true, _scopes: false
|
|
1997
|
-
enum cover: [ :hard, :soft ], _suffix: true, _default: :hard
|
|
1998
|
-
end
|
|
1999
|
-
```
|
|
2396
|
+
*edsharp*
|
|
2000
2397
|
|
|
2001
|
-
|
|
2398
|
+
* Add validity for PostgreSQL indexes.
|
|
2002
2399
|
|
|
2003
2400
|
```ruby
|
|
2004
|
-
|
|
2005
|
-
|
|
2006
|
-
enum :cover, [ :hard, :soft ], suffix: true, default: :hard
|
|
2007
|
-
end
|
|
2401
|
+
connection.index_exists?(:users, :email, valid: true)
|
|
2402
|
+
connection.indexes(:users).select(&:valid?)
|
|
2008
2403
|
```
|
|
2009
2404
|
|
|
2010
|
-
*
|
|
2405
|
+
*fatkodima*
|
|
2011
2406
|
|
|
2012
|
-
*
|
|
2407
|
+
* Fix eager loading for models without primary keys.
|
|
2013
2408
|
|
|
2014
|
-
|
|
2409
|
+
*Anmol Chopra*, *Matt Lawrence*, and *Jonathan Hefner*
|
|
2015
2410
|
|
|
2016
|
-
|
|
2017
|
-
the query, it will be performed in the foreground.
|
|
2411
|
+
* Avoid validating a unique field if it has not changed and is backed by a unique index.
|
|
2018
2412
|
|
|
2019
|
-
|
|
2020
|
-
|
|
2413
|
+
Previously, when saving a record, Active Record will perform an extra query to check for the
|
|
2414
|
+
uniqueness of each attribute having a `uniqueness` validation, even if that attribute hasn't changed.
|
|
2415
|
+
If the database has the corresponding unique index, then this validation can never fail for persisted
|
|
2416
|
+
records, and we could safely skip it.
|
|
2021
2417
|
|
|
2022
|
-
|
|
2023
|
-
def index
|
|
2024
|
-
@categories = Category.some_complex_scope.load_async
|
|
2025
|
-
@posts = Post.some_complex_scope.load_async
|
|
2026
|
-
end
|
|
2027
|
-
```
|
|
2418
|
+
*fatkodima*
|
|
2028
2419
|
|
|
2029
|
-
|
|
2030
|
-
the main thread had to wait to access the result. This timing is useful to know
|
|
2031
|
-
whether or not it's worth to load the query asynchronously.
|
|
2420
|
+
* Stop setting `sql_auto_is_null`
|
|
2032
2421
|
|
|
2033
|
-
|
|
2034
|
-
DEBUG -- : Category Load (62.1ms) SELECT * FROM `categories` LIMIT 50
|
|
2035
|
-
DEBUG -- : ASYNC Post Load (64ms) (db time 126.1ms) SELECT * FROM `posts` LIMIT 100
|
|
2036
|
-
```
|
|
2422
|
+
Since version 5.5 the default has been off, we no longer have to manually turn it off.
|
|
2037
2423
|
|
|
2038
|
-
|
|
2039
|
-
waiting for the results, and the second set of parens with "db time" is how long
|
|
2040
|
-
the entire query took to execute.
|
|
2424
|
+
*Adam Hess*
|
|
2041
2425
|
|
|
2042
|
-
|
|
2426
|
+
* Fix `touch` to raise an error for readonly columns.
|
|
2043
2427
|
|
|
2044
|
-
*
|
|
2428
|
+
*fatkodima*
|
|
2045
2429
|
|
|
2046
|
-
|
|
2047
|
-
the resulting relation:
|
|
2430
|
+
* Add ability to ignore tables by regexp for SQL schema dumps.
|
|
2048
2431
|
|
|
2049
2432
|
```ruby
|
|
2050
|
-
|
|
2051
|
-
Post.excluding(post_one, post_two)
|
|
2433
|
+
ActiveRecord::SchemaDumper.ignore_tables = [/^_/]
|
|
2052
2434
|
```
|
|
2053
2435
|
|
|
2054
|
-
|
|
2055
|
-
|
|
2056
|
-
```ruby
|
|
2057
|
-
post.comments.excluding(comment)
|
|
2058
|
-
post.comments.excluding(comment_one, comment_two)
|
|
2059
|
-
```
|
|
2436
|
+
*fatkodima*
|
|
2060
2437
|
|
|
2061
|
-
|
|
2062
|
-
and `Post.where.not(id: [post_one.id, post_two.id])` (for a collection).
|
|
2438
|
+
* Avoid queries when performing calculations on contradictory relations.
|
|
2063
2439
|
|
|
2064
|
-
|
|
2440
|
+
Previously calculations would make a query even when passed a
|
|
2441
|
+
contradiction, such as `User.where(id: []).count`. We no longer perform a
|
|
2442
|
+
query in that scenario.
|
|
2065
2443
|
|
|
2066
|
-
|
|
2067
|
-
|
|
2444
|
+
This applies to the following calculations: `count`, `sum`, `average`,
|
|
2445
|
+
`minimum` and `maximum`
|
|
2068
2446
|
|
|
2069
|
-
|
|
2070
|
-
references an aliased select value would generate an error when
|
|
2071
|
-
#include? was called, due to an optimisation that would generate
|
|
2072
|
-
call #exists? on the relation instead, which effectively alters
|
|
2073
|
-
the select values of the query (and thus removes the aliased select
|
|
2074
|
-
values), but leaves the having clause intact. Because the having
|
|
2075
|
-
clause is then referencing an aliased column that is no longer
|
|
2076
|
-
present in the simplified query, an ActiveRecord::InvalidStatement
|
|
2077
|
-
error was raised.
|
|
2447
|
+
*Luan Vieira, John Hawthorn and Daniel Colson*
|
|
2078
2448
|
|
|
2079
|
-
|
|
2449
|
+
* Allow using aliased attributes with `insert_all`/`upsert_all`.
|
|
2080
2450
|
|
|
2081
2451
|
```ruby
|
|
2082
|
-
|
|
2083
|
-
|
|
2084
|
-
|
|
2085
|
-
|
|
2086
|
-
|
|
2452
|
+
class Book < ApplicationRecord
|
|
2453
|
+
alias_attribute :title, :name
|
|
2454
|
+
end
|
|
2455
|
+
|
|
2456
|
+
Book.insert_all [{ title: "Remote", author_id: 1 }], returning: :title
|
|
2087
2457
|
```
|
|
2088
2458
|
|
|
2089
|
-
|
|
2090
|
-
simplified #exists? query, which simply checks for the presence of
|
|
2091
|
-
a having clause.
|
|
2459
|
+
*fatkodima*
|
|
2092
2460
|
|
|
2093
|
-
|
|
2461
|
+
* Support encrypted attributes on columns with default db values.
|
|
2094
2462
|
|
|
2095
|
-
|
|
2463
|
+
This adds support for encrypted attributes defined on columns with default values.
|
|
2464
|
+
It will encrypt those values at creation time. Before, it would raise an
|
|
2465
|
+
error unless `config.active_record.encryption.support_unencrypted_data` was true.
|
|
2096
2466
|
|
|
2097
|
-
*
|
|
2098
|
-
without Rails knowledge (e.g., if app gets killed during long-running query or due to Rack::Timeout), app won't end
|
|
2099
|
-
up in perpetual crash state for being inconsistent with PostgreSQL.
|
|
2467
|
+
*Jorge Manrubia* and *Dima Fatko*
|
|
2100
2468
|
|
|
2101
|
-
|
|
2469
|
+
* Allow overriding `reading_request?` in `DatabaseSelector::Resolver`
|
|
2102
2470
|
|
|
2103
|
-
|
|
2471
|
+
The default implementation checks if a request is a `get?` or `head?`,
|
|
2472
|
+
but you can now change it to anything you like. If the method returns true,
|
|
2473
|
+
`Resolver#read` gets called meaning the request could be served by the
|
|
2474
|
+
replica database.
|
|
2104
2475
|
|
|
2105
|
-
|
|
2106
|
-
worked on certain types of queries. This change allows the `scoping` method to apply
|
|
2107
|
-
to all queries for a model in a block.
|
|
2476
|
+
*Alex Ghiculescu*
|
|
2108
2477
|
|
|
2109
|
-
|
|
2110
|
-
Post.where(blog_id: post.blog_id).scoping(all_queries: true) do
|
|
2111
|
-
post.update(title: "a post title") # adds `posts.blog_id = 1` to the query
|
|
2112
|
-
end
|
|
2113
|
-
```
|
|
2478
|
+
* Remove `ActiveRecord.legacy_connection_handling`.
|
|
2114
2479
|
|
|
2115
2480
|
*Eileen M. Uchitelle*
|
|
2116
2481
|
|
|
2117
|
-
* `
|
|
2118
|
-
(aliased as `ActiveRecord::Calculations.average`) will now use column-based
|
|
2119
|
-
type casting. This means that floating-point number columns will now be
|
|
2120
|
-
aggregated as `Float` and decimal columns will be aggregated as `BigDecimal`.
|
|
2482
|
+
* `rails db:schema:{dump,load}` now checks `ENV["SCHEMA_FORMAT"]` before config
|
|
2121
2483
|
|
|
2122
|
-
|
|
2123
|
-
|
|
2484
|
+
Since `rails db:structure:{dump,load}` was deprecated there wasn't a simple
|
|
2485
|
+
way to dump a schema to both SQL and Ruby formats. You can now do this with
|
|
2486
|
+
an environment variable. For example:
|
|
2124
2487
|
|
|
2125
|
-
```
|
|
2126
|
-
|
|
2127
|
-
|
|
2128
|
-
t.float "temperature"
|
|
2129
|
-
end
|
|
2488
|
+
```
|
|
2489
|
+
SCHEMA_FORMAT=sql rake db:schema:dump
|
|
2490
|
+
```
|
|
2130
2491
|
|
|
2131
|
-
|
|
2132
|
-
Measurement.average(:temperature).class
|
|
2133
|
-
# => BigDecimal
|
|
2492
|
+
*Alex Ghiculescu*
|
|
2134
2493
|
|
|
2135
|
-
|
|
2136
|
-
|
|
2137
|
-
|
|
2138
|
-
|
|
2494
|
+
* Fixed MariaDB default function support.
|
|
2495
|
+
|
|
2496
|
+
Defaults would be written wrong in "db/schema.rb" and not work correctly
|
|
2497
|
+
if using `db:schema:load`. Further more the function name would be
|
|
2498
|
+
added as string content when saving new records.
|
|
2139
2499
|
|
|
2140
|
-
|
|
2141
|
-
database adapter. This is not the case anymore. If you relied on that kind
|
|
2142
|
-
of magic, you now need to register your own `ActiveRecord::Type`
|
|
2143
|
-
(see `ActiveRecord::Attributes::ClassMethods` for documentation).
|
|
2500
|
+
*kaspernj*
|
|
2144
2501
|
|
|
2145
|
-
|
|
2502
|
+
* Add `active_record.destroy_association_async_batch_size` configuration
|
|
2146
2503
|
|
|
2147
|
-
|
|
2504
|
+
This allows applications to specify the maximum number of records that will
|
|
2505
|
+
be destroyed in a single background job by the `dependent: :destroy_async`
|
|
2506
|
+
association option. By default, the current behavior will remain the same:
|
|
2507
|
+
when a parent record is destroyed, all dependent records will be destroyed
|
|
2508
|
+
in a single background job. If the number of dependent records is greater
|
|
2509
|
+
than this configuration, the records will be destroyed in multiple
|
|
2510
|
+
background jobs.
|
|
2148
2511
|
|
|
2149
|
-
|
|
2150
|
-
a migration or schema. It takes a symbol which must correspond to one of the configured
|
|
2151
|
-
`NATIVE_DATABASE_TYPES`. The default is `:timestamp`, meaning `t.datetime` in a migration
|
|
2152
|
-
will create a "timestamp without time zone" column. To use "timestamp with time zone",
|
|
2153
|
-
change this to `:timestamptz` in an initializer.
|
|
2512
|
+
*Nick Holden*
|
|
2154
2513
|
|
|
2155
|
-
|
|
2514
|
+
* Fix `remove_foreign_key` with `:if_exists` option when foreign key actually exists.
|
|
2156
2515
|
|
|
2157
|
-
*
|
|
2516
|
+
*fatkodima*
|
|
2517
|
+
|
|
2518
|
+
* Remove `--no-comments` flag in structure dumps for PostgreSQL
|
|
2158
2519
|
|
|
2159
|
-
|
|
2520
|
+
This broke some apps that used custom schema comments. If you don't want
|
|
2521
|
+
comments in your structure dump, you can use:
|
|
2160
2522
|
|
|
2161
|
-
|
|
2162
|
-
|
|
2523
|
+
```ruby
|
|
2524
|
+
ActiveRecord::Tasks::DatabaseTasks.structure_dump_flags = ['--no-comments']
|
|
2525
|
+
```
|
|
2163
2526
|
|
|
2164
2527
|
*Alex Ghiculescu*
|
|
2165
2528
|
|
|
2166
|
-
*
|
|
2167
|
-
`ActiveRecord::Sanitization.disallow_raw_sql!`.
|
|
2529
|
+
* Reduce the memory footprint of fixtures accessors.
|
|
2168
2530
|
|
|
2169
|
-
|
|
2531
|
+
Until now fixtures accessors were eagerly defined using `define_method`.
|
|
2532
|
+
So the memory usage was directly dependent of the number of fixtures and
|
|
2533
|
+
test suites.
|
|
2170
2534
|
|
|
2171
|
-
|
|
2535
|
+
Instead fixtures accessors are now implemented with `method_missing`,
|
|
2536
|
+
so they incur much less memory and CPU overhead.
|
|
2172
2537
|
|
|
2173
|
-
|
|
2174
|
-
named `ApplicationRecord` can now set a specific class to be the `primary_abstract_class`.
|
|
2538
|
+
*Jean Boussier*
|
|
2175
2539
|
|
|
2176
|
-
|
|
2177
|
-
class PrimaryApplicationRecord
|
|
2178
|
-
self.primary_abstract_class
|
|
2179
|
-
end
|
|
2180
|
-
```
|
|
2540
|
+
* Fix `config.active_record.destroy_association_async_job` configuration
|
|
2181
2541
|
|
|
2182
|
-
|
|
2183
|
-
|
|
2184
|
-
|
|
2185
|
-
|
|
2186
|
-
|
|
2542
|
+
`config.active_record.destroy_association_async_job` should allow
|
|
2543
|
+
applications to specify the job that will be used to destroy associated
|
|
2544
|
+
records in the background for `has_many` associations with the
|
|
2545
|
+
`dependent: :destroy_async` option. Previously, that was ignored, which
|
|
2546
|
+
meant the default `ActiveRecord::DestroyAssociationAsyncJob` always
|
|
2547
|
+
destroyed records in the background.
|
|
2187
2548
|
|
|
2188
|
-
*
|
|
2549
|
+
*Nick Holden*
|
|
2189
2550
|
|
|
2190
|
-
*
|
|
2191
|
-
Now that Active Record supports multiple databases configuration,
|
|
2192
|
-
we need a way to pass specific flags for dump/load databases since
|
|
2193
|
-
the options are not the same for different adapters.
|
|
2194
|
-
We can use in the original way:
|
|
2551
|
+
* Fix `change_column_comment` to preserve column's AUTO_INCREMENT in the MySQL adapter
|
|
2195
2552
|
|
|
2196
|
-
|
|
2197
|
-
ActiveRecord::Tasks::DatabaseTasks.structure_dump_flags = ['--no-defaults', '--skip-add-drop-table']
|
|
2198
|
-
# or
|
|
2199
|
-
ActiveRecord::Tasks::DatabaseTasks.structure_dump_flags = '--no-defaults --skip-add-drop-table'
|
|
2200
|
-
```
|
|
2553
|
+
*fatkodima*
|
|
2201
2554
|
|
|
2202
|
-
|
|
2203
|
-
is the adapter
|
|
2555
|
+
* Fix quoting of `ActiveSupport::Duration` and `Rational` numbers in the MySQL adapter.
|
|
2204
2556
|
|
|
2205
|
-
|
|
2206
|
-
ActiveRecord::Tasks::DatabaseTasks.structure_dump_flags = {
|
|
2207
|
-
mysql2: ['--no-defaults', '--skip-add-drop-table'],
|
|
2208
|
-
postgres: '--no-tablespaces'
|
|
2209
|
-
}
|
|
2210
|
-
```
|
|
2557
|
+
*Kevin McPhillips*
|
|
2211
2558
|
|
|
2212
|
-
|
|
2559
|
+
* Allow column name with COLLATE (e.g., title COLLATE "C") as safe SQL string
|
|
2213
2560
|
|
|
2214
|
-
*
|
|
2215
|
-
adapter if the "url" protocol is "jdbc", "http", or "https". Previously only
|
|
2216
|
-
urls with the "jdbc" prefix were passed to the Active Record Adapter, others
|
|
2217
|
-
are assumed to be adapter specification urls.
|
|
2561
|
+
*Shugo Maeda*
|
|
2218
2562
|
|
|
2219
|
-
|
|
2563
|
+
* Permit underscores in the VERSION argument to database rake tasks.
|
|
2220
2564
|
|
|
2221
|
-
*
|
|
2565
|
+
*Eddie Lebow*
|
|
2222
2566
|
|
|
2223
|
-
*
|
|
2567
|
+
* Reversed the order of `INSERT` statements in `structure.sql` dumps
|
|
2224
2568
|
|
|
2225
|
-
This
|
|
2226
|
-
|
|
2569
|
+
This should decrease the likelihood of merge conflicts. New migrations
|
|
2570
|
+
will now be added at the top of the list.
|
|
2227
2571
|
|
|
2228
|
-
|
|
2229
|
-
|
|
2230
|
-
has_many :bookmarks
|
|
2231
|
-
has_many :articles, strict_loading: true
|
|
2232
|
-
end
|
|
2572
|
+
For existing apps, there will be a large diff the next time `structure.sql`
|
|
2573
|
+
is generated.
|
|
2233
2574
|
|
|
2234
|
-
|
|
2235
|
-
user.articles # => ActiveRecord::StrictLoadingViolationError
|
|
2236
|
-
user.bookmarks # => #<ActiveRecord::Associations::CollectionProxy>
|
|
2575
|
+
*Alex Ghiculescu*, *Matt Larraz*
|
|
2237
2576
|
|
|
2238
|
-
|
|
2239
|
-
user.bookmarks # => ActiveRecord::StrictLoadingViolationError
|
|
2577
|
+
* Fix PG.connect keyword arguments deprecation warning on ruby 2.7
|
|
2240
2578
|
|
|
2241
|
-
|
|
2242
|
-
user.bookmarks # => #<ActiveRecord::Associations::CollectionProxy>
|
|
2243
|
-
user.articles.strict_loading!(false) # => #<ActiveRecord::Associations::CollectionProxy>
|
|
2244
|
-
```
|
|
2579
|
+
Fixes #44307.
|
|
2245
2580
|
|
|
2246
|
-
*
|
|
2581
|
+
*Nikita Vasilevsky*
|
|
2247
2582
|
|
|
2248
|
-
*
|
|
2249
|
-
presence of exactly one record.
|
|
2583
|
+
* Fix dropping DB connections after serialization failures and deadlocks.
|
|
2250
2584
|
|
|
2251
|
-
|
|
2252
|
-
|
|
2253
|
-
|
|
2585
|
+
Prior to 6.1.4, serialization failures and deadlocks caused rollbacks to be
|
|
2586
|
+
issued for both real transactions and savepoints. This breaks MySQL which
|
|
2587
|
+
disallows rollbacks of savepoints following a deadlock.
|
|
2254
2588
|
|
|
2255
|
-
|
|
2256
|
-
|
|
2257
|
-
# => ActiveRecord::RecordNotFound (if no Product with given price)
|
|
2258
|
-
# => #<Product ...> (if one Product with given price)
|
|
2259
|
-
# => ActiveRecord::SoleRecordExceeded (if more than one Product with given price)
|
|
2589
|
+
6.1.4 removed these rollbacks, for both transactions and savepoints, causing
|
|
2590
|
+
the DB connection to be left in an unknown state and thus discarded.
|
|
2260
2591
|
|
|
2261
|
-
|
|
2262
|
-
# as above
|
|
2263
|
-
```
|
|
2592
|
+
These rollbacks are now restored, except for savepoints on MySQL.
|
|
2264
2593
|
|
|
2265
|
-
*
|
|
2594
|
+
*Thomas Morgan*
|
|
2266
2595
|
|
|
2267
|
-
*
|
|
2596
|
+
* Make `ActiveRecord::ConnectionPool` Fiber-safe
|
|
2268
2597
|
|
|
2269
|
-
|
|
2598
|
+
When `ActiveSupport::IsolatedExecutionState.isolation_level` is set to `:fiber`,
|
|
2599
|
+
the connection pool now supports multiple Fibers from the same Thread checking
|
|
2600
|
+
out connections from the pool.
|
|
2601
|
+
|
|
2602
|
+
*Alex Matchneer*
|
|
2603
|
+
|
|
2604
|
+
* Add `update_attribute!` to `ActiveRecord::Persistence`
|
|
2605
|
+
|
|
2606
|
+
Similar to `update_attribute`, but raises `ActiveRecord::RecordNotSaved` when a `before_*` callback throws `:abort`.
|
|
2270
2607
|
|
|
2271
2608
|
```ruby
|
|
2272
|
-
class
|
|
2273
|
-
|
|
2274
|
-
|
|
2609
|
+
class Topic < ActiveRecord::Base
|
|
2610
|
+
before_save :check_title
|
|
2611
|
+
|
|
2612
|
+
def check_title
|
|
2613
|
+
throw(:abort) if title == "abort"
|
|
2275
2614
|
end
|
|
2276
2615
|
end
|
|
2277
2616
|
|
|
2278
|
-
|
|
2279
|
-
|
|
2280
|
-
|
|
2281
|
-
|
|
2282
|
-
|
|
2617
|
+
topic = Topic.create(title: "Test Title")
|
|
2618
|
+
# #=> #<Topic title: "Test Title">
|
|
2619
|
+
topic.update_attribute!(:title, "Another Title")
|
|
2620
|
+
# #=> #<Topic title: "Another Title">
|
|
2621
|
+
topic.update_attribute!(:title, "abort")
|
|
2622
|
+
# raises ActiveRecord::RecordNotSaved
|
|
2283
2623
|
```
|
|
2284
2624
|
|
|
2285
|
-
|
|
2625
|
+
*Drew Tempelmeyer*
|
|
2286
2626
|
|
|
2287
|
-
|
|
2627
|
+
* Avoid loading every record in `ActiveRecord::Relation#pretty_print`
|
|
2288
2628
|
|
|
2289
|
-
|
|
2629
|
+
```ruby
|
|
2630
|
+
# Before
|
|
2631
|
+
pp Foo.all # Loads the whole table.
|
|
2632
|
+
|
|
2633
|
+
# After
|
|
2634
|
+
pp Foo.all # Shows 10 items and an ellipsis.
|
|
2635
|
+
```
|
|
2290
2636
|
|
|
2291
|
-
*
|
|
2637
|
+
*Ulysse Buonomo*
|
|
2292
2638
|
|
|
2293
|
-
|
|
2294
|
-
`singular_id` defined by it does not work when the foreign_key does
|
|
2295
|
-
not end with `id`. This change fixes it by taking into account
|
|
2296
|
-
`primary_key` and `foreign_key` in the options.
|
|
2639
|
+
* Change `QueryMethods#in_order_of` to drop records not listed in values.
|
|
2297
2640
|
|
|
2298
|
-
|
|
2641
|
+
`in_order_of` now filters down to the values provided, to match the behavior of the `Enumerable` version.
|
|
2299
2642
|
|
|
2300
|
-
*
|
|
2643
|
+
*Kevin Newton*
|
|
2301
2644
|
|
|
2302
|
-
|
|
2303
|
-
class User
|
|
2304
|
-
scope :active, -> { where(accepted: true, locked: false) }
|
|
2305
|
-
end
|
|
2645
|
+
* Allow named expression indexes to be revertible.
|
|
2306
2646
|
|
|
2307
|
-
|
|
2308
|
-
# ... WHERE `accepted` = 1 AND `locked` = 0
|
|
2647
|
+
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.
|
|
2309
2648
|
|
|
2310
|
-
|
|
2311
|
-
|
|
2649
|
+
```ruby
|
|
2650
|
+
add_index(:settings, "(data->'property')", using: :gin, name: :index_settings_data_property)
|
|
2312
2651
|
```
|
|
2313
2652
|
|
|
2314
|
-
|
|
2653
|
+
Fixes #43331.
|
|
2654
|
+
|
|
2655
|
+
*Oliver Günther*
|
|
2315
2656
|
|
|
2316
|
-
*
|
|
2657
|
+
* Fix incorrect argument in PostgreSQL structure dump tasks.
|
|
2317
2658
|
|
|
2318
|
-
|
|
2319
|
-
to throw an error saying :polymorphic would not be a valid option.
|
|
2659
|
+
Updating the `--no-comment` argument added in Rails 7 to the correct `--no-comments` argument.
|
|
2320
2660
|
|
|
2321
|
-
*
|
|
2661
|
+
*Alex Dent*
|
|
2322
2662
|
|
|
2323
|
-
*
|
|
2663
|
+
* Fix migration compatibility to create SQLite references/belongs_to column as integer when migration version is 6.0.
|
|
2324
2664
|
|
|
2325
|
-
|
|
2665
|
+
Reference/belongs_to in migrations with version 6.0 were creating columns as
|
|
2666
|
+
bigint instead of integer for the SQLite Adapter.
|
|
2326
2667
|
|
|
2327
|
-
*
|
|
2668
|
+
*Marcelo Lauxen*
|
|
2328
2669
|
|
|
2329
|
-
|
|
2330
|
-
and the index name should be specified explicitly. Now, the index name is inferred
|
|
2331
|
-
automatically.
|
|
2670
|
+
* Fix `QueryMethods#in_order_of` to handle empty order list.
|
|
2332
2671
|
|
|
2333
2672
|
```ruby
|
|
2334
|
-
|
|
2673
|
+
Post.in_order_of(:id, []).to_a
|
|
2335
2674
|
```
|
|
2336
2675
|
|
|
2337
|
-
|
|
2338
|
-
|
|
2339
|
-
*fatkodima*
|
|
2340
|
-
|
|
2341
|
-
* Only warn about negative enums if a positive form that would cause conflicts exists.
|
|
2342
|
-
|
|
2343
|
-
Fixes #39065.
|
|
2344
|
-
|
|
2345
|
-
*Alex Ghiculescu*
|
|
2676
|
+
Also more explicitly set the column as secondary order, so that any other
|
|
2677
|
+
value is still ordered.
|
|
2346
2678
|
|
|
2347
|
-
*
|
|
2679
|
+
*Jean Boussier*
|
|
2348
2680
|
|
|
2349
|
-
|
|
2681
|
+
* Fix quoting of column aliases generated by calculation methods.
|
|
2350
2682
|
|
|
2351
|
-
|
|
2683
|
+
Since the alias is derived from the table name, we can't assume the result
|
|
2684
|
+
is a valid identifier.
|
|
2352
2685
|
|
|
2353
2686
|
```ruby
|
|
2354
|
-
class
|
|
2355
|
-
|
|
2687
|
+
class Test < ActiveRecord::Base
|
|
2688
|
+
self.table_name = '1abc'
|
|
2356
2689
|
end
|
|
2690
|
+
Test.group(:id).count
|
|
2691
|
+
# syntax error at or near "1" (ActiveRecord::StatementInvalid)
|
|
2692
|
+
# LINE 1: SELECT COUNT(*) AS count_all, "1abc"."id" AS 1abc_id FROM "1...
|
|
2357
2693
|
```
|
|
2358
2694
|
|
|
2359
|
-
*
|
|
2695
|
+
*Jean Boussier*
|
|
2360
2696
|
|
|
2361
|
-
* Add `
|
|
2697
|
+
* Add `authenticate_by` when using `has_secure_password`.
|
|
2362
2698
|
|
|
2363
|
-
|
|
2364
|
-
|
|
2365
|
-
account.users.joins(:contact).where.not(contact_id: nil)
|
|
2699
|
+
`authenticate_by` is intended to replace code like the following, which
|
|
2700
|
+
returns early when a user with a matching email is not found:
|
|
2366
2701
|
|
|
2367
|
-
|
|
2368
|
-
|
|
2702
|
+
```ruby
|
|
2703
|
+
User.find_by(email: "...")&.authenticate("...")
|
|
2369
2704
|
```
|
|
2370
2705
|
|
|
2371
|
-
|
|
2706
|
+
Such code is vulnerable to timing-based enumeration attacks, wherein an
|
|
2707
|
+
attacker can determine if a user account with a given email exists. After
|
|
2708
|
+
confirming that an account exists, the attacker can try passwords associated
|
|
2709
|
+
with that email address from other leaked databases, in case the user
|
|
2710
|
+
re-used a password across multiple sites (a common practice). Additionally,
|
|
2711
|
+
knowing an account email address allows the attacker to attempt a targeted
|
|
2712
|
+
phishing ("spear phishing") attack.
|
|
2372
2713
|
|
|
2373
|
-
|
|
2714
|
+
`authenticate_by` addresses the vulnerability by taking the same amount of
|
|
2715
|
+
time regardless of whether a user with a matching email is found:
|
|
2374
2716
|
|
|
2375
|
-
|
|
2376
|
-
|
|
2717
|
+
```ruby
|
|
2718
|
+
User.authenticate_by(email: "...", password: "...")
|
|
2719
|
+
```
|
|
2377
2720
|
|
|
2378
|
-
*
|
|
2721
|
+
*Jonathan Hefner*
|
|
2379
2722
|
|
|
2380
2723
|
|
|
2381
|
-
Please check [
|
|
2724
|
+
Please check [7-0-stable](https://github.com/rails/rails/blob/7-0-stable/activerecord/CHANGELOG.md) for previous changes.
|