activerecord 6.1.7 → 7.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +1610 -1001
- data/README.rdoc +3 -3
- data/lib/active_record/aggregations.rb +1 -1
- data/lib/active_record/association_relation.rb +0 -10
- data/lib/active_record/associations/association.rb +33 -17
- data/lib/active_record/associations/association_scope.rb +1 -3
- data/lib/active_record/associations/belongs_to_association.rb +15 -4
- data/lib/active_record/associations/belongs_to_polymorphic_association.rb +10 -2
- data/lib/active_record/associations/builder/association.rb +8 -2
- data/lib/active_record/associations/builder/belongs_to.rb +19 -6
- data/lib/active_record/associations/builder/collection_association.rb +10 -3
- data/lib/active_record/associations/builder/has_many.rb +3 -2
- data/lib/active_record/associations/builder/has_one.rb +2 -1
- data/lib/active_record/associations/builder/singular_association.rb +2 -2
- data/lib/active_record/associations/collection_association.rb +20 -22
- data/lib/active_record/associations/collection_proxy.rb +15 -5
- data/lib/active_record/associations/disable_joins_association_scope.rb +59 -0
- data/lib/active_record/associations/has_many_association.rb +8 -5
- data/lib/active_record/associations/has_many_through_association.rb +2 -1
- data/lib/active_record/associations/has_one_association.rb +10 -7
- data/lib/active_record/associations/has_one_through_association.rb +1 -1
- data/lib/active_record/associations/join_dependency.rb +23 -15
- data/lib/active_record/associations/preloader/association.rb +186 -52
- data/lib/active_record/associations/preloader/batch.rb +48 -0
- data/lib/active_record/associations/preloader/branch.rb +147 -0
- data/lib/active_record/associations/preloader/through_association.rb +50 -14
- data/lib/active_record/associations/preloader.rb +39 -113
- data/lib/active_record/associations/singular_association.rb +8 -2
- data/lib/active_record/associations/through_association.rb +3 -3
- data/lib/active_record/associations.rb +138 -100
- data/lib/active_record/asynchronous_queries_tracker.rb +60 -0
- data/lib/active_record/attribute_assignment.rb +1 -1
- data/lib/active_record/attribute_methods/before_type_cast.rb +7 -2
- data/lib/active_record/attribute_methods/dirty.rb +49 -16
- data/lib/active_record/attribute_methods/primary_key.rb +2 -2
- data/lib/active_record/attribute_methods/query.rb +2 -2
- data/lib/active_record/attribute_methods/read.rb +8 -6
- data/lib/active_record/attribute_methods/serialization.rb +57 -19
- data/lib/active_record/attribute_methods/time_zone_conversion.rb +4 -3
- data/lib/active_record/attribute_methods/write.rb +7 -10
- data/lib/active_record/attribute_methods.rb +19 -22
- data/lib/active_record/attributes.rb +24 -35
- data/lib/active_record/autosave_association.rb +8 -23
- data/lib/active_record/base.rb +19 -1
- data/lib/active_record/callbacks.rb +14 -16
- data/lib/active_record/coders/yaml_column.rb +4 -8
- data/lib/active_record/connection_adapters/abstract/connection_handler.rb +292 -0
- data/lib/active_record/connection_adapters/abstract/connection_pool/queue.rb +209 -0
- data/lib/active_record/connection_adapters/abstract/connection_pool/reaper.rb +76 -0
- data/lib/active_record/connection_adapters/abstract/connection_pool.rb +47 -561
- data/lib/active_record/connection_adapters/abstract/database_limits.rb +0 -17
- data/lib/active_record/connection_adapters/abstract/database_statements.rb +46 -22
- data/lib/active_record/connection_adapters/abstract/query_cache.rb +24 -12
- data/lib/active_record/connection_adapters/abstract/quoting.rb +52 -73
- data/lib/active_record/connection_adapters/abstract/schema_creation.rb +4 -17
- data/lib/active_record/connection_adapters/abstract/schema_definitions.rb +52 -23
- data/lib/active_record/connection_adapters/abstract/schema_dumper.rb +14 -1
- data/lib/active_record/connection_adapters/abstract/schema_statements.rb +82 -25
- data/lib/active_record/connection_adapters/abstract/transaction.rb +15 -22
- data/lib/active_record/connection_adapters/abstract_adapter.rb +144 -82
- data/lib/active_record/connection_adapters/abstract_mysql_adapter.rb +115 -85
- data/lib/active_record/connection_adapters/column.rb +4 -0
- data/lib/active_record/connection_adapters/mysql/database_statements.rb +37 -25
- data/lib/active_record/connection_adapters/mysql/quoting.rb +50 -23
- data/lib/active_record/connection_adapters/mysql/schema_definitions.rb +4 -1
- data/lib/active_record/connection_adapters/mysql/schema_dumper.rb +7 -1
- data/lib/active_record/connection_adapters/mysql/schema_statements.rb +20 -1
- data/lib/active_record/connection_adapters/mysql2_adapter.rb +12 -6
- data/lib/active_record/connection_adapters/pool_config.rb +7 -7
- data/lib/active_record/connection_adapters/postgresql/column.rb +19 -1
- data/lib/active_record/connection_adapters/postgresql/database_statements.rb +20 -17
- data/lib/active_record/connection_adapters/postgresql/oid/array.rb +1 -1
- data/lib/active_record/connection_adapters/postgresql/oid/date.rb +8 -0
- data/lib/active_record/connection_adapters/postgresql/oid/date_time.rb +5 -0
- data/lib/active_record/connection_adapters/postgresql/oid/hstore.rb +53 -14
- data/lib/active_record/connection_adapters/postgresql/oid/range.rb +1 -1
- data/lib/active_record/connection_adapters/postgresql/oid/timestamp.rb +15 -0
- data/lib/active_record/connection_adapters/postgresql/oid/timestamp_with_time_zone.rb +30 -0
- data/lib/active_record/connection_adapters/postgresql/oid/type_map_initializer.rb +18 -6
- data/lib/active_record/connection_adapters/postgresql/oid.rb +2 -0
- data/lib/active_record/connection_adapters/postgresql/quoting.rb +82 -53
- data/lib/active_record/connection_adapters/postgresql/referential_integrity.rb +34 -0
- data/lib/active_record/connection_adapters/postgresql/schema_creation.rb +21 -1
- data/lib/active_record/connection_adapters/postgresql/schema_definitions.rb +22 -1
- data/lib/active_record/connection_adapters/postgresql/schema_dumper.rb +25 -0
- data/lib/active_record/connection_adapters/postgresql/schema_statements.rb +40 -21
- data/lib/active_record/connection_adapters/postgresql/utils.rb +9 -10
- data/lib/active_record/connection_adapters/postgresql_adapter.rb +207 -106
- data/lib/active_record/connection_adapters/schema_cache.rb +39 -38
- data/lib/active_record/connection_adapters/sqlite3/database_statements.rb +25 -19
- data/lib/active_record/connection_adapters/sqlite3/quoting.rb +33 -18
- data/lib/active_record/connection_adapters/sqlite3/schema_definitions.rb +6 -0
- data/lib/active_record/connection_adapters/sqlite3/schema_statements.rb +19 -17
- data/lib/active_record/connection_adapters/sqlite3_adapter.rb +98 -36
- data/lib/active_record/connection_adapters.rb +6 -5
- data/lib/active_record/connection_handling.rb +49 -55
- data/lib/active_record/core.rb +123 -141
- data/lib/active_record/database_configurations/connection_url_resolver.rb +2 -1
- data/lib/active_record/database_configurations/database_config.rb +12 -9
- data/lib/active_record/database_configurations/hash_config.rb +63 -5
- data/lib/active_record/database_configurations/url_config.rb +2 -2
- data/lib/active_record/database_configurations.rb +15 -32
- data/lib/active_record/delegated_type.rb +53 -12
- data/lib/active_record/destroy_association_async_job.rb +1 -1
- data/lib/active_record/disable_joins_association_relation.rb +39 -0
- data/lib/active_record/dynamic_matchers.rb +1 -1
- data/lib/active_record/encryption/cipher/aes256_gcm.rb +98 -0
- data/lib/active_record/encryption/cipher.rb +53 -0
- data/lib/active_record/encryption/config.rb +44 -0
- data/lib/active_record/encryption/configurable.rb +67 -0
- data/lib/active_record/encryption/context.rb +35 -0
- data/lib/active_record/encryption/contexts.rb +72 -0
- data/lib/active_record/encryption/derived_secret_key_provider.rb +12 -0
- data/lib/active_record/encryption/deterministic_key_provider.rb +14 -0
- data/lib/active_record/encryption/encryptable_record.rb +206 -0
- data/lib/active_record/encryption/encrypted_attribute_type.rb +140 -0
- data/lib/active_record/encryption/encrypted_fixtures.rb +38 -0
- data/lib/active_record/encryption/encrypting_only_encryptor.rb +12 -0
- data/lib/active_record/encryption/encryptor.rb +155 -0
- data/lib/active_record/encryption/envelope_encryption_key_provider.rb +55 -0
- data/lib/active_record/encryption/errors.rb +15 -0
- data/lib/active_record/encryption/extended_deterministic_queries.rb +160 -0
- data/lib/active_record/encryption/extended_deterministic_uniqueness_validator.rb +28 -0
- data/lib/active_record/encryption/key.rb +28 -0
- data/lib/active_record/encryption/key_generator.rb +42 -0
- data/lib/active_record/encryption/key_provider.rb +46 -0
- data/lib/active_record/encryption/message.rb +33 -0
- data/lib/active_record/encryption/message_serializer.rb +90 -0
- data/lib/active_record/encryption/null_encryptor.rb +21 -0
- data/lib/active_record/encryption/properties.rb +76 -0
- data/lib/active_record/encryption/read_only_null_encryptor.rb +24 -0
- data/lib/active_record/encryption/scheme.rb +99 -0
- data/lib/active_record/encryption.rb +55 -0
- data/lib/active_record/enum.rb +50 -43
- data/lib/active_record/errors.rb +67 -4
- data/lib/active_record/explain_registry.rb +11 -6
- data/lib/active_record/explain_subscriber.rb +1 -1
- data/lib/active_record/fixture_set/file.rb +15 -1
- data/lib/active_record/fixture_set/table_row.rb +41 -6
- data/lib/active_record/fixture_set/table_rows.rb +4 -4
- data/lib/active_record/fixtures.rb +20 -23
- data/lib/active_record/future_result.rb +139 -0
- data/lib/active_record/gem_version.rb +4 -4
- data/lib/active_record/inheritance.rb +55 -17
- data/lib/active_record/insert_all.rb +80 -14
- data/lib/active_record/integration.rb +4 -3
- data/lib/active_record/internal_metadata.rb +1 -5
- data/lib/active_record/legacy_yaml_adapter.rb +2 -39
- data/lib/active_record/locking/optimistic.rb +36 -21
- data/lib/active_record/locking/pessimistic.rb +10 -4
- data/lib/active_record/log_subscriber.rb +23 -7
- data/lib/active_record/middleware/database_selector/resolver.rb +6 -10
- data/lib/active_record/middleware/database_selector.rb +18 -6
- data/lib/active_record/middleware/shard_selector.rb +60 -0
- data/lib/active_record/migration/command_recorder.rb +8 -9
- data/lib/active_record/migration/compatibility.rb +93 -46
- data/lib/active_record/migration/join_table.rb +1 -1
- data/lib/active_record/migration.rb +167 -87
- data/lib/active_record/model_schema.rb +58 -59
- data/lib/active_record/nested_attributes.rb +13 -12
- data/lib/active_record/no_touching.rb +3 -3
- data/lib/active_record/null_relation.rb +2 -6
- data/lib/active_record/persistence.rb +231 -61
- data/lib/active_record/query_cache.rb +2 -2
- data/lib/active_record/query_logs.rb +149 -0
- data/lib/active_record/querying.rb +16 -6
- data/lib/active_record/railtie.rb +136 -22
- data/lib/active_record/railties/controller_runtime.rb +4 -5
- data/lib/active_record/railties/databases.rake +78 -136
- data/lib/active_record/readonly_attributes.rb +11 -0
- data/lib/active_record/reflection.rb +80 -49
- data/lib/active_record/relation/batches/batch_enumerator.rb +19 -5
- data/lib/active_record/relation/batches.rb +6 -6
- data/lib/active_record/relation/calculations.rb +92 -60
- data/lib/active_record/relation/delegation.rb +7 -7
- data/lib/active_record/relation/finder_methods.rb +31 -35
- data/lib/active_record/relation/merger.rb +20 -13
- data/lib/active_record/relation/predicate_builder/association_query_value.rb +20 -1
- data/lib/active_record/relation/predicate_builder.rb +1 -6
- data/lib/active_record/relation/query_attribute.rb +28 -11
- data/lib/active_record/relation/query_methods.rb +306 -68
- data/lib/active_record/relation/record_fetch_warning.rb +7 -9
- data/lib/active_record/relation/spawn_methods.rb +2 -2
- data/lib/active_record/relation/where_clause.rb +10 -19
- data/lib/active_record/relation.rb +189 -88
- data/lib/active_record/result.rb +23 -11
- data/lib/active_record/runtime_registry.rb +9 -13
- data/lib/active_record/sanitization.rb +17 -12
- data/lib/active_record/schema.rb +38 -23
- data/lib/active_record/schema_dumper.rb +29 -19
- data/lib/active_record/schema_migration.rb +4 -4
- data/lib/active_record/scoping/default.rb +60 -13
- data/lib/active_record/scoping/named.rb +3 -11
- data/lib/active_record/scoping.rb +64 -34
- data/lib/active_record/serialization.rb +6 -1
- data/lib/active_record/signed_id.rb +3 -3
- data/lib/active_record/store.rb +2 -2
- data/lib/active_record/suppressor.rb +11 -15
- data/lib/active_record/table_metadata.rb +6 -2
- data/lib/active_record/tasks/database_tasks.rb +127 -60
- data/lib/active_record/tasks/mysql_database_tasks.rb +1 -1
- data/lib/active_record/tasks/postgresql_database_tasks.rb +19 -13
- data/lib/active_record/test_databases.rb +1 -1
- data/lib/active_record/test_fixtures.rb +9 -6
- data/lib/active_record/timestamp.rb +3 -4
- data/lib/active_record/transactions.rb +12 -17
- data/lib/active_record/translation.rb +3 -3
- data/lib/active_record/type/adapter_specific_registry.rb +32 -7
- data/lib/active_record/type/hash_lookup_type_map.rb +34 -1
- data/lib/active_record/type/internal/timezone.rb +2 -2
- data/lib/active_record/type/serialized.rb +9 -5
- data/lib/active_record/type/type_map.rb +17 -20
- data/lib/active_record/type.rb +1 -2
- data/lib/active_record/validations/associated.rb +4 -4
- data/lib/active_record/validations/presence.rb +2 -2
- data/lib/active_record/validations/uniqueness.rb +4 -4
- data/lib/active_record/version.rb +1 -1
- data/lib/active_record.rb +225 -27
- data/lib/arel/attributes/attribute.rb +0 -8
- data/lib/arel/crud.rb +28 -22
- data/lib/arel/delete_manager.rb +18 -4
- data/lib/arel/filter_predications.rb +9 -0
- data/lib/arel/insert_manager.rb +2 -3
- data/lib/arel/nodes/and.rb +4 -0
- data/lib/arel/nodes/casted.rb +1 -1
- data/lib/arel/nodes/delete_statement.rb +12 -13
- data/lib/arel/nodes/filter.rb +10 -0
- data/lib/arel/nodes/function.rb +1 -0
- data/lib/arel/nodes/insert_statement.rb +2 -2
- data/lib/arel/nodes/select_core.rb +2 -2
- data/lib/arel/nodes/select_statement.rb +2 -2
- data/lib/arel/nodes/update_statement.rb +8 -3
- data/lib/arel/nodes.rb +1 -0
- data/lib/arel/predications.rb +11 -3
- data/lib/arel/select_manager.rb +10 -4
- data/lib/arel/table.rb +0 -1
- data/lib/arel/tree_manager.rb +0 -12
- data/lib/arel/update_manager.rb +18 -4
- data/lib/arel/visitors/dot.rb +80 -90
- data/lib/arel/visitors/mysql.rb +8 -2
- data/lib/arel/visitors/postgresql.rb +0 -10
- data/lib/arel/visitors/to_sql.rb +58 -2
- data/lib/arel.rb +2 -1
- data/lib/rails/generators/active_record/application_record/templates/application_record.rb.tt +1 -1
- data/lib/rails/generators/active_record/model/templates/abstract_base_class.rb.tt +1 -1
- data/lib/rails/generators/active_record/model/templates/model.rb.tt +1 -1
- data/lib/rails/generators/active_record/model/templates/module.rb.tt +2 -2
- data/lib/rails/generators/active_record/multi_db/multi_db_generator.rb +16 -0
- data/lib/rails/generators/active_record/multi_db/templates/multi_db.rb.tt +44 -0
- metadata +55 -11
data/CHANGELOG.md
CHANGED
@@ -1,1767 +1,2376 @@
|
|
1
|
-
## Rails
|
1
|
+
## Rails 7.0.8 (September 09, 2023) ##
|
2
2
|
|
3
|
-
*
|
3
|
+
* Fix `change_column` not setting `precision: 6` on `datetime` columns when
|
4
|
+
using 7.0+ Migrations and SQLite.
|
4
5
|
|
5
|
-
|
6
|
+
*Hartley McGuire*
|
6
7
|
|
7
|
-
* Fix
|
8
|
+
* Fix unscope is not working in specific case
|
8
9
|
|
9
|
-
|
10
|
-
|
10
|
+
Before:
|
11
|
+
```ruby
|
12
|
+
Post.where(id: 1...3).unscope(where: :id).to_sql # "SELECT `posts`.* FROM `posts` WHERE `posts`.`id` >= 1 AND `posts`.`id` < 3"
|
11
13
|
|
12
|
-
|
14
|
+
```
|
13
15
|
|
14
|
-
|
16
|
+
After:
|
17
|
+
```ruby
|
18
|
+
Post.where(id: 1...3).unscope(where: :id).to_sql # "SELECT `posts`.* FROM `posts`"
|
19
|
+
```
|
15
20
|
|
16
|
-
Fixes #
|
21
|
+
Fixes #48094.
|
17
22
|
|
18
|
-
*
|
23
|
+
*Kazuya Hatanaka*
|
19
24
|
|
20
|
-
|
25
|
+
* Fix associations to a STI model including a `class_name` parameter
|
21
26
|
|
22
|
-
|
27
|
+
```ruby
|
28
|
+
class Product < ApplicationRecord
|
29
|
+
has_many :requests, as: :requestable, class_name: "ProductRequest", dependent: :destroy
|
30
|
+
end
|
23
31
|
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
* `config.active_record.yaml_column_permitted_classes`
|
35
|
-
|
36
|
-
The "safe YAML" loading method does not allow all classes to be deserialized
|
37
|
-
by default. This option allows you to specify classes deemed "safe" in your
|
38
|
-
application. For example, if your application uses Symbol and Time in
|
39
|
-
serialized data, you can add Symbol and Time to the allowed list as follows:
|
40
|
-
|
32
|
+
# STI tables
|
33
|
+
class Request < ApplicationRecord
|
34
|
+
belongs_to :requestable, polymorphic: true
|
35
|
+
|
36
|
+
validate :request_type, presence: true
|
37
|
+
end
|
38
|
+
|
39
|
+
class ProductRequest < Request
|
40
|
+
belongs_to :user
|
41
|
+
end
|
41
42
|
```
|
42
|
-
|
43
|
+
|
44
|
+
Accessing such association would lead to:
|
45
|
+
|
46
|
+
```
|
47
|
+
table_metadata.rb:22:in `has_column?': undefined method `key?' for nil:NilClass (NoMethodError)
|
43
48
|
```
|
44
49
|
|
45
|
-
|
50
|
+
*Romain Filinto*
|
51
|
+
|
52
|
+
* Fix `change_table` setting datetime precision for 6.1 Migrations
|
53
|
+
|
54
|
+
*Hartley McGuire*
|
46
55
|
|
56
|
+
* Fix change_column setting datetime precision for 6.1 Migrations
|
47
57
|
|
48
|
-
|
58
|
+
*Hartley McGuire*
|
59
|
+
|
60
|
+
## Rails 7.0.7.2 (August 22, 2023) ##
|
49
61
|
|
50
62
|
* No changes.
|
51
63
|
|
52
64
|
|
53
|
-
## Rails
|
65
|
+
## Rails 7.0.7.1 (August 22, 2023) ##
|
54
66
|
|
55
67
|
* No changes.
|
56
68
|
|
57
69
|
|
58
|
-
## Rails
|
70
|
+
## Rails 7.0.7 (August 09, 2023) ##
|
59
71
|
|
60
|
-
*
|
72
|
+
* Restores functionality to the missing method when using enums and fixes.
|
61
73
|
|
62
|
-
|
63
|
-
In Ruby 2.6, the receiver of the `String#-@` method is modified under certain circumstances.
|
64
|
-
This was later identified as a bug (https://bugs.ruby-lang.org/issues/15926) and only
|
65
|
-
fixed in Ruby 2.7.
|
74
|
+
*paulreece*
|
66
75
|
|
67
|
-
|
68
|
-
`ActiveRecord::ConnectionAdapters::SchemaCache#deep_deduplicate` method, which internally
|
69
|
-
calls the `String#-@` method, could also modify an input string argument in Ruby 2.6 --
|
70
|
-
changing a tainted, unfrozen string into a tainted, frozen string.
|
76
|
+
* Fix `StatementCache::Substitute` with serialized type.
|
71
77
|
|
72
|
-
|
78
|
+
*ywenc*
|
73
79
|
|
74
|
-
|
80
|
+
* Fix `:db_runtime` on notification payload when application have multiple databases.
|
75
81
|
|
76
|
-
*
|
77
|
-
migration version is 6.0.
|
82
|
+
*Eileen M. Uchitelle*
|
78
83
|
|
79
|
-
|
80
|
-
bigint instead of integer for the SQLite Adapter.
|
84
|
+
* Correctly dump check constraints for MySQL 8.0.16+.
|
81
85
|
|
82
|
-
*
|
86
|
+
*Steve Hill*
|
83
87
|
|
84
|
-
* Fix
|
88
|
+
* Fix `ActiveRecord::QueryMethods#in_order_of` to include `nil`s, to match the
|
89
|
+
behavior of `Enumerable#in_order_of`.
|
85
90
|
|
86
|
-
|
91
|
+
For example, `Post.in_order_of(:title, [nil, "foo"])` will now include posts
|
92
|
+
with `nil` titles, the same as `Post.all.to_a.in_order_of(:title, [nil, "foo"])`.
|
87
93
|
|
88
|
-
*
|
94
|
+
*fatkodima*
|
89
95
|
|
90
|
-
|
91
|
-
Post.create(name: "broken \xC8 UTF-8")
|
92
|
-
```
|
96
|
+
* Revert "Fix autosave associations with validations added on `:base` of the associated objects."
|
93
97
|
|
94
|
-
|
95
|
-
|
98
|
+
This change intended to remove the :base attribute from the message,
|
99
|
+
but broke many assumptions which key these errors were stored.
|
96
100
|
|
97
|
-
|
98
|
-
|
101
|
+
*zzak*
|
102
|
+
|
103
|
+
* Fix `#previously_new_record?` to return true for destroyed records.
|
104
|
+
|
105
|
+
Before, if a record was created and then destroyed, `#previously_new_record?` would return true.
|
106
|
+
Now, any UPDATE or DELETE to a record is considered a change, and will result in `#previously_new_record?`
|
107
|
+
returning false.
|
108
|
+
|
109
|
+
*Adrianna Chang*
|
110
|
+
|
111
|
+
* Revert breaking changes to `has_one` relationship deleting the old record before the new one is validated.
|
112
|
+
|
113
|
+
*zzak*
|
114
|
+
|
115
|
+
* Fix support for Active Record instances being uses in queries.
|
116
|
+
|
117
|
+
As of `7.0.5`, query arguments were deep duped to avoid mutations impacting
|
118
|
+
the query cache, but this had the adverse effect to clearing the primary key when
|
119
|
+
the query argument contained an `ActiveRecord::Base` instance.
|
120
|
+
|
121
|
+
This broke the `noticed` gem.
|
99
122
|
|
100
123
|
*Jean Boussier*
|
101
124
|
|
102
|
-
* Ignore persisted in-memory records when merging target lists.
|
103
125
|
|
104
|
-
|
126
|
+
## Rails 7.0.6 (June 29, 2023) ##
|
105
127
|
|
106
|
-
* Fix
|
107
|
-
`has_many` through relations.
|
128
|
+
* Fix autosave associations with validations added on `:base` of the associated objects.
|
108
129
|
|
109
|
-
|
130
|
+
*fatkodima*
|
110
131
|
|
111
|
-
|
132
|
+
* Fix result with anonymous PostgreSQL columns of different type from json.
|
112
133
|
|
113
|
-
*
|
114
|
-
`config.active_record.record_timestamps = false`
|
134
|
+
*Oleksandr Avoiants*
|
115
135
|
|
116
|
-
|
117
|
-
various DB management tasks.
|
136
|
+
* Preserve timestamp when setting an `ActiveSupport::TimeWithZone` value to `timestamptz` attribute.
|
118
137
|
|
119
|
-
|
138
|
+
*fatkodima*
|
139
|
+
|
140
|
+
* Fix assignment into an `has_one` relationship deleting the old record before the new one is validated.
|
120
141
|
|
121
142
|
*Jean Boussier*
|
122
143
|
|
123
|
-
* Fix
|
144
|
+
* Fix where on association with has_one/has_many polymorphic relations.
|
145
|
+
|
146
|
+
Before:
|
147
|
+
```ruby
|
148
|
+
Treasure.where(price_estimates: PriceEstimate.all)
|
149
|
+
#=> SELECT (...) WHERE "treasures"."id" IN (SELECT "price_estimates"."estimate_of_id" FROM "price_estimates")
|
150
|
+
```
|
151
|
+
|
152
|
+
Later:
|
153
|
+
```ruby
|
154
|
+
Treasure.where(price_estimates: PriceEstimate.all)
|
155
|
+
#=> SELECT (...) WHERE "treasures"."id" IN (SELECT "price_estimates"."estimate_of_id" FROM "price_estimates" WHERE "price_estimates"."estimate_of_type" = 'Treasure')
|
156
|
+
```
|
157
|
+
|
158
|
+
*Lázaro Nixon*
|
159
|
+
|
160
|
+
* Fix decrementing counter caches on optimistically locked record deletion
|
161
|
+
|
162
|
+
*fatkodima*
|
163
|
+
|
164
|
+
* Ensure binary-destined values have binary encoding during type cast.
|
165
|
+
|
166
|
+
*Matthew Draper*
|
167
|
+
|
168
|
+
* Preserve existing column default functions when altering table in SQLite.
|
169
|
+
|
170
|
+
*fatkodima*
|
171
|
+
|
172
|
+
* Remove table alias added when using `where.missing` or `where.associated`.
|
124
173
|
|
125
|
-
*
|
174
|
+
*fatkodima*
|
175
|
+
|
176
|
+
* Fix `Enumerable#in_order_of` to only flatten first level to preserve nesting.
|
177
|
+
|
178
|
+
*Miha Rekar*
|
179
|
+
|
180
|
+
|
181
|
+
## Rails 7.0.5.1 (June 26, 2023) ##
|
182
|
+
|
183
|
+
* No changes.
|
184
|
+
|
185
|
+
## Rails 7.0.5 (May 24, 2023) ##
|
186
|
+
|
187
|
+
* Type cast `#attribute_changed?` `:from` and `:to` options.
|
188
|
+
|
189
|
+
*Andrew Novoselac*
|
190
|
+
|
191
|
+
* Fix `index_exists?` when column is an array.
|
126
192
|
|
127
|
-
*
|
193
|
+
*Eileen M. Uchitelle*
|
128
194
|
|
129
|
-
|
195
|
+
* Handle `Date` objects for PostgreSQL `timestamptz` columns.
|
130
196
|
|
131
197
|
*Alex Ghiculescu*
|
132
198
|
|
133
|
-
* Fix
|
199
|
+
* Fix collation for changing column to non-string.
|
200
|
+
|
201
|
+
*Hartley McGuire*
|
202
|
+
|
203
|
+
* Map through subtype in `PostgreSQL::OID::Array`.
|
204
|
+
|
205
|
+
*Jonathan Hefner*
|
206
|
+
|
207
|
+
* Store correct environment in `internal_metadata` when run rails `db:prepare`.
|
208
|
+
|
209
|
+
*fatkodima*
|
210
|
+
|
211
|
+
* Make sure `ActiveRecord::Relation#sum` works with objects that implement `#coerce` without deprecation.
|
134
212
|
|
135
213
|
*Alex Ghiculescu*
|
136
214
|
|
137
|
-
* Fix retrieving
|
215
|
+
* Fix retrieving foreign keys referencing tables named like keywords in PostgreSQL and MySQL.
|
138
216
|
|
139
217
|
*fatkodima*
|
140
218
|
|
219
|
+
* Support UUIDs in Disable Joins.
|
141
220
|
|
142
|
-
|
221
|
+
*Samuel Cochran*
|
143
222
|
|
144
|
-
*
|
223
|
+
* Fix Active Record's explain for queries starting with comments.
|
145
224
|
|
225
|
+
*fatkodima*
|
146
226
|
|
147
|
-
|
227
|
+
* Fix incorrectly preloading through association records when middle association has been loaded.
|
148
228
|
|
149
|
-
*
|
229
|
+
*Joshua Young*
|
150
230
|
|
231
|
+
* Fix where.missing and where.associated for parent/child associations.
|
151
232
|
|
152
|
-
|
233
|
+
*fatkodima*
|
153
234
|
|
154
|
-
*
|
235
|
+
* Fix Enumerable#in_order_of to preserve duplicates.
|
155
236
|
|
237
|
+
*fatkodima*
|
156
238
|
|
157
|
-
|
239
|
+
* Fix autoincrement on primary key for mysql.
|
158
240
|
|
159
|
-
*
|
241
|
+
*Eileen M. Uchitelle*
|
160
242
|
|
243
|
+
* Restore ability to redefine column in `create_table` for Rails 5.2 migrations.
|
161
244
|
|
162
|
-
|
245
|
+
*fatkodima*
|
163
246
|
|
164
|
-
*
|
247
|
+
* Fix schema cache dumping of virtual columns.
|
248
|
+
|
249
|
+
*fatkodima*
|
250
|
+
|
251
|
+
* Fix Active Record grouped calculations on joined tables on column present in both tables.
|
252
|
+
|
253
|
+
*fatkodima*
|
254
|
+
|
255
|
+
* Fix mutation detection for serialized attributes backed by binary columns.
|
256
|
+
|
257
|
+
*Jean Boussier*
|
258
|
+
|
259
|
+
* Fix a bug where using groups and counts with long table names would return incorrect results.
|
260
|
+
|
261
|
+
*Shota Toguchi*, *Yusaku Ono*
|
262
|
+
|
263
|
+
* Fix erroneous nil default precision on virtual datetime columns.
|
264
|
+
|
265
|
+
Prior to this change, virtual datetime columns did not have the same
|
266
|
+
default precision as regular datetime columns, resulting in the following
|
267
|
+
being erroneously equivalent:
|
268
|
+
|
269
|
+
t.virtual :name, type: datetime, as: "expression"
|
270
|
+
t.virtual :name, type: datetime, precision: nil, as: "expression"
|
271
|
+
|
272
|
+
This change fixes the default precision lookup, so virtual and regular
|
273
|
+
datetime column default precisions match.
|
274
|
+
|
275
|
+
*Sam Bostock*
|
165
276
|
|
277
|
+
* Fix a case where the query cache can return wrong values. See #46044
|
166
278
|
|
167
|
-
|
279
|
+
*Aaron Patterson*
|
280
|
+
|
281
|
+
|
282
|
+
## Rails 7.0.4.3 (March 13, 2023) ##
|
168
283
|
|
169
284
|
* No changes.
|
170
285
|
|
171
286
|
|
172
|
-
## Rails
|
287
|
+
## Rails 7.0.4.2 (January 24, 2023) ##
|
173
288
|
|
174
289
|
* No changes.
|
175
290
|
|
176
291
|
|
177
|
-
## Rails
|
292
|
+
## Rails 7.0.4.1 (January 17, 2023) ##
|
178
293
|
|
179
|
-
*
|
294
|
+
* Make sanitize_as_sql_comment more strict
|
180
295
|
|
181
|
-
|
296
|
+
Though this method was likely never meant to take user input, it was
|
297
|
+
attempting sanitization. That sanitization could be bypassed with
|
298
|
+
carefully crafted input.
|
182
299
|
|
183
|
-
|
300
|
+
This commit makes the sanitization more robust by replacing any
|
301
|
+
occurrences of "/*" or "*/" with "/ *" or "* /". It also performs a
|
302
|
+
first pass to remove one surrounding comment to avoid compatibility
|
303
|
+
issues for users relying on the existing removal.
|
184
304
|
|
185
|
-
|
305
|
+
This also clarifies in the documentation of annotate that it should not
|
306
|
+
be provided user input.
|
186
307
|
|
187
|
-
|
308
|
+
[CVE-2023-22794]
|
188
309
|
|
189
|
-
|
190
|
-
|
310
|
+
* Added integer width check to PostgreSQL::Quoting
|
311
|
+
|
312
|
+
Given a value outside the range for a 64bit signed integer type
|
313
|
+
PostgreSQL will treat the column type as numeric. Comparing
|
314
|
+
integer values against numeric values can result in a slow
|
315
|
+
sequential scan.
|
316
|
+
|
317
|
+
This behavior is configurable via
|
318
|
+
ActiveRecord::Base.raise_int_wider_than_64bit which defaults to true.
|
319
|
+
|
320
|
+
[CVE-2022-44566]
|
321
|
+
|
322
|
+
|
323
|
+
## Rails 7.0.4 (September 09, 2022) ##
|
324
|
+
|
325
|
+
* Symbol is allowed by default for YAML columns
|
326
|
+
|
327
|
+
*Étienne Barrié*
|
328
|
+
|
329
|
+
* Fix `ActiveRecord::Store` to serialize as a regular Hash
|
330
|
+
|
331
|
+
Previously it would serialize as an `ActiveSupport::HashWithIndifferentAccess`
|
332
|
+
which is wasteful and cause problem with YAML safe_load.
|
191
333
|
|
192
334
|
*Jean Boussier*
|
193
335
|
|
194
|
-
*
|
336
|
+
* Add `timestamptz` as a time zone aware type for PostgreSQL
|
195
337
|
|
196
|
-
|
338
|
+
This is required for correctly parsing `timestamp with time zone` values in your database.
|
197
339
|
|
198
|
-
|
340
|
+
If you don't want this, you can opt out by adding this initializer:
|
199
341
|
|
200
|
-
|
342
|
+
```ruby
|
343
|
+
ActiveRecord::Base.time_zone_aware_types -= [:timestamptz]
|
344
|
+
```
|
201
345
|
|
202
|
-
*
|
346
|
+
*Alex Ghiculescu*
|
203
347
|
|
204
|
-
|
348
|
+
* Fix supporting timezone awareness for `tsrange` and `tstzrange` array columns.
|
205
349
|
|
206
|
-
|
350
|
+
```ruby
|
351
|
+
# In database migrations
|
352
|
+
add_column :shops, :open_hours, :tsrange, array: true
|
353
|
+
# In app config
|
354
|
+
ActiveRecord::Base.time_zone_aware_types += [:tsrange]
|
355
|
+
# In the code times are properly converted to app time zone
|
356
|
+
Shop.create!(open_hours: [Time.current..8.hour.from_now])
|
357
|
+
```
|
207
358
|
|
208
|
-
*
|
359
|
+
*Wojciech Wnętrzak*
|
209
360
|
|
210
|
-
*
|
361
|
+
* Resolve issue where a relation cache_version could be left stale.
|
211
362
|
|
212
|
-
|
363
|
+
Previously, when `reset` was called on a relation object it did not reset the cache_versions
|
364
|
+
ivar. This led to a confusing situation where despite having the correct data the relation
|
365
|
+
still reported a stale cache_version.
|
213
366
|
|
214
|
-
|
215
|
-
`quoted_node` so that PostgreSQL arrays are quoted properly.
|
367
|
+
Usage:
|
216
368
|
|
217
|
-
|
369
|
+
```ruby
|
370
|
+
developers = Developer.all
|
371
|
+
developers.cache_version
|
218
372
|
|
219
|
-
|
373
|
+
Developer.update_all(updated_at: Time.now.utc + 1.second)
|
220
374
|
|
221
|
-
|
375
|
+
developers.cache_version # Stale cache_version
|
376
|
+
developers.reset
|
377
|
+
developers.cache_version # Returns the current correct cache_version
|
378
|
+
```
|
222
379
|
|
223
|
-
|
380
|
+
Fixes #45341.
|
224
381
|
|
225
|
-
*
|
382
|
+
*Austen Madden*
|
383
|
+
|
384
|
+
* Fix `load_async` when called on an association proxy.
|
226
385
|
|
227
|
-
|
386
|
+
Calling `load_async` directly an association would schedule
|
387
|
+
a query but never use it.
|
228
388
|
|
229
|
-
|
389
|
+
```ruby
|
390
|
+
comments = post.comments.load_async # schedule a query
|
391
|
+
comments.to_a # perform an entirely new sync query
|
392
|
+
```
|
393
|
+
|
394
|
+
Now it does use the async query, however note that it doesn't
|
395
|
+
cause the association to be loaded.
|
396
|
+
|
397
|
+
*Jean Boussier*
|
230
398
|
|
231
|
-
*
|
399
|
+
* Fix eager loading for models without primary keys.
|
232
400
|
|
233
|
-
|
234
|
-
relation set `strict_loading` to false the false wasn't considered when
|
235
|
-
deciding whether to raise/warn about strict loading.
|
401
|
+
*Anmol Chopra*, *Matt Lawrence*, and *Jonathan Hefner*
|
236
402
|
|
403
|
+
* `rails db:schema:{dump,load}` now checks `ENV["SCHEMA_FORMAT"]` before config
|
404
|
+
|
405
|
+
Since `rails db:structure:{dump,load}` was deprecated there wasn't a simple
|
406
|
+
way to dump a schema to both SQL and Ruby formats. You can now do this with
|
407
|
+
an environment variable. For example:
|
408
|
+
|
409
|
+
```
|
410
|
+
SCHEMA_FORMAT=sql rake db:schema:dump
|
237
411
|
```
|
238
|
-
class Dog < ActiveRecord::Base
|
239
|
-
self.strict_loading_by_default = true
|
240
412
|
|
241
|
-
|
242
|
-
|
413
|
+
*Alex Ghiculescu*
|
414
|
+
|
415
|
+
* Fix Hstore deserialize regression.
|
416
|
+
|
417
|
+
*edsharp*
|
418
|
+
|
419
|
+
|
420
|
+
## Rails 7.0.3.1 (July 12, 2022) ##
|
421
|
+
|
422
|
+
* Change ActiveRecord::Coders::YAMLColumn default to safe_load
|
423
|
+
|
424
|
+
This adds two new configuration options The configuration options are as
|
425
|
+
follows:
|
426
|
+
|
427
|
+
* `config.active_record.use_yaml_unsafe_load`
|
428
|
+
|
429
|
+
When set to true, this configuration option tells Rails to use the old
|
430
|
+
"unsafe" YAML loading strategy, maintaining the existing behavior but leaving
|
431
|
+
the possible escalation vulnerability in place. Setting this option to true
|
432
|
+
is *not* recommended, but can aid in upgrading.
|
433
|
+
|
434
|
+
* `config.active_record.yaml_column_permitted_classes`
|
435
|
+
|
436
|
+
The "safe YAML" loading method does not allow all classes to be deserialized
|
437
|
+
by default. This option allows you to specify classes deemed "safe" in your
|
438
|
+
application. For example, if your application uses Symbol and Time in
|
439
|
+
serialized data, you can add Symbol and Time to the allowed list as follows:
|
440
|
+
|
441
|
+
```
|
442
|
+
config.active_record.yaml_column_permitted_classes = [Symbol, Date, Time]
|
243
443
|
```
|
244
444
|
|
245
|
-
|
246
|
-
`strict_loading` was set to false. This is a bug affecting more than
|
247
|
-
Active Storage which is why I made this PR superseding #41461. We need
|
248
|
-
to fix this for all applications since the behavior is a little
|
249
|
-
surprising. I took the test from #41461 and the code suggestion from #41453
|
250
|
-
with some additions.
|
445
|
+
[CVE-2022-32224]
|
251
446
|
|
252
|
-
*Eileen M. Uchitelle*, *Radamés Roriz*
|
253
447
|
|
254
|
-
|
448
|
+
## Rails 7.0.3 (May 09, 2022) ##
|
255
449
|
|
256
|
-
|
450
|
+
* Some internal housekeeping on reloads could break custom `respond_to?`
|
451
|
+
methods in class objects that referenced reloadable constants. See
|
452
|
+
[#44125](https://github.com/rails/rails/issues/44125) for details.
|
257
453
|
|
258
|
-
*
|
454
|
+
*Xavier Noria*
|
259
455
|
|
260
|
-
|
456
|
+
* Fixed MariaDB default function support.
|
261
457
|
|
262
|
-
|
458
|
+
Defaults would be written wrong in "db/schema.rb" and not work correctly
|
459
|
+
if using `db:schema:load`. Further more the function name would be
|
460
|
+
added as string content when saving new records.
|
263
461
|
|
264
|
-
*
|
462
|
+
*kaspernj*
|
265
463
|
|
266
|
-
* Fix
|
464
|
+
* Fix `remove_foreign_key` with `:if_exists` option when foreign key actually exists.
|
267
465
|
|
268
|
-
*
|
466
|
+
*fatkodima*
|
269
467
|
|
270
|
-
*
|
468
|
+
* Remove `--no-comments` flag in structure dumps for PostgreSQL
|
271
469
|
|
272
|
-
|
470
|
+
This broke some apps that used custom schema comments. If you don't want
|
471
|
+
comments in your structure dump, you can use:
|
472
|
+
|
473
|
+
```ruby
|
474
|
+
ActiveRecord::Tasks::DatabaseTasks.structure_dump_flags = ['--no-comments']
|
475
|
+
```
|
476
|
+
|
477
|
+
*Alex Ghiculescu*
|
478
|
+
|
479
|
+
* Use the model name as a prefix when filtering encrypted attributes from logs.
|
480
|
+
|
481
|
+
For example, when encrypting `Person#name` it will add `person.name` as a filter
|
482
|
+
parameter, instead of just `name`. This prevents unintended filtering of parameters
|
483
|
+
with a matching name in other models.
|
484
|
+
|
485
|
+
*Jorge Manrubia*
|
273
486
|
|
487
|
+
* Fix quoting of `ActiveSupport::Duration` and `Rational` numbers in the MySQL adapter.
|
274
488
|
|
275
|
-
|
489
|
+
*Kevin McPhillips*
|
490
|
+
|
491
|
+
* Fix `change_column_comment` to preserve column's AUTO_INCREMENT in the MySQL adapter
|
492
|
+
|
493
|
+
*fatkodima*
|
494
|
+
|
495
|
+
## Rails 7.0.2.4 (April 26, 2022) ##
|
496
|
+
|
497
|
+
* No changes.
|
498
|
+
|
499
|
+
|
500
|
+
## Rails 7.0.2.3 (March 08, 2022) ##
|
501
|
+
|
502
|
+
* No changes.
|
503
|
+
|
504
|
+
|
505
|
+
## Rails 7.0.2.2 (February 11, 2022) ##
|
276
506
|
|
277
507
|
* No changes.
|
278
508
|
|
279
509
|
|
280
|
-
## Rails
|
510
|
+
## Rails 7.0.2.1 (February 11, 2022) ##
|
281
511
|
|
282
512
|
* No changes.
|
283
513
|
|
284
514
|
|
285
|
-
## Rails
|
515
|
+
## Rails 7.0.2 (February 08, 2022) ##
|
516
|
+
|
517
|
+
* Fix `PG.connect` keyword arguments deprecation warning on ruby 2.7.
|
518
|
+
|
519
|
+
*Nikita Vasilevsky*
|
520
|
+
|
521
|
+
* Fix the ability to exclude encryption params from being autofiltered.
|
522
|
+
|
523
|
+
*Mark Gangl*
|
286
524
|
|
287
|
-
*
|
288
|
-
to the connection session.
|
525
|
+
* Dump the precision for datetime columns following the new defaults.
|
289
526
|
|
290
527
|
*Rafael Mendonça França*
|
291
528
|
|
292
|
-
*
|
293
|
-
|
529
|
+
* Make sure encrypted attributes are not being filtered twice.
|
530
|
+
|
531
|
+
*Nikita Vasilevsky*
|
532
|
+
|
533
|
+
* Dump the database schema containing the current Rails version.
|
534
|
+
|
535
|
+
Since https://github.com/rails/rails/pull/42297, Rails now generate datetime columns
|
536
|
+
with a default precision of 6. This means that users upgrading to Rails 7.0 from 6.1,
|
537
|
+
when loading the database schema, would get the new precision value, which would not match
|
538
|
+
the production schema.
|
539
|
+
|
540
|
+
To avoid this the schema dumper will generate the new format which will include the Rails
|
541
|
+
version and will look like this:
|
542
|
+
|
543
|
+
```
|
544
|
+
ActiveRecord::Schema[7.0].define
|
545
|
+
```
|
546
|
+
|
547
|
+
When upgrading from Rails 6.1 to Rails 7.0, you can run the `rails app:update` task that will
|
548
|
+
set the current schema version to 6.1.
|
294
549
|
|
295
550
|
*Rafael Mendonça França*
|
296
551
|
|
297
|
-
* Fix
|
298
|
-
an `IN` clause.
|
552
|
+
* Fix parsing expression for PostgreSQL generated column.
|
299
553
|
|
300
|
-
*
|
554
|
+
*fatkodima*
|
301
555
|
|
302
|
-
*
|
303
|
-
|
556
|
+
* Fix `Mysql2::Error: Commands out of sync; you can't run this command now`
|
557
|
+
when bulk-inserting fixtures that exceed `max_allowed_packet` configuration.
|
304
558
|
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
|
559
|
+
*Nikita Vasilevsky*
|
560
|
+
|
561
|
+
* Fix error when saving an association with a relation named `record`.
|
562
|
+
|
563
|
+
*Dorian Marié*
|
564
|
+
|
565
|
+
* Fix `MySQL::SchemaDumper` behavior about datetime precision value.
|
566
|
+
|
567
|
+
*y0t4*
|
568
|
+
|
569
|
+
* Improve associated with no reflection error.
|
314
570
|
|
315
|
-
|
571
|
+
*Nikolai*
|
572
|
+
|
573
|
+
* Fix PG.connect keyword arguments deprecation warning on ruby 2.7.
|
574
|
+
|
575
|
+
Fixes #44307.
|
576
|
+
|
577
|
+
*Nikita Vasilevsky*
|
578
|
+
|
579
|
+
* Fix passing options to `check_constraint` from `change_table`.
|
580
|
+
|
581
|
+
*Frederick Cheung*
|
582
|
+
|
583
|
+
|
584
|
+
## Rails 7.0.1 (January 06, 2022) ##
|
585
|
+
|
586
|
+
|
587
|
+
* Change `QueryMethods#in_order_of` to drop records not listed in values.
|
588
|
+
|
589
|
+
`in_order_of` now filters down to the values provided, to match the behavior of the `Enumerable` version.
|
590
|
+
|
591
|
+
*Kevin Newton*
|
592
|
+
|
593
|
+
* Allow named expression indexes to be revertible.
|
594
|
+
|
595
|
+
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.
|
316
596
|
|
317
597
|
```ruby
|
318
|
-
|
319
|
-
.joins(:posts)
|
320
|
-
.group(:id)
|
321
|
-
.having('total_posts > 2')
|
322
|
-
.include?(Author.first)
|
598
|
+
add_index(:settings, "(data->'property')", using: :gin, name: :index_settings_data_property)
|
323
599
|
```
|
324
600
|
|
325
|
-
|
326
|
-
simplified #exists? query, which simply checks for the presence of
|
327
|
-
a having clause.
|
601
|
+
Fixes #43331.
|
328
602
|
|
329
|
-
|
603
|
+
*Oliver Günther*
|
330
604
|
|
331
|
-
|
605
|
+
* Better error messages when association name is invalid in the argument of `ActiveRecord::QueryMethods::WhereChain#missing`.
|
332
606
|
|
333
|
-
*
|
334
|
-
without Rails knowledge (e.g., if app gets kill -9d during long-running query or due to Rack::Timeout), app won't end
|
335
|
-
up in perpetual crash state for being inconsistent with Postgres.
|
607
|
+
*ykpythemind*
|
336
608
|
|
337
|
-
|
609
|
+
* Fix ordered migrations for single db in multi db environment.
|
338
610
|
|
611
|
+
*Himanshu*
|
339
612
|
|
340
|
-
|
613
|
+
* Extract `on update CURRENT_TIMESTAMP` for mysql2 adapter.
|
341
614
|
|
342
|
-
*
|
615
|
+
*Kazuhiro Masuda*
|
343
616
|
|
344
|
-
|
345
|
-
for validating the money format in the PostgreSQL adapter. This patch
|
346
|
-
fixes the regexp.
|
617
|
+
* Fix incorrect argument in PostgreSQL structure dump tasks.
|
347
618
|
|
348
|
-
|
619
|
+
Updating the `--no-comment` argument added in Rails 7 to the correct `--no-comments` argument.
|
349
620
|
|
350
|
-
|
621
|
+
*Alex Dent*
|
351
622
|
|
352
|
-
|
623
|
+
* Fix schema dumping column default SQL values for sqlite3.
|
624
|
+
|
625
|
+
*fatkodima*
|
626
|
+
|
627
|
+
* Correctly parse complex check constraint expressions for PostgreSQL.
|
628
|
+
|
629
|
+
*fatkodima*
|
630
|
+
|
631
|
+
* Fix `timestamptz` attributes on PostgreSQL handle blank inputs.
|
353
632
|
|
633
|
+
*Alex Ghiculescu*
|
634
|
+
|
635
|
+
* Fix migration compatibility to create SQLite references/belongs_to column as integer when migration version is 6.0.
|
636
|
+
|
637
|
+
Reference/belongs_to in migrations with version 6.0 were creating columns as
|
638
|
+
bigint instead of integer for the SQLite Adapter.
|
639
|
+
|
640
|
+
*Marcelo Lauxen*
|
354
641
|
|
355
|
-
|
642
|
+
* Fix joining through a polymorphic association.
|
643
|
+
|
644
|
+
*Alexandre Ruban*
|
645
|
+
|
646
|
+
* Fix `QueryMethods#in_order_of` to handle empty order list.
|
647
|
+
|
648
|
+
```ruby
|
649
|
+
Post.in_order_of(:id, []).to_a
|
650
|
+
```
|
356
651
|
|
357
|
-
|
652
|
+
Also more explicitly set the column as secondary order, so that any other
|
653
|
+
value is still ordered.
|
654
|
+
|
655
|
+
*Jean Boussier*
|
656
|
+
|
657
|
+
* Fix `rails dbconsole` for 3-tier config.
|
358
658
|
|
359
659
|
*Eileen M. Uchitelle*
|
360
660
|
|
361
|
-
*
|
661
|
+
* Fix quoting of column aliases generated by calculation methods.
|
362
662
|
|
363
|
-
|
364
|
-
|
365
|
-
rolledback putting things in a funky state.
|
663
|
+
Since the alias is derived from the table name, we can't assume the result
|
664
|
+
is a valid identifier.
|
366
665
|
|
367
|
-
|
666
|
+
```ruby
|
667
|
+
class Test < ActiveRecord::Base
|
668
|
+
self.table_name = '1abc'
|
669
|
+
end
|
670
|
+
Test.group(:id).count
|
671
|
+
# syntax error at or near "1" (ActiveRecord::StatementInvalid)
|
672
|
+
# LINE 1: SELECT COUNT(*) AS count_all, "1abc"."id" AS 1abc_id FROM "1...
|
673
|
+
```
|
368
674
|
|
369
|
-
*
|
675
|
+
*Jean Boussier*
|
370
676
|
|
371
|
-
* Fix malformed packet error in MySQL statement for connection configuration.
|
372
677
|
|
373
|
-
|
678
|
+
## Rails 7.0.0 (December 15, 2021) ##
|
374
679
|
|
375
|
-
*
|
376
|
-
adapter if the "url" protocol is "jdbc", "http", or "https". Previously only
|
377
|
-
urls with the "jdbc" prefix were passed to the Active Record Adapter, others
|
378
|
-
are assumed to be adapter specification urls.
|
680
|
+
* Better handle SQL queries with invalid encoding.
|
379
681
|
|
380
|
-
|
682
|
+
```ruby
|
683
|
+
Post.create(name: "broken \xC8 UTF-8")
|
684
|
+
```
|
381
685
|
|
382
|
-
|
686
|
+
Would cause all adapters to fail in a non controlled way in the code
|
687
|
+
responsible to detect write queries.
|
383
688
|
|
384
|
-
|
689
|
+
The query is now properly passed to the database connection, which might or might
|
690
|
+
not be able to handle it, but will either succeed or failed in a more correct way.
|
691
|
+
|
692
|
+
*Jean Boussier*
|
693
|
+
|
694
|
+
* Move database and shard selection config options to a generator.
|
695
|
+
|
696
|
+
Rather than generating the config options in `production.rb` when applications are created, applications can now run a generator to create an initializer and uncomment / update options as needed. All multi-db configuration can be implemented in this initializer.
|
385
697
|
|
386
698
|
*Eileen M. Uchitelle*
|
387
699
|
|
388
|
-
* Fix `find_by` with custom primary key for belongs_to association.
|
389
700
|
|
390
|
-
|
701
|
+
## Rails 7.0.0.rc3 (December 14, 2021) ##
|
702
|
+
|
703
|
+
* No changes.
|
704
|
+
|
705
|
+
|
706
|
+
## Rails 7.0.0.rc2 (December 14, 2021) ##
|
707
|
+
|
708
|
+
* No changes.
|
709
|
+
|
710
|
+
|
711
|
+
## Rails 7.0.0.rc1 (December 06, 2021) ##
|
712
|
+
|
713
|
+
* Remove deprecated `ActiveRecord::DatabaseConfigurations::DatabaseConfig#spec_name`.
|
714
|
+
|
715
|
+
*Rafael Mendonça França*
|
716
|
+
|
717
|
+
* Remove deprecated `ActiveRecord::Connection#in_clause_length`.
|
718
|
+
|
719
|
+
*Rafael Mendonça França*
|
720
|
+
|
721
|
+
* Remove deprecated `ActiveRecord::Connection#allowed_index_name_length`.
|
722
|
+
|
723
|
+
*Rafael Mendonça França*
|
724
|
+
|
725
|
+
* Remove deprecated `ActiveRecord::Base#remove_connection`.
|
391
726
|
|
392
|
-
*
|
727
|
+
*Rafael Mendonça França*
|
393
728
|
|
394
|
-
|
729
|
+
* Load STI Models in fixtures
|
395
730
|
|
396
|
-
|
731
|
+
Data from Fixtures now loads based on the specific class for models with
|
732
|
+
Single Table Inheritance. This affects enums defined in subclasses, previously
|
733
|
+
the value of these fields was not parsed and remained `nil`
|
397
734
|
|
398
|
-
*
|
735
|
+
*Andres Howard*
|
399
736
|
|
400
|
-
*
|
737
|
+
* `#authenticate` returns false when the password is blank instead of raising an error.
|
401
738
|
|
402
|
-
*
|
739
|
+
*Muhammad Muhammad Ibrahim*
|
403
740
|
|
741
|
+
* Fix `ActiveRecord::QueryMethods#in_order_of` behavior for integer enums.
|
404
742
|
|
405
|
-
|
743
|
+
`ActiveRecord::QueryMethods#in_order_of` didn't work as expected for enums stored as integers in the database when passing an array of strings or symbols as the order argument. This unexpected behavior occurred because the string or symbol values were not casted to match the integers in the database.
|
406
744
|
|
407
|
-
|
745
|
+
The following example now works as expected:
|
408
746
|
|
409
|
-
|
747
|
+
```ruby
|
748
|
+
class Book < ApplicationRecord
|
749
|
+
enum status: [:proposed, :written, :published]
|
750
|
+
end
|
410
751
|
|
411
|
-
|
752
|
+
Book.in_order_of(:status, %w[written published proposed])
|
753
|
+
```
|
412
754
|
|
413
|
-
*
|
755
|
+
*Alexandre Ruban*
|
414
756
|
|
415
|
-
*
|
757
|
+
* Ignore persisted in-memory records when merging target lists.
|
416
758
|
|
417
|
-
*
|
759
|
+
*Kevin Sjöberg*
|
418
760
|
|
419
|
-
*
|
761
|
+
* Add a new option `:update_only` to `upsert_all` to configure the list of columns to update in case of conflict.
|
420
762
|
|
421
|
-
|
763
|
+
Before, you could only customize the update SQL sentence via `:on_duplicate`. There is now a new option `:update_only` that lets you provide a list of columns to update in case of conflict:
|
422
764
|
|
423
|
-
|
765
|
+
```ruby
|
766
|
+
Commodity.upsert_all(
|
767
|
+
[
|
768
|
+
{ id: 2, name: "Copper", price: 4.84 },
|
769
|
+
{ id: 4, name: "Gold", price: 1380.87 },
|
770
|
+
{ id: 6, name: "Aluminium", price: 0.35 }
|
771
|
+
],
|
772
|
+
update_only: [:price] # Only prices will be updated
|
773
|
+
)
|
774
|
+
```
|
424
775
|
|
425
|
-
*
|
776
|
+
*Jorge Manrubia*
|
426
777
|
|
427
|
-
*
|
778
|
+
* Remove deprecated `ActiveRecord::Result#map!` and `ActiveRecord::Result#collect!`.
|
428
779
|
|
429
|
-
*
|
780
|
+
*Rafael Mendonça França*
|
430
781
|
|
431
|
-
*
|
782
|
+
* Remove deprecated `ActiveRecord::Base.configurations.to_h`.
|
432
783
|
|
433
784
|
*Rafael Mendonça França*
|
434
785
|
|
435
|
-
*
|
786
|
+
* Remove deprecated `ActiveRecord::Base.configurations.default_hash`.
|
436
787
|
|
437
|
-
*
|
788
|
+
*Rafael Mendonça França*
|
438
789
|
|
439
|
-
*
|
790
|
+
* Remove deprecated `ActiveRecord::Base.arel_attribute`.
|
440
791
|
|
441
|
-
*
|
792
|
+
*Rafael Mendonça França*
|
442
793
|
|
443
|
-
*
|
794
|
+
* Remove deprecated `ActiveRecord::Base.connection_config`.
|
444
795
|
|
445
|
-
|
446
|
-
to throw an error saying :polymorphic would not be a valid option.
|
796
|
+
*Rafael Mendonça França*
|
447
797
|
|
448
|
-
|
798
|
+
* Filter attributes in SQL logs
|
449
799
|
|
450
|
-
|
800
|
+
Previously, SQL queries in logs containing `ActiveRecord::Base.filter_attributes` were not filtered.
|
451
801
|
|
452
|
-
|
802
|
+
Now, the filter attributes will be masked `[FILTERED]` in the logs when `prepared_statement` is enabled.
|
453
803
|
|
454
|
-
|
455
|
-
|
456
|
-
|
804
|
+
```
|
805
|
+
# Before:
|
806
|
+
Foo Load (0.2ms) SELECT "foos".* FROM "foos" WHERE "foos"."passw" = ? LIMIT ? [["passw", "hello"], ["LIMIT", 1]]
|
457
807
|
|
458
|
-
|
459
|
-
|
808
|
+
# After:
|
809
|
+
Foo Load (0.5ms) SELECT "foos".* FROM "foos" WHERE "foos"."passw" = ? LIMIT ? [["passw", "[FILTERED]"], ["LIMIT", 1]]
|
460
810
|
```
|
461
811
|
|
462
|
-
*
|
812
|
+
*Aishwarya Subramanian*
|
463
813
|
|
814
|
+
* Remove deprecated `Tasks::DatabaseTasks.spec`.
|
464
815
|
|
465
|
-
|
816
|
+
*Rafael Mendonça França*
|
466
817
|
|
467
|
-
*
|
818
|
+
* Remove deprecated `Tasks::DatabaseTasks.current_config`.
|
468
819
|
|
469
|
-
|
820
|
+
*Rafael Mendonça França*
|
470
821
|
|
471
|
-
|
822
|
+
* Deprecate `Tasks::DatabaseTasks.schema_file_type`.
|
472
823
|
|
473
|
-
*
|
824
|
+
*Rafael Mendonça França*
|
825
|
+
|
826
|
+
* Remove deprecated `Tasks::DatabaseTasks.dump_filename`.
|
474
827
|
|
475
828
|
*Rafael Mendonça França*
|
476
829
|
|
477
|
-
*
|
830
|
+
* Remove deprecated `Tasks::DatabaseTasks.schema_file`.
|
831
|
+
|
832
|
+
*Rafael Mendonça França*
|
478
833
|
|
479
|
-
|
834
|
+
* Remove deprecated `environment` and `name` arguments from `Tasks::DatabaseTasks.schema_up_to_date?`.
|
480
835
|
|
481
|
-
*
|
836
|
+
*Rafael Mendonça França*
|
482
837
|
|
483
|
-
*
|
838
|
+
* Merging conditions on the same column no longer maintain both conditions,
|
839
|
+
and will be consistently replaced by the latter condition.
|
484
840
|
|
485
841
|
```ruby
|
486
|
-
|
487
|
-
|
842
|
+
# Rails 6.1 (IN clause is replaced by merger side equality condition)
|
843
|
+
Author.where(id: [david.id, mary.id]).merge(Author.where(id: bob)) # => [bob]
|
844
|
+
# Rails 6.1 (both conflict conditions exists, deprecated)
|
845
|
+
Author.where(id: david.id..mary.id).merge(Author.where(id: bob)) # => []
|
846
|
+
# Rails 6.1 with rewhere to migrate to Rails 7.0's behavior
|
847
|
+
Author.where(id: david.id..mary.id).merge(Author.where(id: bob), rewhere: true) # => [bob]
|
848
|
+
# Rails 7.0 (same behavior with IN clause, mergee side condition is consistently replaced)
|
849
|
+
Author.where(id: [david.id, mary.id]).merge(Author.where(id: bob)) # => [bob]
|
850
|
+
Author.where(id: david.id..mary.id).merge(Author.where(id: bob)) # => [bob]
|
488
851
|
|
489
|
-
|
490
|
-
@author = author
|
491
|
-
end
|
492
|
-
end
|
852
|
+
*Rafael Mendonça França*
|
493
853
|
|
494
|
-
|
495
|
-
```
|
854
|
+
* Remove deprecated support to `Model.reorder(nil).first` to search using non-deterministic order.
|
496
855
|
|
497
|
-
*
|
856
|
+
*Rafael Mendonça França*
|
498
857
|
|
499
|
-
*
|
858
|
+
* Remove deprecated rake tasks:
|
500
859
|
|
501
|
-
|
860
|
+
* `db:schema:load_if_ruby`
|
861
|
+
* `db:structure:dump`
|
862
|
+
* `db:structure:load`
|
863
|
+
* `db:structure:load_if_sql`
|
864
|
+
* `db:structure:dump:#{name}`
|
865
|
+
* `db:structure:load:#{name}`
|
866
|
+
* `db:test:load_structure`
|
867
|
+
* `db:test:load_structure:#{name}`
|
502
868
|
|
503
|
-
|
869
|
+
*Rafael Mendonça França*
|
504
870
|
|
505
|
-
|
506
|
-
MealsRecord.connected_to(role: :reading) do
|
507
|
-
Dog.first # read from animals replica
|
508
|
-
Dinner.first # read from meals replica
|
509
|
-
Person.first # read from primary writer
|
510
|
-
end
|
511
|
-
end
|
871
|
+
* Remove deprecated `DatabaseConfig#config` method.
|
512
872
|
|
513
|
-
|
873
|
+
*Rafael Mendonça França*
|
514
874
|
|
515
|
-
|
516
|
-
Dog.first # read from animals replica
|
517
|
-
Dinner.first # read from meals replica
|
518
|
-
Person.first # read from primary writer
|
519
|
-
end
|
875
|
+
* Rollback transactions when the block returns earlier than expected.
|
520
876
|
|
521
|
-
|
877
|
+
Before this change, when a transaction block returned early, the transaction would be committed.
|
878
|
+
|
879
|
+
The problem is that timeouts triggered inside the transaction block was also making the incomplete transaction
|
880
|
+
to be committed, so in order to avoid this mistake, the transaction block is rolled back.
|
522
881
|
|
523
|
-
*
|
882
|
+
*Rafael Mendonça França*
|
524
883
|
|
525
|
-
|
884
|
+
* Add middleware for automatic shard swapping.
|
526
885
|
|
527
|
-
|
886
|
+
Provides a basic middleware to perform automatic shard swapping. Applications will provide a resolver which will determine for an individual request which shard should be used. Example:
|
528
887
|
|
529
|
-
|
888
|
+
```ruby
|
889
|
+
config.active_record.shard_resolver = ->(request) {
|
890
|
+
subdomain = request.subdomain
|
891
|
+
tenant = Tenant.find_by_subdomain!(subdomain)
|
892
|
+
tenant.shard
|
893
|
+
}
|
894
|
+
```
|
530
895
|
|
531
|
-
|
896
|
+
See guides for more details.
|
532
897
|
|
533
|
-
|
898
|
+
*Eileen M. Uchitelle*, *John Crepezzi*
|
534
899
|
|
535
|
-
|
900
|
+
* Remove deprecated support to pass a column to `type_cast`.
|
536
901
|
|
537
|
-
*
|
902
|
+
*Rafael Mendonça França*
|
538
903
|
|
539
|
-
|
904
|
+
* Remove deprecated support to type cast to database values `ActiveRecord::Base` objects.
|
540
905
|
|
541
|
-
|
906
|
+
*Rafael Mendonça França*
|
542
907
|
|
543
|
-
|
908
|
+
* Remove deprecated support to quote `ActiveRecord::Base` objects.
|
544
909
|
|
545
|
-
*
|
910
|
+
*Rafael Mendonça França*
|
546
911
|
|
547
|
-
*
|
548
|
-
no longer enforce case sensitive comparison by default.
|
912
|
+
* Remove deprecacated support to resolve connection using `"primary"` as connection specification name.
|
549
913
|
|
550
|
-
*
|
914
|
+
*Rafael Mendonça França*
|
551
915
|
|
552
|
-
* Remove
|
916
|
+
* Remove deprecation warning when using `:interval` column is used in PostgreSQL database.
|
553
917
|
|
554
|
-
`
|
555
|
-
`table_name_length`
|
556
|
-
`columns_per_table`
|
557
|
-
`indexes_per_table`
|
558
|
-
`columns_per_multicolumn_index`
|
559
|
-
`sql_query_length`
|
560
|
-
`joins_per_query`
|
918
|
+
Now, interval columns will return `ActiveSupport::Duration` objects instead of strings.
|
561
919
|
|
562
|
-
|
920
|
+
To keep the old behavior, you can add this line to your model:
|
563
921
|
|
564
|
-
|
922
|
+
```ruby
|
923
|
+
attribute :column, :string
|
924
|
+
```
|
565
925
|
|
566
926
|
*Rafael Mendonça França*
|
567
927
|
|
568
|
-
* Remove deprecated `ActiveRecord::
|
928
|
+
* Remove deprecated support to YAML load `ActiveRecord::Base` instance in the Rails 4.2 and 4.1 formats.
|
569
929
|
|
570
930
|
*Rafael Mendonça França*
|
571
931
|
|
572
|
-
* Remove deprecated `
|
932
|
+
* Remove deprecated option `:spec_name` in the `configs_for` method.
|
573
933
|
|
574
934
|
*Rafael Mendonça França*
|
575
935
|
|
576
|
-
* Remove deprecated
|
936
|
+
* Remove deprecated `ActiveRecord::Base.allow_unsafe_raw_sql`.
|
577
937
|
|
578
938
|
*Rafael Mendonça França*
|
579
939
|
|
580
|
-
*
|
940
|
+
* Fix regression bug that caused ignoring additional conditions for preloading has_many-through relations.
|
581
941
|
|
582
|
-
|
942
|
+
Fixes #43132
|
583
943
|
|
584
|
-
*
|
944
|
+
*Alexander Pauly*
|
585
945
|
|
586
|
-
|
946
|
+
* Fix `has_many` inversing recursion on models with recursive associations.
|
587
947
|
|
588
|
-
*
|
589
|
-
in initialization block and callbacks.
|
948
|
+
*Gannon McGibbon*
|
590
949
|
|
591
|
-
|
950
|
+
* Add `accepts_nested_attributes_for` support for `delegated_type`
|
592
951
|
|
593
|
-
|
594
|
-
|
595
|
-
|
952
|
+
```ruby
|
953
|
+
class Entry < ApplicationRecord
|
954
|
+
delegated_type :entryable, types: %w[ Message Comment ]
|
955
|
+
accepts_nested_attributes_for :entryable
|
956
|
+
end
|
596
957
|
|
597
|
-
|
958
|
+
entry = Entry.create(entryable_type: 'Message', entryable_attributes: { content: 'Hello world' })
|
959
|
+
# => #<Entry:0x00>
|
960
|
+
# id: 1
|
961
|
+
# entryable_id: 1,
|
962
|
+
# entryable_type: 'Message'
|
963
|
+
# ...>
|
964
|
+
|
965
|
+
entry.entryable
|
966
|
+
# => #<Message:0x01>
|
967
|
+
# id: 1
|
968
|
+
# content: 'Hello world'
|
969
|
+
# ...>
|
970
|
+
```
|
598
971
|
|
599
|
-
|
600
|
-
User.find_by(name: "David") # => #<User name: "David", ...>
|
601
|
-
end
|
972
|
+
Previously it would raise an error:
|
602
973
|
|
603
|
-
|
974
|
+
```ruby
|
975
|
+
Entry.create(entryable_type: 'Message', entryable_attributes: { content: 'Hello world' })
|
976
|
+
# ArgumentError: Cannot build association `entryable'. Are you trying to build a polymorphic one-to-one association?
|
977
|
+
```
|
604
978
|
|
605
|
-
*
|
979
|
+
*Sjors Baltus*
|
606
980
|
|
607
|
-
|
608
|
-
scope :david, -> { User.where(name: "David") }
|
609
|
-
end
|
981
|
+
* Use subquery for DELETE with GROUP_BY and HAVING clauses.
|
610
982
|
|
611
|
-
|
983
|
+
Prior to this change, deletes with GROUP_BY and HAVING were returning an error.
|
612
984
|
|
613
|
-
|
614
|
-
# SELECT * FROM users WHERE name = 'John' AND name = 'David'
|
985
|
+
After this change, GROUP_BY and HAVING are valid clauses in DELETE queries, generating the following query:
|
615
986
|
|
616
|
-
|
987
|
+
```sql
|
988
|
+
DELETE FROM "posts" WHERE "posts"."id" IN (
|
989
|
+
SELECT "posts"."id" FROM "posts" INNER JOIN "comments" ON "comments"."post_id" = "posts"."id" GROUP BY "posts"."id" HAVING (count(comments.id) >= 2))
|
990
|
+
) [["flagged", "t"]]
|
991
|
+
```
|
617
992
|
|
618
|
-
|
619
|
-
# SELECT * FROM users WHERE name = 'David'
|
993
|
+
*Ignacio Chiazzo Cardarello*
|
620
994
|
|
621
|
-
|
995
|
+
* Use subquery for UPDATE with GROUP_BY and HAVING clauses.
|
622
996
|
|
623
|
-
|
997
|
+
Prior to this change, updates with GROUP_BY and HAVING were being ignored, generating a SQL like this:
|
624
998
|
|
625
|
-
|
626
|
-
|
627
|
-
|
628
|
-
|
629
|
-
|
999
|
+
```sql
|
1000
|
+
UPDATE "posts" SET "flagged" = ? WHERE "posts"."id" IN (
|
1001
|
+
SELECT "posts"."id" FROM "posts" INNER JOIN "comments" ON "comments"."post_id" = "posts"."id"
|
1002
|
+
) [["flagged", "t"]]
|
1003
|
+
```
|
630
1004
|
|
631
|
-
|
1005
|
+
After this change, GROUP_BY and HAVING clauses are used as a subquery in updates, like this:
|
632
1006
|
|
633
|
-
|
1007
|
+
```sql
|
1008
|
+
UPDATE "posts" SET "flagged" = ? WHERE "posts"."id" IN (
|
1009
|
+
SELECT "posts"."id" FROM "posts" INNER JOIN "comments" ON "comments"."post_id" = "posts"."id"
|
1010
|
+
GROUP BY posts.id HAVING (count(comments.id) >= 2)
|
1011
|
+
) [["flagged", "t"]]
|
1012
|
+
```
|
634
1013
|
|
635
|
-
|
1014
|
+
*Ignacio Chiazzo Cardarello*
|
636
1015
|
|
637
|
-
|
638
|
-
# SELECT * FROM users WHERE name != 'Jon' AND role != 'admin'
|
1016
|
+
* Add support for setting the filename of the schema or structure dump in the database config.
|
639
1017
|
|
640
|
-
|
1018
|
+
Applications may now set their the filename or path of the schema / structure dump file in their database configuration.
|
641
1019
|
|
642
|
-
|
643
|
-
|
1020
|
+
```yaml
|
1021
|
+
production:
|
1022
|
+
primary:
|
1023
|
+
database: my_db
|
1024
|
+
schema_dump: my_schema_dump_filename.rb
|
1025
|
+
animals:
|
1026
|
+
database: animals_db
|
1027
|
+
schema_dump: false
|
1028
|
+
```
|
644
1029
|
|
645
|
-
|
1030
|
+
The filename set in `schema_dump` will be used by the application. If set to `false` the schema will not be dumped. The database tasks are responsible for adding the database directory to the filename. If a full path is provided, the Rails tasks will use that instead of `ActiveRecord::DatabaseTasks.db_dir`.
|
646
1031
|
|
647
|
-
*
|
1032
|
+
*Eileen M. Uchitelle*, *Ryan Kerr*
|
648
1033
|
|
649
|
-
|
1034
|
+
* Add `ActiveRecord::Base.prohibit_shard_swapping` to prevent attempts to change the shard within a block.
|
650
1035
|
|
651
|
-
*
|
1036
|
+
*John Crepezzi*, *Eileen M. Uchitelle*
|
652
1037
|
|
653
|
-
|
1038
|
+
* Filter unchanged attributes with default function from insert query when `partial_inserts` is disabled.
|
654
1039
|
|
655
|
-
*
|
1040
|
+
*Akshay Birajdar*, *Jacopo Beschi*
|
656
1041
|
|
657
|
-
|
1042
|
+
* Add support for FILTER clause (SQL:2003) to Arel.
|
658
1043
|
|
659
|
-
|
660
|
-
message using `config.active_record.suppress_multiple_database_warning`.
|
1044
|
+
Currently supported by PostgreSQL 9.4+ and SQLite 3.30+.
|
661
1045
|
|
662
|
-
*
|
1046
|
+
*Andrey Novikov*
|
663
1047
|
|
664
|
-
*
|
1048
|
+
* Automatically set timestamps on record creation during bulk insert/upsert
|
665
1049
|
|
666
|
-
|
1050
|
+
Prior to this change, only updates during an upsert operation (e.g. `upsert_all`) would touch timestamps (`updated_{at,on}`). Now, record creations also touch timestamp columns (`{created,updated}_{at,on}`).
|
667
1051
|
|
668
|
-
|
1052
|
+
This behaviour is controlled by the `<model>.record_timestamps` config, matching the behaviour of `create`, `update`, etc. It can also be overridden by using the `record_timestamps:` keyword argument.
|
669
1053
|
|
670
|
-
|
1054
|
+
Note that this means `upsert_all` on models with `record_timestamps = false` will no longer touch `updated_{at,on}` automatically.
|
671
1055
|
|
672
|
-
|
673
|
-
ActiveRecord::Base.connected_to(role: :reading) do
|
674
|
-
User.first # reads from default replica
|
675
|
-
Dog.first # reads from default replica
|
1056
|
+
*Sam Bostock*
|
676
1057
|
|
677
|
-
|
678
|
-
User.first # reads from default replica
|
679
|
-
Dog.first # reads from shard one primary
|
680
|
-
end
|
1058
|
+
* Don't require `role` when passing `shard` to `connected_to`.
|
681
1059
|
|
682
|
-
|
683
|
-
Dog.first # reads from default replica
|
1060
|
+
`connected_to` can now be called with a `shard` only. Note that `role` is still inherited if `connected_to` calls are nested.
|
684
1061
|
|
685
|
-
|
686
|
-
|
687
|
-
|
688
|
-
|
1062
|
+
*Eileen M. Uchitelle*
|
1063
|
+
|
1064
|
+
* Add option to lazily load the schema cache on the connection.
|
1065
|
+
|
1066
|
+
Previously, the only way to load the schema cache in Active Record was through the Railtie on boot. This option provides the ability to load the schema cache on the connection after it's been established. Loading the cache lazily on the connection can be beneficial for Rails applications that use multiple databases because it will load the cache at the time the connection is established. Currently Railties doesn't have access to the connections before boot.
|
1067
|
+
|
1068
|
+
To use the cache, set `config.active_record.lazily_load_schema_cache = true` in your application configuration. In addition a `schema_cache_path` should be set in your database configuration if you don't want to use the default "db/schema_cache.yml" path.
|
1069
|
+
|
1070
|
+
*Eileen M. Uchitelle*
|
1071
|
+
|
1072
|
+
* Allow automatic `inverse_of` detection for associations with scopes.
|
1073
|
+
|
1074
|
+
Automatic `inverse_of` detection now works for associations with scopes. For
|
1075
|
+
example, the `comments` association here now automatically detects
|
1076
|
+
`inverse_of: :post`, so we don't need to pass that option:
|
1077
|
+
|
1078
|
+
```ruby
|
1079
|
+
class Post < ActiveRecord::Base
|
1080
|
+
has_many :comments, -> { visible }
|
1081
|
+
end
|
1082
|
+
|
1083
|
+
class Comment < ActiveRecord::Base
|
1084
|
+
belongs_to :post
|
689
1085
|
end
|
690
1086
|
```
|
691
1087
|
|
692
|
-
|
1088
|
+
Note that the automatic detection still won't work if the inverse
|
1089
|
+
association has a scope. In this example a scope on the `post` association
|
1090
|
+
would still prevent Rails from finding the inverse for the `comments`
|
1091
|
+
association.
|
1092
|
+
|
1093
|
+
This will be the default for new apps in Rails 7. To opt in:
|
1094
|
+
|
1095
|
+
```ruby
|
1096
|
+
config.active_record.automatic_scope_inversing = true
|
1097
|
+
```
|
1098
|
+
|
1099
|
+
*Daniel Colson*, *Chris Bloom*
|
1100
|
+
|
1101
|
+
* Accept optional transaction args to `ActiveRecord::Locking::Pessimistic#with_lock`
|
693
1102
|
|
694
|
-
|
1103
|
+
`#with_lock` now accepts transaction options like `requires_new:`,
|
1104
|
+
`isolation:`, and `joinable:`
|
695
1105
|
|
696
|
-
*
|
1106
|
+
*John Mileham*
|
697
1107
|
|
698
|
-
*
|
1108
|
+
* Adds support for deferrable foreign key constraints in PostgreSQL.
|
699
1109
|
|
700
|
-
|
1110
|
+
By default, foreign key constraints in PostgreSQL are checked after each statement. This works for most use cases,
|
1111
|
+
but becomes a major limitation when creating related records before the parent record is inserted into the database.
|
1112
|
+
One example of this is looking up / creating a person via one or more unique alias.
|
701
1113
|
|
702
1114
|
```ruby
|
703
|
-
|
704
|
-
|
705
|
-
|
1115
|
+
Person.transaction do
|
1116
|
+
alias = Alias
|
1117
|
+
.create_with(user_id: SecureRandom.uuid)
|
1118
|
+
.create_or_find_by(name: "DHH")
|
1119
|
+
|
1120
|
+
person = Person
|
1121
|
+
.create_with(name: "David Heinemeier Hansson")
|
1122
|
+
.create_or_find_by(id: alias.user_id)
|
1123
|
+
end
|
706
1124
|
```
|
707
1125
|
|
708
|
-
|
1126
|
+
Using the default behavior, the transaction would fail when executing the first `INSERT` statement.
|
709
1127
|
|
710
|
-
|
1128
|
+
By passing the `:deferrable` option to the `add_foreign_key` statement in migrations, it's possible to defer this
|
1129
|
+
check.
|
711
1130
|
|
712
|
-
|
1131
|
+
```ruby
|
1132
|
+
add_foreign_key :aliases, :person, deferrable: true
|
1133
|
+
```
|
713
1134
|
|
714
|
-
|
1135
|
+
Passing `deferrable: true` doesn't change the default behavior, but allows manually deferring the check using
|
1136
|
+
`SET CONSTRAINTS ALL DEFERRED` within a transaction. This will cause the foreign keys to be checked after the
|
1137
|
+
transaction.
|
715
1138
|
|
716
|
-
|
1139
|
+
It's also possible to adjust the default behavior from an immediate check (after the statement), to a deferred check
|
1140
|
+
(after the transaction):
|
717
1141
|
|
718
1142
|
```ruby
|
719
|
-
|
720
|
-
validates_uniqueness_of :title, conditions: ->(article) {
|
721
|
-
published_at = article.published_at
|
722
|
-
where(published_at: published_at.beginning_of_year..published_at.end_of_year)
|
723
|
-
}
|
724
|
-
end
|
1143
|
+
add_foreign_key :aliases, :person, deferrable: :deferred
|
725
1144
|
```
|
726
1145
|
|
727
|
-
*
|
1146
|
+
*Benedikt Deicke*
|
1147
|
+
|
1148
|
+
* Allow configuring Postgres password through the socket URL.
|
1149
|
+
|
1150
|
+
For example:
|
1151
|
+
```ruby
|
1152
|
+
ActiveRecord::DatabaseConfigurations::UrlConfig.new(
|
1153
|
+
:production, :production, 'postgres:///?user=user&password=secret&dbname=app', {}
|
1154
|
+
).configuration_hash
|
1155
|
+
```
|
728
1156
|
|
729
|
-
|
730
|
-
total number of rows affected, just like their non-batched counterparts.
|
1157
|
+
will now return,
|
731
1158
|
|
732
1159
|
```ruby
|
733
|
-
|
734
|
-
Person.in_batches.delete_all # => 42
|
1160
|
+
{ :user=>"user", :password=>"secret", :dbname=>"app", :adapter=>"postgresql" }
|
735
1161
|
```
|
736
1162
|
|
737
|
-
|
1163
|
+
*Abeid Ahmed*
|
738
1164
|
|
739
|
-
|
1165
|
+
* PostgreSQL: support custom enum types
|
740
1166
|
|
741
|
-
|
742
|
-
`ActiveSupport::Duration` when loading records from database and
|
743
|
-
serialization to ISO 8601 formatted duration string on save.
|
744
|
-
Add support to define a column in migrations and get it in a schema dump.
|
745
|
-
Optional column precision is supported.
|
1167
|
+
In migrations, use `create_enum` to add a new enum type, and `t.enum` to add a column.
|
746
1168
|
|
747
|
-
|
1169
|
+
```ruby
|
1170
|
+
def up
|
1171
|
+
create_enum :mood, ["happy", "sad"]
|
748
1172
|
|
749
|
-
|
1173
|
+
change_table :cats do |t|
|
1174
|
+
t.enum :current_mood, enum_type: "mood", default: "happy", null: false
|
1175
|
+
end
|
1176
|
+
end
|
1177
|
+
```
|
750
1178
|
|
751
|
-
|
1179
|
+
Enums will be presented correctly in `schema.rb`. Note that this is only supported by
|
1180
|
+
the PostgreSQL adapter.
|
752
1181
|
|
753
|
-
|
1182
|
+
*Alex Ghiculescu*
|
754
1183
|
|
755
|
-
|
1184
|
+
* Avoid COMMENT statements in PostgreSQL structure dumps
|
756
1185
|
|
757
|
-
|
758
|
-
|
759
|
-
t.interval :duration
|
760
|
-
end
|
1186
|
+
COMMENT statements are now omitted from the output of `db:structure:dump` when using PostgreSQL >= 11.
|
1187
|
+
This allows loading the dump without a pgsql superuser account.
|
761
1188
|
|
762
|
-
|
763
|
-
attribute :duration, :interval
|
764
|
-
end
|
1189
|
+
Fixes #36816, #43107.
|
765
1190
|
|
766
|
-
|
767
|
-
Event.last.duration # => 2 days
|
768
|
-
Event.last.duration.iso8601 # => "P2D"
|
769
|
-
Event.new(duration: 'P1DT12H3S').duration # => 1 day, 12 hours, and 3 seconds
|
770
|
-
Event.new(duration: '1 day') # Unknown value will be ignored and NULL will be written to database
|
1191
|
+
*Janosch Müller*
|
771
1192
|
|
772
|
-
|
1193
|
+
* Add support for generated columns in PostgreSQL adapter
|
773
1194
|
|
774
|
-
|
1195
|
+
Generated columns are supported since version 12.0 of PostgreSQL. This adds
|
1196
|
+
support of those to the PostgreSQL adapter.
|
775
1197
|
|
776
1198
|
```ruby
|
777
|
-
|
778
|
-
|
1199
|
+
create_table :users do |t|
|
1200
|
+
t.string :name
|
1201
|
+
t.virtual :name_upcased, type: :string, as: 'upper(name)', stored: true
|
779
1202
|
end
|
780
1203
|
```
|
781
1204
|
|
782
|
-
|
1205
|
+
*Michał Begejowicz*
|
783
1206
|
|
784
|
-
*DHH*, *George Claghorn*, *Cory Gwin*, *Rafael Mendonça França*, *Adrianna Chang*
|
785
1207
|
|
786
|
-
|
1208
|
+
## Rails 7.0.0.alpha2 (September 15, 2021) ##
|
787
1209
|
|
788
|
-
|
1210
|
+
* No changes.
|
789
1211
|
|
790
|
-
* `connects_to` can only be called on `ActiveRecord::Base` or abstract classes.
|
791
1212
|
|
792
|
-
|
1213
|
+
## Rails 7.0.0.alpha1 (September 15, 2021) ##
|
793
1214
|
|
794
|
-
|
1215
|
+
* Remove warning when overwriting existing scopes
|
795
1216
|
|
796
|
-
|
797
|
-
`ActiveRecord::StatementInvalid` when they encounter a connection error.
|
1217
|
+
Removes the following unnecessary warning message that appeared when overwriting existing scopes
|
798
1218
|
|
799
|
-
|
1219
|
+
```
|
1220
|
+
Creating scope :my_scope_name. Overwriting existing method "MyClass.my_scope_name" when overwriting existing scopes
|
1221
|
+
```
|
800
1222
|
|
801
|
-
*
|
802
|
-
`ActiveRecord::StatementInvalid` when it can't connect to the MySQL server.
|
1223
|
+
*Weston Ganger*
|
803
1224
|
|
804
|
-
|
1225
|
+
* Use full precision for `updated_at` in `insert_all`/`upsert_all`
|
805
1226
|
|
806
|
-
|
1227
|
+
`CURRENT_TIMESTAMP` provides differing precision depending on the database,
|
1228
|
+
and not all databases support explicitly specifying additional precision.
|
807
1229
|
|
808
|
-
|
1230
|
+
Instead, we delegate to the new `connection.high_precision_current_timestamp`
|
1231
|
+
for the SQL to produce a high precision timestamp on the current database.
|
809
1232
|
|
810
|
-
|
1233
|
+
Fixes #42992
|
811
1234
|
|
812
|
-
|
1235
|
+
*Sam Bostock*
|
813
1236
|
|
814
|
-
|
1237
|
+
* Add ssl support for postgresql database tasks
|
815
1238
|
|
816
|
-
|
1239
|
+
Add `PGSSLMODE`, `PGSSLCERT`, `PGSSLKEY` and `PGSSLROOTCERT` to pg_env from database config
|
1240
|
+
when running postgresql database tasks.
|
817
1241
|
|
818
|
-
```
|
819
|
-
|
820
|
-
enum label: [:default, :child]
|
821
|
-
has_many :children, class_name: "Comment", foreign_key: :parent_id
|
822
|
-
end
|
1242
|
+
```yaml
|
1243
|
+
# config/database.yml
|
823
1244
|
|
824
|
-
|
825
|
-
|
1245
|
+
production:
|
1246
|
+
sslmode: verify-full
|
1247
|
+
sslcert: client.crt
|
1248
|
+
sslkey: client.key
|
1249
|
+
sslrootcert: ca.crt
|
826
1250
|
```
|
827
1251
|
|
828
|
-
|
1252
|
+
Environment variables
|
829
1253
|
|
830
|
-
|
1254
|
+
```
|
1255
|
+
PGSSLMODE=verify-full
|
1256
|
+
PGSSLCERT=client.crt
|
1257
|
+
PGSSLKEY=client.key
|
1258
|
+
PGSSLROOTCERT=ca.crt
|
1259
|
+
```
|
831
1260
|
|
832
|
-
|
833
|
-
by `store_full_sti_class` class attribute.
|
1261
|
+
Fixes #42994
|
834
1262
|
|
835
|
-
|
1263
|
+
*Michael Bayucot*
|
836
1264
|
|
837
|
-
|
1265
|
+
* Avoid scoping update callbacks in `ActiveRecord::Relation#update!`.
|
838
1266
|
|
839
|
-
|
840
|
-
|
841
|
-
depending on `config.active_record.schema_format` configuration value.
|
1267
|
+
Making it consistent with how scoping is applied only to the query in `ActiveRecord::Relation#update`
|
1268
|
+
and not also to the callbacks from the update itself.
|
842
1269
|
|
843
|
-
*
|
1270
|
+
*Dylan Thacker-Smith*
|
844
1271
|
|
845
|
-
*
|
1272
|
+
* Fix 2 cases that inferred polymorphic class from the association's `foreign_type`
|
1273
|
+
using `String#constantize` instead of the model's `polymorphic_class_for`.
|
846
1274
|
|
847
|
-
|
848
|
-
|
849
|
-
|
850
|
-
post.body # => ActiveModel::MissingAttributeError
|
1275
|
+
When updating a polymorphic association, the old `foreign_type` was not inferred correctly when:
|
1276
|
+
1. `touch`ing the previously associated record
|
1277
|
+
2. updating the previously associated record's `counter_cache`
|
851
1278
|
|
852
|
-
|
853
|
-
post = Post.select("UPPER(title) AS title").eager_load(:comments).first
|
854
|
-
post.title # => "Welcome to the weblog"
|
855
|
-
post.body # => "Such a lovely day"
|
1279
|
+
*Jimmy Bourassa*
|
856
1280
|
|
857
|
-
|
858
|
-
post = Post.select("UPPER(title) AS title").eager_load(:comments).first
|
859
|
-
post.title # => "WELCOME TO THE WEBLOG"
|
860
|
-
post.body # => ActiveModel::MissingAttributeError
|
861
|
-
```
|
1281
|
+
* Add config option for ignoring tables when dumping the schema cache.
|
862
1282
|
|
863
|
-
|
1283
|
+
Applications can now be configured to ignore certain tables when dumping the schema cache.
|
864
1284
|
|
865
|
-
|
1285
|
+
The configuration option can table an array of tables:
|
866
1286
|
|
867
1287
|
```ruby
|
868
|
-
|
869
|
-
|
870
|
-
end
|
1288
|
+
config.active_record.schema_cache_ignored_tables = ["ignored_table", "another_ignored_table"]
|
1289
|
+
```
|
871
1290
|
|
872
|
-
|
873
|
-
Post.type_for_attribute(:written_at) # => #<Type::Value ... precision: nil, ...>
|
1291
|
+
Or a regex:
|
874
1292
|
|
875
|
-
|
876
|
-
|
1293
|
+
```ruby
|
1294
|
+
config.active_record.schema_cache_ignored_tables = [/^_/]
|
877
1295
|
```
|
878
1296
|
|
879
|
-
*
|
1297
|
+
*Eileen M. Uchitelle*
|
880
1298
|
|
881
|
-
*
|
1299
|
+
* Make schema cache methods return consistent results.
|
882
1300
|
|
883
|
-
|
884
|
-
|
885
|
-
|
886
|
-
|
1301
|
+
Previously the schema cache methods `primary_keys`, `columns`, `columns_hash`, and `indexes`
|
1302
|
+
would behave differently than one another when a table didn't exist and differently across
|
1303
|
+
database adapters. This change unifies the behavior so each method behaves the same regardless
|
1304
|
+
of adapter.
|
887
1305
|
|
888
|
-
|
889
|
-
```
|
1306
|
+
The behavior now is:
|
890
1307
|
|
891
|
-
|
1308
|
+
`columns`: (unchanged) raises a db error if the table does not exist.
|
1309
|
+
`columns_hash`: (unchanged) raises a db error if the table does not exist.
|
1310
|
+
`primary_keys`: (unchanged) returns `nil` if the table does not exist.
|
1311
|
+
`indexes`: (changed for mysql2) returns `[]` if the table does not exist.
|
892
1312
|
|
893
|
-
*
|
1313
|
+
*Eileen M. Uchitelle*
|
894
1314
|
|
895
|
-
|
1315
|
+
* Reestablish connection to previous database after after running `db:schema:load:name`
|
896
1316
|
|
897
|
-
|
898
|
-
allows you to specify that all string columns should be frozen unless
|
899
|
-
otherwise specified. This will reduce memory pressure for applications which
|
900
|
-
do not generally mutate string properties of Active Record objects.
|
1317
|
+
After running `db:schema:load:name` the previous connection is restored.
|
901
1318
|
|
902
|
-
*
|
1319
|
+
*Jacopo Beschi*
|
903
1320
|
|
904
|
-
*
|
1321
|
+
* Add database config option `database_tasks`
|
905
1322
|
|
906
|
-
|
1323
|
+
If you would like to connect to an external database without any database
|
1324
|
+
management tasks such as schema management, migrations, seeds, etc. you can set
|
1325
|
+
the per database config option `database_tasks: false`
|
907
1326
|
|
908
|
-
|
1327
|
+
```yaml
|
1328
|
+
# config/database.yml
|
909
1329
|
|
910
|
-
|
911
|
-
|
912
|
-
|
1330
|
+
production:
|
1331
|
+
primary:
|
1332
|
+
database: my_database
|
1333
|
+
adapter: mysql2
|
1334
|
+
animals:
|
1335
|
+
database: my_animals_database
|
1336
|
+
adapter: mysql2
|
1337
|
+
database_tasks: false
|
1338
|
+
```
|
913
1339
|
|
914
|
-
|
1340
|
+
*Weston Ganger*
|
915
1341
|
|
916
|
-
|
917
|
-
david_and_mary.or(mary_and_bob) # => [david, mary, bob]
|
918
|
-
```
|
1342
|
+
* Fix `ActiveRecord::InternalMetadata` to not be broken by `config.active_record.record_timestamps = false`
|
919
1343
|
|
920
|
-
|
1344
|
+
Since the model always create the timestamp columns, it has to set them, otherwise it breaks
|
1345
|
+
various DB management tasks.
|
921
1346
|
|
922
|
-
|
923
|
-
|
924
|
-
|
1347
|
+
Fixes #42983
|
1348
|
+
|
1349
|
+
* Add `ActiveRecord::QueryLogs`.
|
1350
|
+
|
1351
|
+
Configurable tags can be automatically added to all SQL queries generated by Active Record.
|
925
1352
|
|
926
1353
|
```ruby
|
927
|
-
#
|
928
|
-
|
1354
|
+
# config/application.rb
|
1355
|
+
module MyApp
|
1356
|
+
class Application < Rails::Application
|
1357
|
+
config.active_record.query_log_tags_enabled = true
|
1358
|
+
end
|
1359
|
+
end
|
1360
|
+
```
|
929
1361
|
|
930
|
-
|
931
|
-
Author.where(id: david.id..mary.id).merge(Author.where(id: bob)) # => []
|
1362
|
+
By default the application, controller and action details are added to the query tags:
|
932
1363
|
|
933
|
-
|
934
|
-
|
1364
|
+
```ruby
|
1365
|
+
class BooksController < ApplicationController
|
1366
|
+
def index
|
1367
|
+
@books = Book.all
|
1368
|
+
end
|
1369
|
+
end
|
1370
|
+
```
|
935
1371
|
|
936
|
-
|
937
|
-
|
938
|
-
|
1372
|
+
```ruby
|
1373
|
+
GET /books
|
1374
|
+
# SELECT * FROM books /*application:MyApp;controller:books;action:index*/
|
939
1375
|
```
|
940
1376
|
|
941
|
-
|
1377
|
+
Custom tags containing static values and Procs can be defined in the application configuration:
|
942
1378
|
|
943
|
-
|
1379
|
+
```ruby
|
1380
|
+
config.active_record.query_log_tags = [
|
1381
|
+
:application,
|
1382
|
+
:controller,
|
1383
|
+
:action,
|
1384
|
+
{
|
1385
|
+
custom_static: "foo",
|
1386
|
+
custom_dynamic: -> { Time.now }
|
1387
|
+
}
|
1388
|
+
]
|
1389
|
+
```
|
944
1390
|
|
945
|
-
*
|
1391
|
+
*Keeran Raj Hawoldar*, *Eileen M. Uchitelle*, *Kasper Timm Hansen*
|
946
1392
|
|
947
|
-
*
|
1393
|
+
* Added support for multiple databases to `rails db:setup` and `rails db:reset`.
|
948
1394
|
|
949
|
-
|
950
|
-
`ActiveRecord::Persistence.upsert_all` was used with the name of an expression index, an error
|
951
|
-
was raised. Adding a guard around the formatting behavior for the `:unique_by` corrects this.
|
1395
|
+
*Ryan Hall*
|
952
1396
|
|
953
|
-
|
1397
|
+
* Add `ActiveRecord::Relation#structurally_compatible?`.
|
1398
|
+
|
1399
|
+
Adds a query method by which a user can tell if the relation that they're
|
1400
|
+
about to use for `#or` or `#and` is structurally compatible with the
|
1401
|
+
receiver.
|
1402
|
+
|
1403
|
+
*Kevin Newton*
|
1404
|
+
|
1405
|
+
* Add `ActiveRecord::QueryMethods#in_order_of`.
|
1406
|
+
|
1407
|
+
This allows you to specify an explicit order that you'd like records
|
1408
|
+
returned in based on a SQL expression. By default, this will be accomplished
|
1409
|
+
using a case statement, as in:
|
954
1410
|
|
955
1411
|
```ruby
|
956
|
-
|
957
|
-
|
958
|
-
t.index "lower(name)", unique: true
|
959
|
-
end
|
1412
|
+
Post.in_order_of(:id, [3, 5, 1])
|
1413
|
+
```
|
960
1414
|
|
961
|
-
|
1415
|
+
will generate the SQL:
|
1416
|
+
|
1417
|
+
```sql
|
1418
|
+
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
|
962
1419
|
```
|
963
1420
|
|
964
|
-
|
1421
|
+
However, because this functionality is built into MySQL in the form of the
|
1422
|
+
`FIELD` function, that connection adapter will generate the following SQL
|
1423
|
+
instead:
|
965
1424
|
|
966
|
-
|
1425
|
+
```sql
|
1426
|
+
SELECT "posts".* FROM "posts" ORDER BY FIELD("posts"."id", 1, 5, 3) DESC
|
1427
|
+
```
|
967
1428
|
|
968
|
-
*
|
1429
|
+
*Kevin Newton*
|
969
1430
|
|
970
|
-
|
1431
|
+
* Fix `eager_loading?` when ordering with `Symbol`.
|
1432
|
+
|
1433
|
+
`eager_loading?` is triggered correctly when using `order` with symbols.
|
971
1434
|
|
972
1435
|
```ruby
|
973
|
-
|
974
|
-
|
1436
|
+
scope = Post.includes(:comments).order(:"comments.label")
|
1437
|
+
=> true
|
975
1438
|
```
|
976
1439
|
|
977
|
-
*
|
1440
|
+
*Jacopo Beschi*
|
978
1441
|
|
979
|
-
*
|
980
|
-
to enable/disable strict_loading mode by default for a model. The configuration's value is
|
981
|
-
inheritable by subclasses, but they can override that value and it will not impact parent class.
|
1442
|
+
* Two change tracking methods are added for `belongs_to` associations.
|
982
1443
|
|
983
|
-
|
1444
|
+
The `association_changed?` method (assuming an association named `:association`) returns true
|
1445
|
+
if a different associated object has been assigned and the foreign key will be updated in the
|
1446
|
+
next save.
|
984
1447
|
|
985
|
-
|
986
|
-
|
987
|
-
self.strict_loading_by_default = true
|
1448
|
+
The `association_previously_changed?` method returns true if the previous save updated the
|
1449
|
+
association to reference a different associated object.
|
988
1450
|
|
989
|
-
|
990
|
-
end
|
1451
|
+
*George Claghorn*
|
991
1452
|
|
992
|
-
|
993
|
-
dev.projects.first
|
994
|
-
# => ActiveRecord::StrictLoadingViolationError Exception: Developer is marked as strict_loading and Project cannot be lazily loaded.
|
995
|
-
```
|
1453
|
+
* Add option to disable schema dump per-database.
|
996
1454
|
|
997
|
-
|
1455
|
+
Dumping the schema is on by default for all databases in an application. To turn it off for a
|
1456
|
+
specific database, use the `schema_dump` option:
|
998
1457
|
|
999
|
-
|
1458
|
+
```yaml
|
1459
|
+
# config/database.yml
|
1000
1460
|
|
1001
|
-
|
1461
|
+
production:
|
1462
|
+
schema_dump: false
|
1463
|
+
```
|
1002
1464
|
|
1003
|
-
*
|
1465
|
+
*Luis Vasconcellos*, *Eileen M. Uchitelle*
|
1004
1466
|
|
1005
|
-
|
1467
|
+
* Fix `eager_loading?` when ordering with `Hash` syntax.
|
1468
|
+
|
1469
|
+
`eager_loading?` is triggered correctly when using `order` with hash syntax
|
1470
|
+
on an outer table.
|
1006
1471
|
|
1007
1472
|
```ruby
|
1008
|
-
|
1009
|
-
|
1473
|
+
Post.includes(:comments).order({ "comments.label": :ASC }).eager_loading?
|
1474
|
+
# => true
|
1010
1475
|
```
|
1011
1476
|
|
1012
|
-
|
1477
|
+
*Jacopo Beschi*
|
1478
|
+
|
1479
|
+
* Move the forcing of clear text encoding to the `ActiveRecord::Encryption::Encryptor`.
|
1480
|
+
|
1481
|
+
Fixes #42699.
|
1482
|
+
|
1483
|
+
*J Smith*
|
1484
|
+
|
1485
|
+
* `partial_inserts` is now disabled by default in new apps.
|
1486
|
+
|
1487
|
+
This will be the default for new apps in Rails 7. To opt in:
|
1013
1488
|
|
1014
1489
|
```ruby
|
1015
|
-
|
1016
|
-
end
|
1490
|
+
config.active_record.partial_inserts = true
|
1017
1491
|
```
|
1018
1492
|
|
1019
|
-
|
1493
|
+
If a migration removes the default value of a column, this option
|
1494
|
+
would cause old processes to no longer be able to create new records.
|
1020
1495
|
|
1021
|
-
|
1022
|
-
|
1496
|
+
If you need to remove a column, you should first use `ignored_columns`
|
1497
|
+
to stop using it.
|
1023
1498
|
|
1024
|
-
*
|
1499
|
+
*Jean Boussier*
|
1025
1500
|
|
1026
|
-
*
|
1501
|
+
* Rails can now verify foreign keys after loading fixtures in tests.
|
1027
1502
|
|
1028
|
-
|
1503
|
+
This will be the default for new apps in Rails 7. To opt in:
|
1029
1504
|
|
1030
1505
|
```ruby
|
1031
|
-
|
1032
|
-
|
1033
|
-
# duplicated group fields, deprecated.
|
1034
|
-
accounts.merge(accounts.where.not(credit_limit: nil)).sum(:credit_limit)
|
1035
|
-
# => {
|
1036
|
-
# [1, 1] => 50,
|
1037
|
-
# [2, 2] => 60
|
1038
|
-
# }
|
1039
|
-
|
1040
|
-
# use `uniq!(:group)` to deduplicate group fields.
|
1041
|
-
accounts.merge(accounts.where.not(credit_limit: nil)).uniq!(:group).sum(:credit_limit)
|
1042
|
-
# => {
|
1043
|
-
# 1 => 50,
|
1044
|
-
# 2 => 60
|
1045
|
-
# }
|
1506
|
+
config.active_record.verify_foreign_keys_for_fixtures = true
|
1046
1507
|
```
|
1047
1508
|
|
1048
|
-
|
1509
|
+
Tests will not run if there is a foreign key constraint violation in your fixture data.
|
1049
1510
|
|
1050
|
-
|
1511
|
+
The feature is supported by SQLite and PostgreSQL, other adapters can also add support for it.
|
1051
1512
|
|
1052
|
-
|
1513
|
+
*Alex Ghiculescu*
|
1053
1514
|
|
1054
|
-
|
1055
|
-
accounts = Account.where(id: [1, 2]).annotate("david and mary")
|
1515
|
+
* Clear cached `has_one` association after setting `belongs_to` association to `nil`.
|
1056
1516
|
|
1057
|
-
|
1058
|
-
|
1059
|
-
# SELECT accounts.* FROM accounts WHERE accounts.id = 3 /* david and mary */ /* david and mary */
|
1517
|
+
After setting a `belongs_to` relation to `nil` and updating an unrelated attribute on the owner,
|
1518
|
+
the owner should still return `nil` on the `has_one` relation.
|
1060
1519
|
|
1061
|
-
#
|
1062
|
-
accounts.merge(accounts.rewhere(id: 3)).uniq!(:annotate)
|
1063
|
-
# SELECT accounts.* FROM accounts WHERE accounts.id = 3 /* david and mary */
|
1064
|
-
```
|
1520
|
+
Fixes #42597.
|
1065
1521
|
|
1066
|
-
*
|
1522
|
+
*Michiel de Mare*
|
1067
1523
|
|
1068
|
-
*
|
1524
|
+
* OpenSSL constants are now used for Digest computations.
|
1069
1525
|
|
1070
|
-
|
1071
|
-
cache. This avoids raising an unnecessary `ActiveRecord::StaleObjectError`
|
1072
|
-
upon subsequent transactions by maintaining parity with the corresponding
|
1073
|
-
database record's `lock_version` column.
|
1526
|
+
*Dirkjan Bussink*
|
1074
1527
|
|
1075
|
-
|
1528
|
+
* Adds support for `if_not_exists` to `add_foreign_key` and `if_exists` to `remove_foreign_key`.
|
1076
1529
|
|
1077
|
-
|
1530
|
+
Applications can set their migrations to ignore exceptions raised when adding a foreign key
|
1531
|
+
that already exists or when removing a foreign key that does not exist.
|
1532
|
+
|
1533
|
+
Example Usage:
|
1078
1534
|
|
1079
|
-
|
1535
|
+
```ruby
|
1536
|
+
class AddAuthorsForeignKeyToArticles < ActiveRecord::Migration[7.0]
|
1537
|
+
def change
|
1538
|
+
add_foreign_key :articles, :authors, if_not_exists: true
|
1539
|
+
end
|
1540
|
+
end
|
1541
|
+
```
|
1080
1542
|
|
1081
1543
|
```ruby
|
1082
|
-
|
1544
|
+
class RemoveAuthorsForeignKeyFromArticles < ActiveRecord::Migration[7.0]
|
1545
|
+
def change
|
1546
|
+
remove_foreign_key :articles, :authors, if_exists: true
|
1547
|
+
end
|
1548
|
+
end
|
1549
|
+
```
|
1083
1550
|
|
1084
|
-
|
1085
|
-
david_and_mary.merge(Author.where(id: bob)) # => []
|
1551
|
+
*Roberto Miranda*
|
1086
1552
|
|
1087
|
-
|
1088
|
-
david_and_mary.merge(Author.rewhere(id: bob)) # => [bob]
|
1553
|
+
* Prevent polluting ENV during postgresql structure dump/load.
|
1089
1554
|
|
1090
|
-
|
1091
|
-
|
1092
|
-
|
1555
|
+
Some configuration parameters were provided to pg_dump / psql via
|
1556
|
+
environment variables which persisted beyond the command being run, and may
|
1557
|
+
have caused subsequent commands and connections to fail. Tasks running
|
1558
|
+
across multiple postgresql databases like `rails db:test:prepare` may have
|
1559
|
+
been affected.
|
1093
1560
|
|
1094
|
-
*
|
1561
|
+
*Samuel Cochran*
|
1095
1562
|
|
1096
|
-
*
|
1097
|
-
set to expire and scoped with a purpose. This is particularly useful for things like password reset
|
1098
|
-
or email verification, where you want the bearer of the signed id to be able to interact with the
|
1099
|
-
underlying record, but usually only within a certain time period.
|
1563
|
+
* Set precision 6 by default for `datetime` columns.
|
1100
1564
|
|
1101
|
-
|
1102
|
-
signed_id = User.first.signed_id expires_in: 15.minutes, purpose: :password_reset
|
1565
|
+
By default, datetime columns will have microseconds precision instead of seconds precision.
|
1103
1566
|
|
1104
|
-
|
1567
|
+
*Roberto Miranda*
|
1105
1568
|
|
1106
|
-
|
1107
|
-
User.find_signed signed_id, purpose: :password_reset # => nil, since the signed id has expired
|
1569
|
+
* Allow preloading of associations with instance dependent scopes.
|
1108
1570
|
|
1109
|
-
|
1110
|
-
User.find_signed signed_id, purpose: :password_reset # => User.first
|
1571
|
+
*John Hawthorn*, *John Crepezzi*, *Adam Hess*, *Eileen M. Uchitelle*, *Dinah Shi*
|
1111
1572
|
|
1112
|
-
|
1113
|
-
```
|
1573
|
+
* Do not try to rollback transactions that failed due to a `ActiveRecord::TransactionRollbackError`.
|
1114
1574
|
|
1115
|
-
*
|
1575
|
+
*Jamie McCarthy*
|
1116
1576
|
|
1117
|
-
*
|
1577
|
+
* Active Record Encryption will now encode values as UTF-8 when using deterministic
|
1578
|
+
encryption. The encoding is part of the encrypted payload, so different encodings for
|
1579
|
+
different values result in different ciphertexts. This can break unique constraints and
|
1580
|
+
queries.
|
1118
1581
|
|
1119
|
-
|
1582
|
+
The new behavior is configurable via `active_record.encryption.forced_encoding_for_deterministic_encryption`
|
1583
|
+
that is `Encoding::UTF_8` by default. It can be disabled by setting it to `nil`.
|
1120
1584
|
|
1121
|
-
*
|
1585
|
+
*Jorge Manrubia*
|
1122
1586
|
|
1123
|
-
|
1587
|
+
* The MySQL adapter now cast numbers and booleans bind parameters to string for safety reasons.
|
1124
1588
|
|
1125
|
-
|
1589
|
+
When comparing a string and a number in a query, MySQL converts the string to a number. So for
|
1590
|
+
instance `"foo" = 0`, will implicitly cast `"foo"` to `0` and will evaluate to `TRUE` which can
|
1591
|
+
lead to security vulnerabilities.
|
1126
1592
|
|
1127
|
-
|
1593
|
+
Active Record already protect against that vulnerability when it knows the type of the column
|
1594
|
+
being compared, however until now it was still vulnerable when using bind parameters:
|
1128
1595
|
|
1129
1596
|
```ruby
|
1130
|
-
|
1131
|
-
|
1132
|
-
|
1133
|
-
posts.count
|
1134
|
-
# => { false => 10 }
|
1597
|
+
User.where("login_token = ?", 0).first
|
1598
|
+
```
|
1135
1599
|
|
1136
|
-
|
1137
|
-
posts.unscope(where: :hidden).count
|
1138
|
-
# => { false => 11, true => 1 }
|
1600
|
+
Would perform:
|
1139
1601
|
|
1140
|
-
|
1141
|
-
|
1142
|
-
# => { false => 11 }
|
1602
|
+
```sql
|
1603
|
+
SELECT * FROM `users` WHERE `login_token` = 0 LIMIT 1;
|
1143
1604
|
```
|
1144
1605
|
|
1145
|
-
|
1606
|
+
Now it will perform:
|
1146
1607
|
|
1147
|
-
|
1608
|
+
```sql
|
1609
|
+
SELECT * FROM `users` WHERE `login_token` = '0' LIMIT 1;
|
1610
|
+
```
|
1148
1611
|
|
1149
|
-
|
1150
|
-
steve = Person.find_by(name: "Steve")
|
1151
|
-
david = Author.find_by(name: "David")
|
1612
|
+
*Jean Boussier*
|
1152
1613
|
|
1153
|
-
|
1614
|
+
* Fixture configurations (`_fixture`) are now strictly validated.
|
1154
1615
|
|
1155
|
-
|
1156
|
-
|
1616
|
+
If an error will be raised if that entry contains unknown keys while previously it
|
1617
|
+
would silently have no effects.
|
1157
1618
|
|
1158
|
-
|
1159
|
-
relation.rewhere(writer: david).to_a # => [david]
|
1160
|
-
```
|
1619
|
+
*Jean Boussier*
|
1161
1620
|
|
1162
|
-
|
1621
|
+
* Add `ActiveRecord::Base.update!` that works like `ActiveRecord::Base.update` but raises exceptions.
|
1163
1622
|
|
1164
|
-
|
1623
|
+
This allows for the same behavior as the instance method `#update!` at a class level.
|
1165
1624
|
|
1166
1625
|
```ruby
|
1167
|
-
|
1168
|
-
=> #<Knot id: 1, created_at: "2016-05-05 01:29:47.116928000 +0000">
|
1626
|
+
Person.update!(:all, state: "confirmed")
|
1169
1627
|
```
|
1170
1628
|
|
1171
|
-
*
|
1629
|
+
*Dorian Marié*
|
1172
1630
|
|
1173
|
-
*
|
1631
|
+
* Add `ActiveRecord::Base#attributes_for_database`.
|
1174
1632
|
|
1175
|
-
|
1633
|
+
Returns attributes with values for assignment to the database.
|
1176
1634
|
|
1177
|
-
*
|
1635
|
+
*Chris Salzberg*
|
1178
1636
|
|
1179
|
-
|
1637
|
+
* Use an empty query to check if the PostgreSQL connection is still active.
|
1180
1638
|
|
1181
|
-
|
1639
|
+
An empty query is faster than `SELECT 1`.
|
1182
1640
|
|
1183
|
-
*
|
1641
|
+
*Heinrich Lee Yu*
|
1184
1642
|
|
1185
|
-
*
|
1643
|
+
* Add `ActiveRecord::Base#previously_persisted?`.
|
1186
1644
|
|
1187
|
-
|
1645
|
+
Returns `true` if the object has been previously persisted but now it has been deleted.
|
1188
1646
|
|
1189
|
-
*
|
1647
|
+
* Deprecate `partial_writes` in favor of `partial_inserts` and `partial_updates`.
|
1190
1648
|
|
1191
|
-
|
1649
|
+
This allows to have a different behavior on update and create.
|
1192
1650
|
|
1193
|
-
*
|
1651
|
+
*Jean Boussier*
|
1194
1652
|
|
1195
|
-
*
|
1653
|
+
* Fix compatibility with `psych >= 4`.
|
1196
1654
|
|
1197
|
-
|
1655
|
+
Starting in Psych 4.0.0 `YAML.load` behaves like `YAML.safe_load`. To preserve compatibility,
|
1656
|
+
Active Record's schema cache loader and `YAMLColumn` now uses `YAML.unsafe_load` if available.
|
1198
1657
|
|
1199
|
-
*
|
1658
|
+
*Jean Boussier*
|
1200
1659
|
|
1201
|
-
|
1660
|
+
* `ActiveRecord::Base.logger` is now a `class_attribute`.
|
1202
1661
|
|
1203
|
-
|
1662
|
+
This means it can no longer be accessed directly through `@@logger`, and that setting `logger =`
|
1663
|
+
on a subclass won't change the parent's logger.
|
1204
1664
|
|
1205
|
-
*
|
1665
|
+
*Jean Boussier*
|
1206
1666
|
|
1207
|
-
|
1208
|
-
index won't be added.
|
1667
|
+
* Add `.asc.nulls_first` for all databases. Unfortunately MySQL still doesn't like `nulls_last`.
|
1209
1668
|
|
1210
|
-
|
1669
|
+
*Keenan Brock*
|
1211
1670
|
|
1212
|
-
|
1213
|
-
|
1214
|
-
|
1671
|
+
* Improve performance of `one?` and `many?` by limiting the generated count query to 2 results.
|
1672
|
+
|
1673
|
+
*Gonzalo Riestra*
|
1674
|
+
|
1675
|
+
* Don't check type when using `if_not_exists` on `add_column`.
|
1676
|
+
|
1677
|
+
Previously, if a migration called `add_column` with the `if_not_exists` option set to true
|
1678
|
+
the `column_exists?` check would look for a column with the same name and type as the migration.
|
1215
1679
|
|
1216
|
-
|
1217
|
-
|
1218
|
-
|
1680
|
+
Recently it was discovered that the type passed to the migration is not always the same type
|
1681
|
+
as the column after migration. For example a column set to `:mediumblob` in the migration will
|
1682
|
+
be casted to `binary` when calling `column.type`. Since there is no straightforward way to cast
|
1683
|
+
the type to the database type without running the migration, we opted to drop the type check from
|
1684
|
+
`add_column`. This means that migrations adding a duplicate column with a different type will no
|
1685
|
+
longer raise an error.
|
1219
1686
|
|
1220
|
-
*
|
1687
|
+
*Eileen M. Uchitelle*
|
1688
|
+
|
1689
|
+
* Log a warning message when running SQLite in production.
|
1221
1690
|
|
1222
|
-
|
1691
|
+
Using SQLite in production ENV is generally discouraged. SQLite is also the default adapter
|
1692
|
+
in a new Rails application.
|
1693
|
+
For the above reasons log a warning message when running SQLite in production.
|
1223
1694
|
|
1224
|
-
|
1695
|
+
The warning can be disabled by setting `config.active_record.sqlite3_production_warning=false`.
|
1225
1696
|
|
1226
|
-
*
|
1697
|
+
*Jacopo Beschi*
|
1227
1698
|
|
1228
|
-
|
1699
|
+
* Add option to disable joins for `has_one` associations.
|
1229
1700
|
|
1230
|
-
|
1701
|
+
In a multiple database application, associations can't join across
|
1702
|
+
databases. When set, this option instructs Rails to generate 2 or
|
1703
|
+
more queries rather than generating joins for `has_one` associations.
|
1231
1704
|
|
1232
|
-
|
1705
|
+
Set the option on a has one through association:
|
1233
1706
|
|
1234
1707
|
```ruby
|
1235
|
-
Person
|
1236
|
-
|
1708
|
+
class Person
|
1709
|
+
has_one :dog
|
1710
|
+
has_one :veterinarian, through: :dog, disable_joins: true
|
1237
1711
|
end
|
1238
1712
|
```
|
1239
1713
|
|
1240
|
-
|
1714
|
+
Then instead of generating join SQL, two queries are used for `@person.veterinarian`:
|
1715
|
+
|
1716
|
+
```
|
1717
|
+
SELECT "dogs"."id" FROM "dogs" WHERE "dogs"."person_id" = ? [["person_id", 1]]
|
1718
|
+
SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."dog_id" = ? [["dog_id", 1]]
|
1719
|
+
```
|
1241
1720
|
|
1242
|
-
*
|
1721
|
+
*Sarah Vessels*, *Eileen M. Uchitelle*
|
1243
1722
|
|
1244
|
-
|
1723
|
+
* `Arel::Visitors::Dot` now renders a complete set of properties when visiting
|
1724
|
+
`Arel::Nodes::SelectCore`, `SelectStatement`, `InsertStatement`, `UpdateStatement`, and
|
1725
|
+
`DeleteStatement`, which fixes #42026. Previously, some properties were omitted.
|
1245
1726
|
|
1246
|
-
*
|
1727
|
+
*Mike Dalessio*
|
1247
1728
|
|
1248
|
-
*
|
1729
|
+
* `Arel::Visitors::Dot` now supports `Arel::Nodes::Bin`, `Case`, `CurrentRow`, `Distinct`,
|
1730
|
+
`DistinctOn`, `Else`, `Except`, `InfixOperation`, `Intersect`, `Lock`, `NotRegexp`, `Quoted`,
|
1731
|
+
`Regexp`, `UnaryOperation`, `Union`, `UnionAll`, `When`, and `With`. Previously, these node
|
1732
|
+
types caused an exception to be raised by `Arel::Visitors::Dot#accept`.
|
1249
1733
|
|
1250
|
-
|
1734
|
+
*Mike Dalessio*
|
1251
1735
|
|
1252
|
-
|
1736
|
+
* Optimize `remove_columns` to use a single SQL statement.
|
1253
1737
|
|
1254
|
-
|
1738
|
+
```ruby
|
1739
|
+
remove_columns :my_table, :col_one, :col_two
|
1740
|
+
```
|
1255
1741
|
|
1256
|
-
|
1742
|
+
Now results in the following SQL:
|
1257
1743
|
|
1258
|
-
|
1744
|
+
```sql
|
1745
|
+
ALTER TABLE "my_table" DROP COLUMN "col_one", DROP COLUMN "col_two"
|
1746
|
+
```
|
1259
1747
|
|
1260
|
-
*
|
1748
|
+
*Jon Dufresne*
|
1261
1749
|
|
1262
|
-
*
|
1750
|
+
* Ensure `has_one` autosave association callbacks get called once.
|
1263
1751
|
|
1264
|
-
|
1752
|
+
Change the `has_one` autosave callback to be non cyclic as well.
|
1753
|
+
By doing this the autosave callback are made more consistent for
|
1754
|
+
all 3 cases: `has_many`, `has_one`, and `belongs_to`.
|
1265
1755
|
|
1266
|
-
|
1756
|
+
*Petrik de Heus*
|
1267
1757
|
|
1268
|
-
|
1758
|
+
* Add option to disable joins for associations.
|
1269
1759
|
|
1270
|
-
|
1760
|
+
In a multiple database application, associations can't join across
|
1761
|
+
databases. When set, this option instructs Rails to generate 2 or
|
1762
|
+
more queries rather than generating joins for associations.
|
1271
1763
|
|
1272
|
-
|
1764
|
+
Set the option on a has many through association:
|
1273
1765
|
|
1274
|
-
|
1766
|
+
```ruby
|
1767
|
+
class Dog
|
1768
|
+
has_many :treats, through: :humans, disable_joins: true
|
1769
|
+
has_many :humans
|
1770
|
+
end
|
1771
|
+
```
|
1275
1772
|
|
1276
|
-
|
1773
|
+
Then instead of generating join SQL, two queries are used for `@dog.treats`:
|
1277
1774
|
|
1278
|
-
|
1775
|
+
```
|
1776
|
+
SELECT "humans"."id" FROM "humans" WHERE "humans"."dog_id" = ? [["dog_id", 1]]
|
1777
|
+
SELECT "treats".* FROM "treats" WHERE "treats"."human_id" IN (?, ?, ?) [["human_id", 1], ["human_id", 2], ["human_id", 3]]
|
1778
|
+
```
|
1279
1779
|
|
1280
|
-
*Eileen M. Uchitelle*, *
|
1780
|
+
*Eileen M. Uchitelle*, *Aaron Patterson*, *Lee Quarella*
|
1281
1781
|
|
1282
|
-
* Add
|
1782
|
+
* Add setting for enumerating column names in SELECT statements.
|
1283
1783
|
|
1284
|
-
|
1784
|
+
Adding a column to a PostgreSQL database, for example, while the application is running can
|
1785
|
+
change the result of wildcard `SELECT *` queries, which invalidates the result
|
1786
|
+
of cached prepared statements and raises a `PreparedStatementCacheExpired` error.
|
1285
1787
|
|
1286
|
-
|
1788
|
+
When enabled, Active Record will avoid wildcards and always include column names
|
1789
|
+
in `SELECT` queries, which will return consistent results and avoid prepared
|
1790
|
+
statement errors.
|
1287
1791
|
|
1288
|
-
|
1792
|
+
Before:
|
1289
1793
|
|
1290
|
-
```
|
1291
|
-
|
1292
|
-
|
1293
|
-
primary:
|
1294
|
-
database: my_database
|
1295
|
-
primary_shard_one:
|
1296
|
-
database: my_database_shard_one
|
1794
|
+
```ruby
|
1795
|
+
Book.limit(5)
|
1796
|
+
# SELECT * FROM books LIMIT 5
|
1297
1797
|
```
|
1298
1798
|
|
1299
|
-
|
1799
|
+
After:
|
1300
1800
|
|
1301
1801
|
```ruby
|
1302
|
-
|
1303
|
-
|
1802
|
+
# config/application.rb
|
1803
|
+
module MyApp
|
1804
|
+
class Application < Rails::Application
|
1805
|
+
config.active_record.enumerate_columns_in_select_statements = true
|
1806
|
+
end
|
1807
|
+
end
|
1304
1808
|
|
1305
|
-
|
1306
|
-
|
1307
|
-
|
1308
|
-
|
1809
|
+
# or, configure per-model
|
1810
|
+
class Book < ApplicationRecord
|
1811
|
+
self.enumerate_columns_in_select_statements = true
|
1812
|
+
end
|
1309
1813
|
```
|
1310
1814
|
|
1311
|
-
Swap between shards in your controller / model code:
|
1312
|
-
|
1313
1815
|
```ruby
|
1314
|
-
|
1315
|
-
|
1316
|
-
end
|
1816
|
+
Book.limit(5)
|
1817
|
+
# SELECT id, author_id, name, format, status, language, etc FROM books LIMIT 5
|
1317
1818
|
```
|
1318
1819
|
|
1319
|
-
|
1820
|
+
*Matt Duszynski*
|
1320
1821
|
|
1321
|
-
|
1822
|
+
* Allow passing SQL as `on_duplicate` value to `#upsert_all` to make it possible to use raw SQL to update columns on conflict:
|
1322
1823
|
|
1323
|
-
|
1824
|
+
```ruby
|
1825
|
+
Book.upsert_all(
|
1826
|
+
[{ id: 1, status: 1 }, { id: 2, status: 1 }],
|
1827
|
+
on_duplicate: Arel.sql("status = GREATEST(books.status, EXCLUDED.status)")
|
1828
|
+
)
|
1829
|
+
```
|
1324
1830
|
|
1325
|
-
|
1831
|
+
*Vladimir Dementyev*
|
1326
1832
|
|
1327
|
-
|
1833
|
+
* Allow passing SQL as `returning` statement to `#upsert_all`:
|
1328
1834
|
|
1329
1835
|
```ruby
|
1330
|
-
|
1331
|
-
|
1836
|
+
Article.insert_all(
|
1837
|
+
[
|
1838
|
+
{ title: "Article 1", slug: "article-1", published: false },
|
1839
|
+
{ title: "Article 2", slug: "article-2", published: false }
|
1840
|
+
],
|
1841
|
+
returning: Arel.sql("id, (xmax = '0') as inserted, name as new_name")
|
1842
|
+
)
|
1332
1843
|
```
|
1333
1844
|
|
1334
|
-
|
1845
|
+
*Vladimir Dementyev*
|
1335
1846
|
|
1336
|
-
|
1337
|
-
db_config = ActiveRecord::Base.configurations.configs_for(env_name: "development", name: "primary")
|
1338
|
-
db_config.name
|
1339
|
-
```
|
1847
|
+
* Deprecate `legacy_connection_handling`.
|
1340
1848
|
|
1341
1849
|
*Eileen M. Uchitelle*
|
1342
1850
|
|
1343
|
-
* Add
|
1851
|
+
* Add attribute encryption support.
|
1344
1852
|
|
1345
|
-
|
1346
|
-
|
1853
|
+
Encrypted attributes are declared at the model level. These
|
1854
|
+
are regular Active Record attributes backed by a column with
|
1855
|
+
the same name. The system will transparently encrypt these
|
1856
|
+
attributes before saving them into the database and will
|
1857
|
+
decrypt them when retrieving their values.
|
1347
1858
|
|
1348
|
-
|
1349
|
-
|
1350
|
-
|
1351
|
-
|
1352
|
-
|
1353
|
-
|
1354
|
-
rails db:drop:animals
|
1355
|
-
rails db:migrate
|
1356
|
-
rails db:migrate:primary
|
1357
|
-
rails db:migrate:animals
|
1859
|
+
|
1860
|
+
```ruby
|
1861
|
+
class Person < ApplicationRecord
|
1862
|
+
encrypts :name
|
1863
|
+
encrypts :email_address, deterministic: true
|
1864
|
+
end
|
1358
1865
|
```
|
1359
1866
|
|
1360
|
-
|
1361
|
-
|
1867
|
+
You can learn more in the [Active Record Encryption
|
1868
|
+
guide](https://edgeguides.rubyonrails.org/active_record_encryption.html).
|
1362
1869
|
|
1363
|
-
|
1364
|
-
rails db:schema:dump
|
1365
|
-
rails db:schema:dump:primary
|
1366
|
-
rails db:schema:dump:animals
|
1367
|
-
rails db:schema:load
|
1368
|
-
rails db:schema:load:primary
|
1369
|
-
rails db:schema:load:animals
|
1370
|
-
rails db:structure:dump
|
1371
|
-
rails db:structure:dump:primary
|
1372
|
-
rails db:structure:dump:animals
|
1373
|
-
rails db:structure:load
|
1374
|
-
rails db:structure:load:primary
|
1375
|
-
rails db:structure:load:animals
|
1376
|
-
rails db:test:prepare
|
1377
|
-
rails db:test:prepare:primary
|
1378
|
-
rails db:test:prepare:animals
|
1379
|
-
```
|
1870
|
+
*Jorge Manrubia*
|
1380
1871
|
|
1381
|
-
|
1872
|
+
* Changed Arel predications `contains` and `overlaps` to use
|
1873
|
+
`quoted_node` so that PostgreSQL arrays are quoted properly.
|
1382
1874
|
|
1383
|
-
*
|
1875
|
+
*Bradley Priest*
|
1384
1876
|
|
1385
|
-
|
1877
|
+
* Add mode argument to record level `strict_loading!`.
|
1386
1878
|
|
1387
|
-
|
1879
|
+
This argument can be used when enabling strict loading for a single record
|
1880
|
+
to specify that we only want to raise on n plus one queries.
|
1388
1881
|
|
1389
1882
|
```ruby
|
1390
|
-
|
1391
|
-
has_many :projects, strict_loading: true
|
1392
|
-
end
|
1883
|
+
developer.strict_loading!(mode: :n_plus_one_only)
|
1393
1884
|
|
1394
|
-
|
1395
|
-
|
1396
|
-
# => ActiveRecord::StrictLoadingViolationError: The projects association is marked as strict_loading and cannot be lazily loaded.
|
1885
|
+
developer.projects.to_a # Does not raise
|
1886
|
+
developer.projects.first.client # Raises StrictLoadingViolationError
|
1397
1887
|
```
|
1398
1888
|
|
1399
|
-
|
1889
|
+
Previously, enabling strict loading would cause any lazily loaded
|
1890
|
+
association to raise an error. Using `n_plus_one_only` mode allows us to
|
1891
|
+
lazily load belongs_to, has_many, and other associations that are fetched
|
1892
|
+
through a single query.
|
1400
1893
|
|
1401
|
-
*
|
1894
|
+
*Dinah Shi*
|
1402
1895
|
|
1403
|
-
|
1896
|
+
* Fix Float::INFINITY assignment to datetime column with postgresql adapter.
|
1404
1897
|
|
1405
|
-
|
1898
|
+
Before:
|
1406
1899
|
|
1407
1900
|
```ruby
|
1408
|
-
|
1409
|
-
|
1410
|
-
# => ActiveRecord::StrictLoadingViolationError: Developer is marked as strict_loading and AuditLog cannot be lazily loaded.
|
1411
|
-
```
|
1901
|
+
# With this config
|
1902
|
+
ActiveRecord::Base.time_zone_aware_attributes = true
|
1412
1903
|
|
1413
|
-
|
1904
|
+
# and the following schema:
|
1905
|
+
create_table "postgresql_infinities" do |t|
|
1906
|
+
t.datetime "datetime"
|
1907
|
+
end
|
1414
1908
|
|
1415
|
-
|
1909
|
+
# This test fails
|
1910
|
+
record = PostgresqlInfinity.create!(datetime: Float::INFINITY)
|
1911
|
+
assert_equal Float::INFINITY, record.datetime # record.datetime gets nil
|
1912
|
+
```
|
1416
1913
|
|
1417
|
-
|
1914
|
+
After this commit, `record.datetime` gets `Float::INFINITY` as expected.
|
1418
1915
|
|
1419
|
-
*
|
1916
|
+
*Shunichi Ikegami*
|
1420
1917
|
|
1421
|
-
|
1918
|
+
* Type cast enum values by the original attribute type.
|
1422
1919
|
|
1423
|
-
|
1920
|
+
The notable thing about this change is that unknown labels will no longer match 0 on MySQL.
|
1424
1921
|
|
1425
1922
|
```ruby
|
1426
|
-
class
|
1427
|
-
|
1428
|
-
add_column :posts, :title, :string, if_not_exists: true
|
1429
|
-
end
|
1923
|
+
class Book < ActiveRecord::Base
|
1924
|
+
enum :status, { proposed: 0, written: 1, published: 2 }
|
1430
1925
|
end
|
1431
1926
|
```
|
1432
1927
|
|
1928
|
+
Before:
|
1929
|
+
|
1433
1930
|
```ruby
|
1434
|
-
|
1435
|
-
|
1436
|
-
|
1437
|
-
|
1438
|
-
|
1931
|
+
# SELECT `books`.* FROM `books` WHERE `books`.`status` = 'prohibited' LIMIT 1
|
1932
|
+
Book.find_by(status: :prohibited)
|
1933
|
+
# => #<Book id: 1, status: "proposed", ...> (for mysql2 adapter)
|
1934
|
+
# => ActiveRecord::StatementInvalid: PG::InvalidTextRepresentation: ERROR: invalid input syntax for type integer: "prohibited" (for postgresql adapter)
|
1935
|
+
# => nil (for sqlite3 adapter)
|
1439
1936
|
```
|
1440
1937
|
|
1441
|
-
|
1442
|
-
|
1443
|
-
* Regexp-escape table name for MS SQL Server.
|
1444
|
-
|
1445
|
-
Add `Regexp.escape` to one method in ActiveRecord, so that table names with regular expression characters in them work as expected. Since MS SQL Server uses "[" and "]" to quote table and column names, and those characters are regular expression characters, methods like `pluck` and `select` fail in certain cases when used with the MS SQL Server adapter.
|
1446
|
-
|
1447
|
-
*Larry Reid*
|
1448
|
-
|
1449
|
-
* Store advisory locks on their own named connection.
|
1938
|
+
After:
|
1450
1939
|
|
1451
|
-
|
1940
|
+
```ruby
|
1941
|
+
# SELECT `books`.* FROM `books` WHERE `books`.`status` IS NULL LIMIT 1
|
1942
|
+
Book.find_by(status: :prohibited)
|
1943
|
+
# => nil (for all adapters)
|
1944
|
+
```
|
1452
1945
|
|
1453
|
-
|
1946
|
+
*Ryuta Kamizono*
|
1454
1947
|
|
1455
|
-
|
1948
|
+
* Fixtures for `has_many :through` associations now load timestamps on join tables.
|
1456
1949
|
|
1457
|
-
|
1950
|
+
Given this fixture:
|
1458
1951
|
|
1459
|
-
|
1952
|
+
```yml
|
1953
|
+
### monkeys.yml
|
1954
|
+
george:
|
1955
|
+
name: George the Monkey
|
1956
|
+
fruits: apple
|
1460
1957
|
|
1461
|
-
|
1462
|
-
|
1463
|
-
|
1464
|
-
database: blog_development
|
1465
|
-
pool: 5
|
1466
|
-
schema_cache_path: tmp/schema/main.yml
|
1958
|
+
### fruits.yml
|
1959
|
+
apple:
|
1960
|
+
name: apple
|
1467
1961
|
```
|
1468
1962
|
|
1469
|
-
|
1470
|
-
|
1471
|
-
|
1963
|
+
If the join table (`fruit_monkeys`) contains `created_at` or `updated_at` columns,
|
1964
|
+
these will now be populated when loading the fixture. Previously, fixture loading
|
1965
|
+
would crash if these columns were required, and leave them as null otherwise.
|
1472
1966
|
|
1473
|
-
|
1474
|
-
|
1475
|
-
*Eileen M. Uchitelle*, *John Crepezzi*
|
1476
|
-
|
1477
|
-
* Deprecate `#default_hash` and it's alias `#[]` on database configurations.
|
1967
|
+
*Alex Ghiculescu*
|
1478
1968
|
|
1479
|
-
|
1969
|
+
* Allow applications to configure the thread pool for async queries.
|
1480
1970
|
|
1481
|
-
|
1971
|
+
Some applications may want one thread pool per database whereas others want to use
|
1972
|
+
a single global thread pool for all queries. By default, Rails will set `async_query_executor`
|
1973
|
+
to `nil` which will not initialize any executor. If `load_async` is called and no executor
|
1974
|
+
has been configured, the query will be executed in the foreground.
|
1482
1975
|
|
1483
|
-
|
1976
|
+
To create one thread pool for all database connections to use applications can set
|
1977
|
+
`config.active_record.async_query_executor` to `:global_thread_pool` and optionally define
|
1978
|
+
`config.active_record.global_executor_concurrency`. This defaults to 4. For applications that want
|
1979
|
+
to have a thread pool for each database connection, `config.active_record.async_query_executor` can
|
1980
|
+
be set to `:multi_thread_pool`. The configuration for each thread pool is set in the database
|
1981
|
+
configuration.
|
1484
1982
|
|
1485
|
-
*
|
1983
|
+
*Eileen M. Uchitelle*
|
1486
1984
|
|
1487
|
-
*
|
1985
|
+
* Allow new syntax for `enum` to avoid leading `_` from reserved options.
|
1488
1986
|
|
1489
1987
|
Before:
|
1490
1988
|
|
1491
1989
|
```ruby
|
1492
|
-
|
1990
|
+
class Book < ActiveRecord::Base
|
1991
|
+
enum status: [ :proposed, :written ], _prefix: true, _scopes: false
|
1992
|
+
enum cover: [ :hard, :soft ], _suffix: true, _default: :hard
|
1993
|
+
end
|
1493
1994
|
```
|
1494
1995
|
|
1495
1996
|
After:
|
1496
1997
|
|
1497
1998
|
```ruby
|
1498
|
-
|
1999
|
+
class Book < ActiveRecord::Base
|
2000
|
+
enum :status, [ :proposed, :written ], prefix: true, scopes: false
|
2001
|
+
enum :cover, [ :hard, :soft ], suffix: true, default: :hard
|
2002
|
+
end
|
1499
2003
|
```
|
1500
2004
|
|
1501
|
-
*
|
1502
|
-
|
1503
|
-
* Ensure `:reading` connections always raise if a write is attempted.
|
1504
|
-
|
1505
|
-
Now Rails will raise an `ActiveRecord::ReadOnlyError` if any connection on the reading handler attempts to make a write. If your reading role needs to write you should name the role something other than `:reading`.
|
1506
|
-
|
1507
|
-
*Eileen M. Uchitelle*
|
1508
|
-
|
1509
|
-
* Deprecate `"primary"` as the `connection_specification_name` for `ActiveRecord::Base`.
|
1510
|
-
|
1511
|
-
`"primary"` has been deprecated as the `connection_specification_name` for `ActiveRecord::Base` in favor of using `"ActiveRecord::Base"`. This change affects calls to `ActiveRecord::Base.connection_handler.retrieve_connection` and `ActiveRecord::Base.connection_handler.remove_connection`. If you're calling these methods with `"primary"`, please switch to `"ActiveRecord::Base"`.
|
2005
|
+
*Ryuta Kamizono*
|
1512
2006
|
|
1513
|
-
|
2007
|
+
* Add `ActiveRecord::Relation#load_async`.
|
1514
2008
|
|
1515
|
-
|
1516
|
-
support for casting floats using a database columns' precision value.
|
2009
|
+
This method schedules the query to be performed asynchronously from a thread pool.
|
1517
2010
|
|
1518
|
-
|
2011
|
+
If the result is accessed before a background thread had the opportunity to perform
|
2012
|
+
the query, it will be performed in the foreground.
|
1519
2013
|
|
1520
|
-
|
1521
|
-
|
1522
|
-
ActionController::ConditionalGet to ensure that when collection cache versioning
|
1523
|
-
is enabled, requests using ConditionalGet don't return the same ETag header
|
1524
|
-
after a collection is modified.
|
2014
|
+
This is useful for queries that can be performed long enough before their result will be
|
2015
|
+
needed, or for controllers which need to perform several independent queries.
|
1525
2016
|
|
1526
|
-
|
2017
|
+
```ruby
|
2018
|
+
def index
|
2019
|
+
@categories = Category.some_complex_scope.load_async
|
2020
|
+
@posts = Post.some_complex_scope.load_async
|
2021
|
+
end
|
2022
|
+
```
|
1527
2023
|
|
1528
|
-
|
2024
|
+
Active Record logs will also include timing info for the duration of how long
|
2025
|
+
the main thread had to wait to access the result. This timing is useful to know
|
2026
|
+
whether or not it's worth to load the query asynchronously.
|
1529
2027
|
|
1530
|
-
|
1531
|
-
|
2028
|
+
```
|
2029
|
+
DEBUG -- : Category Load (62.1ms) SELECT * FROM `categories` LIMIT 50
|
2030
|
+
DEBUG -- : ASYNC Post Load (64ms) (db time 126.1ms) SELECT * FROM `posts` LIMIT 100
|
2031
|
+
```
|
1532
2032
|
|
1533
|
-
|
2033
|
+
The duration in the first set of parens is how long the main thread was blocked
|
2034
|
+
waiting for the results, and the second set of parens with "db time" is how long
|
2035
|
+
the entire query took to execute.
|
1534
2036
|
|
1535
|
-
*
|
2037
|
+
*Jean Boussier*
|
1536
2038
|
|
1537
|
-
|
2039
|
+
* Implemented `ActiveRecord::Relation#excluding` method.
|
1538
2040
|
|
1539
|
-
|
2041
|
+
This method excludes the specified record (or collection of records) from
|
2042
|
+
the resulting relation:
|
1540
2043
|
|
1541
2044
|
```ruby
|
1542
|
-
|
1543
|
-
|
2045
|
+
Post.excluding(post)
|
2046
|
+
Post.excluding(post_one, post_two)
|
1544
2047
|
```
|
1545
2048
|
|
1546
|
-
|
2049
|
+
Also works on associations:
|
1547
2050
|
|
1548
2051
|
```ruby
|
1549
|
-
|
1550
|
-
|
1551
|
-
db_config = ActiveRecord::DatabaseConfigurations::HashConfig.new(@db_config.env_name, @db_config.spec_name, config)
|
2052
|
+
post.comments.excluding(comment)
|
2053
|
+
post.comments.excluding(comment_one, comment_two)
|
1552
2054
|
```
|
1553
2055
|
|
1554
|
-
|
1555
|
-
|
1556
|
-
* Remove `:connection_id` from the `sql.active_record` notification.
|
2056
|
+
This is short-hand for `Post.where.not(id: post.id)` (for a single record)
|
2057
|
+
and `Post.where.not(id: [post_one.id, post_two.id])` (for a collection).
|
1557
2058
|
|
1558
|
-
*
|
2059
|
+
*Glen Crawford*
|
1559
2060
|
|
1560
|
-
*
|
2061
|
+
* Skip optimised #exist? query when #include? is called on a relation
|
2062
|
+
with a having clause.
|
1561
2063
|
|
1562
|
-
|
2064
|
+
Relations that have aliased select values AND a having clause that
|
2065
|
+
references an aliased select value would generate an error when
|
2066
|
+
#include? was called, due to an optimisation that would generate
|
2067
|
+
call #exists? on the relation instead, which effectively alters
|
2068
|
+
the select values of the query (and thus removes the aliased select
|
2069
|
+
values), but leaves the having clause intact. Because the having
|
2070
|
+
clause is then referencing an aliased column that is no longer
|
2071
|
+
present in the simplified query, an ActiveRecord::InvalidStatement
|
2072
|
+
error was raised.
|
1563
2073
|
|
1564
|
-
|
2074
|
+
A sample query affected by this problem:
|
1565
2075
|
|
1566
|
-
|
1567
|
-
|
2076
|
+
```ruby
|
2077
|
+
Author.select('COUNT(*) as total_posts', 'authors.*')
|
2078
|
+
.joins(:posts)
|
2079
|
+
.group(:id)
|
2080
|
+
.having('total_posts > 2')
|
2081
|
+
.include?(Author.first)
|
2082
|
+
```
|
1568
2083
|
|
1569
|
-
This change
|
1570
|
-
|
2084
|
+
This change adds an addition check to the condition that skips the
|
2085
|
+
simplified #exists? query, which simply checks for the presence of
|
2086
|
+
a having clause.
|
1571
2087
|
|
1572
|
-
|
2088
|
+
Fixes #41417.
|
1573
2089
|
|
1574
|
-
*
|
2090
|
+
*Michael Smart*
|
1575
2091
|
|
1576
|
-
|
2092
|
+
* Increment postgres prepared statement counter before making a prepared statement, so if the statement is aborted
|
2093
|
+
without Rails knowledge (e.g., if app gets killed during long-running query or due to Rack::Timeout), app won't end
|
2094
|
+
up in perpetual crash state for being inconsistent with PostgreSQL.
|
1577
2095
|
|
1578
|
-
*
|
2096
|
+
*wbharding*, *Martin Tepper*
|
1579
2097
|
|
1580
|
-
|
2098
|
+
* Add ability to apply `scoping` to `all_queries`.
|
1581
2099
|
|
1582
|
-
|
2100
|
+
Some applications may want to use the `scoping` method but previously it only
|
2101
|
+
worked on certain types of queries. This change allows the `scoping` method to apply
|
2102
|
+
to all queries for a model in a block.
|
1583
2103
|
|
1584
|
-
|
2104
|
+
```ruby
|
2105
|
+
Post.where(blog_id: post.blog_id).scoping(all_queries: true) do
|
2106
|
+
post.update(title: "a post title") # adds `posts.blog_id = 1` to the query
|
2107
|
+
end
|
2108
|
+
```
|
1585
2109
|
|
1586
|
-
*Eileen M. Uchitelle
|
2110
|
+
*Eileen M. Uchitelle*
|
1587
2111
|
|
1588
|
-
*
|
2112
|
+
* `ActiveRecord::Calculations.calculate` called with `:average`
|
2113
|
+
(aliased as `ActiveRecord::Calculations.average`) will now use column-based
|
2114
|
+
type casting. This means that floating-point number columns will now be
|
2115
|
+
aggregated as `Float` and decimal columns will be aggregated as `BigDecimal`.
|
1589
2116
|
|
1590
|
-
|
2117
|
+
Integers are handled as a special case returning `BigDecimal` always
|
2118
|
+
(this was the case before already).
|
1591
2119
|
|
1592
|
-
|
2120
|
+
```ruby
|
2121
|
+
# With the following schema:
|
2122
|
+
create_table "measurements" do |t|
|
2123
|
+
t.float "temperature"
|
2124
|
+
end
|
1593
2125
|
|
1594
|
-
|
2126
|
+
# Before:
|
2127
|
+
Measurement.average(:temperature).class
|
2128
|
+
# => BigDecimal
|
1595
2129
|
|
1596
|
-
|
2130
|
+
# After:
|
2131
|
+
Measurement.average(:temperature).class
|
2132
|
+
# => Float
|
2133
|
+
```
|
1597
2134
|
|
1598
|
-
|
2135
|
+
Before this change, Rails just called `to_d` on average aggregates from the
|
2136
|
+
database adapter. This is not the case anymore. If you relied on that kind
|
2137
|
+
of magic, you now need to register your own `ActiveRecord::Type`
|
2138
|
+
(see `ActiveRecord::Attributes::ClassMethods` for documentation).
|
1599
2139
|
|
1600
|
-
*
|
2140
|
+
*Josua Schmid*
|
1601
2141
|
|
1602
|
-
|
2142
|
+
* PostgreSQL: introduce `ActiveRecord::ConnectionAdapters::PostgreSQLAdapter.datetime_type`.
|
1603
2143
|
|
1604
|
-
|
2144
|
+
This setting controls what native type Active Record should use when you call `datetime` in
|
2145
|
+
a migration or schema. It takes a symbol which must correspond to one of the configured
|
2146
|
+
`NATIVE_DATABASE_TYPES`. The default is `:timestamp`, meaning `t.datetime` in a migration
|
2147
|
+
will create a "timestamp without time zone" column. To use "timestamp with time zone",
|
2148
|
+
change this to `:timestamptz` in an initializer.
|
1605
2149
|
|
1606
|
-
|
2150
|
+
You should run `bin/rails db:migrate` to rebuild your schema.rb if you change this.
|
1607
2151
|
|
1608
|
-
*
|
2152
|
+
*Alex Ghiculescu*
|
1609
2153
|
|
1610
|
-
|
2154
|
+
* PostgreSQL: handle `timestamp with time zone` columns correctly in `schema.rb`.
|
1611
2155
|
|
1612
|
-
|
2156
|
+
Previously they dumped as `t.datetime :column_name`, now they dump as `t.timestamptz :column_name`,
|
2157
|
+
and are created as `timestamptz` columns when the schema is loaded.
|
1613
2158
|
|
1614
|
-
*
|
2159
|
+
*Alex Ghiculescu*
|
1615
2160
|
|
1616
|
-
*
|
1617
|
-
|
2161
|
+
* Removing trailing whitespace when matching columns in
|
2162
|
+
`ActiveRecord::Sanitization.disallow_raw_sql!`.
|
1618
2163
|
|
1619
|
-
|
2164
|
+
*Gannon McGibbon*, *Adrian Hirt*
|
1620
2165
|
|
1621
|
-
|
1622
|
-
has_secure_token :auth_token
|
1623
|
-
```
|
2166
|
+
* Expose a way for applications to set a `primary_abstract_class`.
|
1624
2167
|
|
1625
|
-
|
2168
|
+
Multiple database applications that use a primary abstract class that is not
|
2169
|
+
named `ApplicationRecord` can now set a specific class to be the `primary_abstract_class`.
|
1626
2170
|
|
1627
2171
|
```ruby
|
1628
|
-
|
1629
|
-
|
1630
|
-
|
2172
|
+
class PrimaryApplicationRecord
|
2173
|
+
self.primary_abstract_class
|
2174
|
+
end
|
1631
2175
|
```
|
1632
2176
|
|
1633
|
-
|
1634
|
-
|
1635
|
-
|
2177
|
+
When an application boots it automatically connects to the primary or first database in the
|
2178
|
+
database configuration file. In a multiple database application that then call `connects_to`
|
2179
|
+
needs to know that the default connection is the same as the `ApplicationRecord` connection.
|
2180
|
+
However, some applications have a differently named `ApplicationRecord`. This prevents Active
|
2181
|
+
Record from opening duplicate connections to the same database.
|
1636
2182
|
|
1637
|
-
*Eileen Uchitelle*, *John Crepezzi*
|
2183
|
+
*Eileen M. Uchitelle*, *John Crepezzi*
|
1638
2184
|
|
1639
|
-
*
|
2185
|
+
* Support hash config for `structure_dump_flags` and `structure_load_flags` flags.
|
2186
|
+
Now that Active Record supports multiple databases configuration,
|
2187
|
+
we need a way to pass specific flags for dump/load databases since
|
2188
|
+
the options are not the same for different adapters.
|
2189
|
+
We can use in the original way:
|
1640
2190
|
|
1641
|
-
|
2191
|
+
```ruby
|
2192
|
+
ActiveRecord::Tasks::DatabaseTasks.structure_dump_flags = ['--no-defaults', '--skip-add-drop-table']
|
2193
|
+
# or
|
2194
|
+
ActiveRecord::Tasks::DatabaseTasks.structure_dump_flags = '--no-defaults --skip-add-drop-table'
|
2195
|
+
```
|
1642
2196
|
|
1643
|
-
|
2197
|
+
And also use it passing a hash, with one or more keys, where the key
|
2198
|
+
is the adapter
|
1644
2199
|
|
1645
|
-
|
2200
|
+
```ruby
|
2201
|
+
ActiveRecord::Tasks::DatabaseTasks.structure_dump_flags = {
|
2202
|
+
mysql2: ['--no-defaults', '--skip-add-drop-table'],
|
2203
|
+
postgres: '--no-tablespaces'
|
2204
|
+
}
|
2205
|
+
```
|
1646
2206
|
|
1647
|
-
|
2207
|
+
*Gustavo Gonzalez*
|
1648
2208
|
|
1649
|
-
|
1650
|
-
|
1651
|
-
|
1652
|
-
|
2209
|
+
* Connection specification now passes the "url" key as a configuration for the
|
2210
|
+
adapter if the "url" protocol is "jdbc", "http", or "https". Previously only
|
2211
|
+
urls with the "jdbc" prefix were passed to the Active Record Adapter, others
|
2212
|
+
are assumed to be adapter specification urls.
|
1653
2213
|
|
1654
|
-
|
2214
|
+
Fixes #41137.
|
1655
2215
|
|
1656
|
-
|
2216
|
+
*Jonathan Bracy*
|
1657
2217
|
|
1658
|
-
|
2218
|
+
* Allow to opt-out of `strict_loading` mode on a per-record base.
|
1659
2219
|
|
1660
|
-
|
2220
|
+
This is useful when strict loading is enabled application wide or on a
|
2221
|
+
model level.
|
1661
2222
|
|
1662
|
-
|
2223
|
+
```ruby
|
2224
|
+
class User < ApplicationRecord
|
2225
|
+
has_many :bookmarks
|
2226
|
+
has_many :articles, strict_loading: true
|
2227
|
+
end
|
1663
2228
|
|
1664
|
-
|
2229
|
+
user = User.first
|
2230
|
+
user.articles # => ActiveRecord::StrictLoadingViolationError
|
2231
|
+
user.bookmarks # => #<ActiveRecord::Associations::CollectionProxy>
|
1665
2232
|
|
1666
|
-
|
2233
|
+
user.strict_loading!(true) # => true
|
2234
|
+
user.bookmarks # => ActiveRecord::StrictLoadingViolationError
|
1667
2235
|
|
1668
|
-
|
2236
|
+
user.strict_loading!(false) # => false
|
2237
|
+
user.bookmarks # => #<ActiveRecord::Associations::CollectionProxy>
|
2238
|
+
user.articles.strict_loading!(false) # => #<ActiveRecord::Associations::CollectionProxy>
|
2239
|
+
```
|
1669
2240
|
|
1670
|
-
|
2241
|
+
*Ayrton De Craene*
|
1671
2242
|
|
1672
|
-
|
2243
|
+
* Add `FinderMethods#sole` and `#find_sole_by` to find and assert the
|
2244
|
+
presence of exactly one record.
|
1673
2245
|
|
1674
|
-
|
2246
|
+
Used when you need a single row, but also want to assert that there aren't
|
2247
|
+
multiple rows matching the condition; especially for when database
|
2248
|
+
constraints aren't enough or are impractical.
|
1675
2249
|
|
1676
|
-
|
2250
|
+
```ruby
|
2251
|
+
Product.where(["price = %?", price]).sole
|
2252
|
+
# => ActiveRecord::RecordNotFound (if no Product with given price)
|
2253
|
+
# => #<Product ...> (if one Product with given price)
|
2254
|
+
# => ActiveRecord::SoleRecordExceeded (if more than one Product with given price)
|
1677
2255
|
|
1678
|
-
|
2256
|
+
user.api_keys.find_sole_by(key: key)
|
2257
|
+
# as above
|
2258
|
+
```
|
1679
2259
|
|
1680
|
-
*
|
2260
|
+
*Asherah Connor*
|
1681
2261
|
|
1682
|
-
|
2262
|
+
* Makes `ActiveRecord::AttributeMethods::Query` respect the getter overrides defined in the model.
|
1683
2263
|
|
1684
|
-
|
2264
|
+
Before:
|
1685
2265
|
|
1686
|
-
|
2266
|
+
```ruby
|
2267
|
+
class User
|
2268
|
+
def admin
|
2269
|
+
false # Overriding the getter to always return false
|
2270
|
+
end
|
2271
|
+
end
|
1687
2272
|
|
1688
|
-
|
2273
|
+
user = User.first
|
2274
|
+
user.update(admin: true)
|
1689
2275
|
|
1690
|
-
|
2276
|
+
user.admin # false (as expected, due to the getter overwrite)
|
2277
|
+
user.admin? # true (not expected, returned the DB column value)
|
2278
|
+
```
|
1691
2279
|
|
1692
|
-
|
2280
|
+
After this commit, `user.admin?` above returns false, as expected.
|
1693
2281
|
|
1694
|
-
|
2282
|
+
Fixes #40771.
|
1695
2283
|
|
1696
|
-
*
|
2284
|
+
*Felipe*
|
1697
2285
|
|
1698
|
-
|
2286
|
+
* Allow delegated_type to be specified primary_key and foreign_key.
|
1699
2287
|
|
1700
|
-
|
2288
|
+
Since delegated_type assumes that the foreign_key ends with `_id`,
|
2289
|
+
`singular_id` defined by it does not work when the foreign_key does
|
2290
|
+
not end with `id`. This change fixes it by taking into account
|
2291
|
+
`primary_key` and `foreign_key` in the options.
|
1701
2292
|
|
1702
|
-
*
|
2293
|
+
*Ryota Egusa*
|
1703
2294
|
|
1704
|
-
*
|
2295
|
+
* Expose an `invert_where` method that will invert all scope conditions.
|
1705
2296
|
|
1706
|
-
|
2297
|
+
```ruby
|
2298
|
+
class User
|
2299
|
+
scope :active, -> { where(accepted: true, locked: false) }
|
2300
|
+
end
|
1707
2301
|
|
1708
|
-
|
2302
|
+
User.active
|
2303
|
+
# ... WHERE `accepted` = 1 AND `locked` = 0
|
1709
2304
|
|
1710
|
-
|
1711
|
-
|
1712
|
-
|
2305
|
+
User.active.invert_where
|
2306
|
+
# ... WHERE NOT (`accepted` = 1 AND `locked` = 0)
|
2307
|
+
```
|
1713
2308
|
|
1714
|
-
*
|
2309
|
+
*Kevin Deisz*
|
1715
2310
|
|
1716
|
-
*
|
2311
|
+
* Restore possibility of passing `false` to :polymorphic option of `belongs_to`.
|
1717
2312
|
|
1718
|
-
|
2313
|
+
Previously, passing `false` would trigger the option validation logic
|
2314
|
+
to throw an error saying :polymorphic would not be a valid option.
|
1719
2315
|
|
1720
|
-
*
|
2316
|
+
*glaszig*
|
1721
2317
|
|
1722
|
-
|
2318
|
+
* Remove deprecated `database` kwarg from `connected_to`.
|
1723
2319
|
|
1724
|
-
*
|
2320
|
+
*Eileen M. Uchitelle*, *John Crepezzi*
|
1725
2321
|
|
1726
|
-
|
2322
|
+
* Allow adding nonnamed expression indexes to be revertible.
|
1727
2323
|
|
1728
|
-
|
2324
|
+
Previously, the following code would raise an error, when executed while rolling back,
|
2325
|
+
and the index name should be specified explicitly. Now, the index name is inferred
|
2326
|
+
automatically.
|
1729
2327
|
|
1730
|
-
|
2328
|
+
```ruby
|
2329
|
+
add_index(:items, "to_tsvector('english', description)")
|
2330
|
+
```
|
1731
2331
|
|
1732
|
-
|
2332
|
+
Fixes #40732.
|
1733
2333
|
|
1734
|
-
|
2334
|
+
*fatkodima*
|
1735
2335
|
|
1736
|
-
|
2336
|
+
* Only warn about negative enums if a positive form that would cause conflicts exists.
|
1737
2337
|
|
1738
|
-
|
2338
|
+
Fixes #39065.
|
1739
2339
|
|
1740
|
-
|
2340
|
+
*Alex Ghiculescu*
|
1741
2341
|
|
1742
|
-
|
2342
|
+
* Add option to run `default_scope` on all queries.
|
1743
2343
|
|
1744
|
-
|
2344
|
+
Previously, a `default_scope` would only run on select or insert queries. In some cases, like non-Rails tenant sharding solutions, it may be desirable to run `default_scope` on all queries in order to ensure queries are including a foreign key for the shard (i.e. `blog_id`).
|
1745
2345
|
|
1746
|
-
|
2346
|
+
Now applications can add an option to run on all queries including select, insert, delete, and update by adding an `all_queries` option to the default scope definition.
|
1747
2347
|
|
1748
|
-
|
2348
|
+
```ruby
|
2349
|
+
class Article < ApplicationRecord
|
2350
|
+
default_scope -> { where(blog_id: Current.blog.id) }, all_queries: true
|
2351
|
+
end
|
2352
|
+
```
|
1749
2353
|
|
1750
|
-
*
|
2354
|
+
*Eileen M. Uchitelle*
|
1751
2355
|
|
1752
|
-
*
|
2356
|
+
* Add `where.associated` to check for the presence of an association.
|
1753
2357
|
|
1754
|
-
|
2358
|
+
```ruby
|
2359
|
+
# Before:
|
2360
|
+
account.users.joins(:contact).where.not(contact_id: nil)
|
1755
2361
|
|
1756
|
-
|
2362
|
+
# After:
|
2363
|
+
account.users.where.associated(:contact)
|
2364
|
+
```
|
1757
2365
|
|
1758
|
-
|
2366
|
+
Also mirrors `where.missing`.
|
1759
2367
|
|
1760
|
-
*
|
2368
|
+
*Kasper Timm Hansen*
|
1761
2369
|
|
1762
|
-
* Allow
|
2370
|
+
* Allow constructors (`build_association` and `create_association`) on
|
2371
|
+
`has_one :through` associations.
|
1763
2372
|
|
1764
|
-
*
|
2373
|
+
*Santiago Perez Perret*
|
1765
2374
|
|
1766
2375
|
|
1767
|
-
Please check [6-
|
2376
|
+
Please check [6-1-stable](https://github.com/rails/rails/blob/6-1-stable/activerecord/CHANGELOG.md) for previous changes.
|