activerecord 6.1.4.6 → 7.0.2.3
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of activerecord might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/CHANGELOG.md +1188 -932
- data/MIT-LICENSE +1 -1
- data/README.rdoc +1 -1
- 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 +34 -27
- data/lib/active_record/associations/collection_proxy.rb +8 -3
- data/lib/active_record/associations/disable_joins_association_scope.rb +59 -0
- data/lib/active_record/associations/has_many_association.rb +1 -1
- 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 +6 -2
- data/lib/active_record/associations/preloader/association.rb +187 -55
- 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 +49 -13
- 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 +119 -90
- 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 +7 -5
- data/lib/active_record/attribute_methods/serialization.rb +66 -12
- 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 +13 -14
- 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 +2 -2
- 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 +42 -72
- data/lib/active_record/connection_adapters/abstract/schema_creation.rb +4 -17
- data/lib/active_record/connection_adapters/abstract/schema_definitions.rb +38 -13
- data/lib/active_record/connection_adapters/abstract/schema_dumper.rb +14 -1
- data/lib/active_record/connection_adapters/abstract/schema_statements.rb +78 -22
- data/lib/active_record/connection_adapters/abstract/transaction.rb +15 -22
- data/lib/active_record/connection_adapters/abstract_adapter.rb +149 -74
- data/lib/active_record/connection_adapters/abstract_mysql_adapter.rb +97 -81
- data/lib/active_record/connection_adapters/column.rb +4 -0
- data/lib/active_record/connection_adapters/mysql/database_statements.rb +38 -24
- data/lib/active_record/connection_adapters/mysql/quoting.rb +35 -21
- data/lib/active_record/connection_adapters/mysql/schema_dumper.rb +7 -1
- data/lib/active_record/connection_adapters/mysql/schema_statements.rb +5 -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 +17 -1
- data/lib/active_record/connection_adapters/postgresql/database_statements.rb +21 -12
- 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 +50 -50
- data/lib/active_record/connection_adapters/postgresql/referential_integrity.rb +32 -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 +35 -19
- data/lib/active_record/connection_adapters/postgresql_adapter.rb +207 -107
- data/lib/active_record/connection_adapters/schema_cache.rb +29 -4
- data/lib/active_record/connection_adapters/sqlite3/database_statements.rb +27 -19
- data/lib/active_record/connection_adapters/sqlite3/quoting.rb +28 -16
- data/lib/active_record/connection_adapters/sqlite3/schema_statements.rb +16 -14
- data/lib/active_record/connection_adapters/sqlite3_adapter.rb +89 -30
- data/lib/active_record/connection_adapters.rb +6 -5
- data/lib/active_record/connection_handling.rb +47 -53
- data/lib/active_record/core.rb +122 -132
- data/lib/active_record/database_configurations/connection_url_resolver.rb +3 -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 +16 -32
- data/lib/active_record/delegated_type.rb +52 -11
- 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 +61 -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 +208 -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 +49 -42
- data/lib/active_record/errors.rb +67 -4
- data/lib/active_record/explain_registry.rb +11 -6
- 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 +17 -20
- 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 +3 -5
- data/lib/active_record/legacy_yaml_adapter.rb +2 -39
- data/lib/active_record/locking/optimistic.rb +10 -9
- data/lib/active_record/locking/pessimistic.rb +9 -3
- data/lib/active_record/log_subscriber.rb +14 -3
- data/lib/active_record/middleware/database_selector/resolver.rb +6 -10
- data/lib/active_record/middleware/database_selector.rb +8 -3
- data/lib/active_record/middleware/shard_selector.rb +60 -0
- data/lib/active_record/migration/command_recorder.rb +4 -4
- data/lib/active_record/migration/compatibility.rb +107 -3
- data/lib/active_record/migration/join_table.rb +1 -1
- data/lib/active_record/migration.rb +109 -79
- data/lib/active_record/model_schema.rb +45 -58
- 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 +219 -52
- data/lib/active_record/query_cache.rb +2 -2
- data/lib/active_record/query_logs.rb +138 -0
- data/lib/active_record/querying.rb +15 -5
- data/lib/active_record/railtie.rb +127 -17
- data/lib/active_record/railties/controller_runtime.rb +1 -1
- data/lib/active_record/railties/databases.rake +66 -129
- data/lib/active_record/readonly_attributes.rb +11 -0
- data/lib/active_record/reflection.rb +67 -50
- data/lib/active_record/relation/batches/batch_enumerator.rb +19 -5
- data/lib/active_record/relation/batches.rb +3 -3
- data/lib/active_record/relation/calculations.rb +43 -38
- 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.rb +1 -6
- data/lib/active_record/relation/query_attribute.rb +5 -11
- data/lib/active_record/relation/query_methods.rb +249 -61
- 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 +184 -84
- data/lib/active_record/result.rb +17 -7
- data/lib/active_record/runtime_registry.rb +9 -13
- data/lib/active_record/sanitization.rb +11 -7
- data/lib/active_record/schema.rb +38 -23
- data/lib/active_record/schema_dumper.rb +25 -19
- data/lib/active_record/schema_migration.rb +4 -4
- data/lib/active_record/scoping/default.rb +61 -12
- data/lib/active_record/scoping/named.rb +3 -11
- data/lib/active_record/scoping.rb +64 -34
- data/lib/active_record/serialization.rb +1 -1
- data/lib/active_record/signed_id.rb +1 -1
- data/lib/active_record/suppressor.rb +11 -15
- data/lib/active_record/tasks/database_tasks.rb +120 -58
- data/lib/active_record/tasks/mysql_database_tasks.rb +1 -1
- data/lib/active_record/tasks/postgresql_database_tasks.rb +19 -12
- data/lib/active_record/test_databases.rb +1 -1
- data/lib/active_record/test_fixtures.rb +4 -4
- data/lib/active_record/timestamp.rb +3 -4
- data/lib/active_record/transactions.rb +9 -14
- data/lib/active_record/translation.rb +2 -2
- 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 +1 -1
- 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 +1 -1
- data/lib/active_record/validations/uniqueness.rb +1 -1
- data/lib/active_record.rb +204 -28
- 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/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 +56 -11
data/CHANGELOG.md
CHANGED
@@ -1,1621 +1,1877 @@
|
|
1
|
-
## Rails
|
1
|
+
## Rails 7.0.2.3 (March 08, 2022) ##
|
2
2
|
|
3
3
|
* No changes.
|
4
4
|
|
5
5
|
|
6
|
-
## Rails
|
6
|
+
## Rails 7.0.2.2 (February 11, 2022) ##
|
7
7
|
|
8
8
|
* No changes.
|
9
9
|
|
10
10
|
|
11
|
-
## Rails
|
11
|
+
## Rails 7.0.2.1 (February 11, 2022) ##
|
12
12
|
|
13
13
|
* No changes.
|
14
14
|
|
15
15
|
|
16
|
-
## Rails
|
16
|
+
## Rails 7.0.2 (February 08, 2022) ##
|
17
17
|
|
18
|
-
*
|
18
|
+
* Fix `PG.connect` keyword arguments deprecation warning on ruby 2.7.
|
19
19
|
|
20
|
+
*Nikita Vasilevsky*
|
20
21
|
|
21
|
-
|
22
|
+
* Fix the ability to exclude encryption params from being autofiltered.
|
22
23
|
|
23
|
-
*
|
24
|
+
*Mark Gangl*
|
24
25
|
|
26
|
+
* Dump the precision for datetime columns following the new defaults.
|
25
27
|
|
26
|
-
|
28
|
+
*Rafael Mendonça França*
|
27
29
|
|
28
|
-
*
|
30
|
+
* Make sure encrypted attributes are not being filtered twice.
|
29
31
|
|
32
|
+
*Nikita Vasilevsky*
|
30
33
|
|
31
|
-
|
34
|
+
* Dump the database schema containing the current Rails version.
|
32
35
|
|
33
|
-
|
36
|
+
Since https://github.com/rails/rails/pull/42297, Rails now generate datetime columns
|
37
|
+
with a default precision of 6. This means that users upgrading to Rails 7.0 from 6.1,
|
38
|
+
when loading the database schema, would get the new precision value, which would not match
|
39
|
+
the production schema.
|
34
40
|
|
35
|
-
|
41
|
+
To avoid this the schema dumper will generate the new format which will include the Rails
|
42
|
+
version and will look like this:
|
36
43
|
|
37
|
-
|
44
|
+
```
|
45
|
+
ActiveRecord::Schema[7.0].define
|
46
|
+
```
|
38
47
|
|
39
|
-
|
48
|
+
When upgrading from Rails 6.1 to Rails 7.0, you can run the `rails app:update` task that will
|
49
|
+
set the current schema version to 6.1.
|
40
50
|
|
41
|
-
*
|
51
|
+
*Rafael Mendonça França*
|
42
52
|
|
43
|
-
|
44
|
-
Active Record's schema cache loader and `YAMLColumn` now uses `YAML.unsafe_load` if available.
|
53
|
+
* Fix parsing expression for PostgreSQL generated column.
|
45
54
|
|
46
|
-
*
|
55
|
+
*fatkodima*
|
47
56
|
|
48
|
-
*
|
57
|
+
* Fix `Mysql2::Error: Commands out of sync; you can't run this command now`
|
58
|
+
when bulk-inserting fixtures that exceed `max_allowed_packet` configuration.
|
49
59
|
|
50
|
-
*
|
60
|
+
*Nikita Vasilevsky*
|
51
61
|
|
52
|
-
*
|
62
|
+
* Fix error when saving an association with a relation named `record`.
|
53
63
|
|
54
|
-
*
|
64
|
+
*Dorian Marié*
|
55
65
|
|
56
|
-
*
|
66
|
+
* Fix `MySQL::SchemaDumper` behavior about datetime precision value.
|
57
67
|
|
58
|
-
*
|
68
|
+
*y0t4*
|
59
69
|
|
60
|
-
*
|
70
|
+
* Improve associated with no reflection error.
|
61
71
|
|
62
|
-
*
|
72
|
+
*Nikolai*
|
63
73
|
|
64
|
-
*
|
74
|
+
* Fix PG.connect keyword arguments deprecation warning on ruby 2.7.
|
65
75
|
|
66
|
-
|
76
|
+
Fixes #44307.
|
67
77
|
|
68
|
-
*
|
69
|
-
`quoted_node` so that PostgreSQL arrays are quoted properly.
|
78
|
+
*Nikita Vasilevsky*
|
70
79
|
|
71
|
-
|
80
|
+
* Fix passing options to `check_constraint` from `change_table`.
|
72
81
|
|
73
|
-
*
|
82
|
+
*Frederick Cheung*
|
74
83
|
|
75
|
-
*Ryuta Kamizono*
|
76
84
|
|
77
|
-
|
85
|
+
## Rails 7.0.1 (January 06, 2022) ##
|
78
86
|
|
79
|
-
*Jacopo Beschi*
|
80
87
|
|
81
|
-
*
|
88
|
+
* Change `QueryMethods#in_order_of` to drop records not listed in values.
|
82
89
|
|
83
|
-
|
90
|
+
`in_order_of` now filters down to the values provided, to match the behavior of the `Enumerable` version.
|
84
91
|
|
85
|
-
*
|
92
|
+
*Kevin Newton*
|
86
93
|
|
87
|
-
|
88
|
-
relation set `strict_loading` to false the false wasn't considered when
|
89
|
-
deciding whether to raise/warn about strict loading.
|
94
|
+
* Allow named expression indexes to be revertible.
|
90
95
|
|
91
|
-
|
92
|
-
class Dog < ActiveRecord::Base
|
93
|
-
self.strict_loading_by_default = true
|
96
|
+
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.
|
94
97
|
|
95
|
-
|
96
|
-
|
98
|
+
```ruby
|
99
|
+
add_index(:settings, "(data->'property')", using: :gin, name: :index_settings_data_property)
|
97
100
|
```
|
98
101
|
|
99
|
-
|
100
|
-
`strict_loading` was set to false. This is a bug effecting more than
|
101
|
-
Active Storage which is why I made this PR superceeding #41461. We need
|
102
|
-
to fix this for all applications since the behavior is a little
|
103
|
-
surprising. I took the test from ##41461 and the code suggestion from #41453
|
104
|
-
with some additions.
|
102
|
+
Fixes #43331.
|
105
103
|
|
106
|
-
*
|
104
|
+
*Oliver Günther*
|
107
105
|
|
108
|
-
*
|
106
|
+
* Better error messages when association name is invalid in the argument of `ActiveRecord::QueryMethods::WhereChain#missing`.
|
109
107
|
|
110
|
-
*
|
108
|
+
*ykpythemind*
|
111
109
|
|
112
|
-
* Fix
|
110
|
+
* Fix ordered migrations for single db in multi db environment.
|
113
111
|
|
114
|
-
*
|
112
|
+
*Himanshu*
|
115
113
|
|
116
|
-
*
|
114
|
+
* Extract `on update CURRENT_TIMESTAMP` for mysql2 adapter.
|
117
115
|
|
118
|
-
*
|
116
|
+
*Kazuhiro Masuda*
|
119
117
|
|
120
|
-
* Fix
|
118
|
+
* Fix incorrect argument in PostgreSQL structure dump tasks.
|
121
119
|
|
122
|
-
|
120
|
+
Updating the `--no-comment` argument added in Rails 7 to the correct `--no-comments` argument.
|
123
121
|
|
124
|
-
*
|
122
|
+
*Alex Dent*
|
125
123
|
|
126
|
-
|
124
|
+
* Fix schema dumping column default SQL values for sqlite3.
|
127
125
|
|
126
|
+
*fatkodima*
|
128
127
|
|
129
|
-
|
128
|
+
* Correctly parse complex check constraint expressions for PostgreSQL.
|
130
129
|
|
131
|
-
*
|
130
|
+
*fatkodima*
|
131
|
+
|
132
|
+
* Fix `timestamptz` attributes on PostgreSQL handle blank inputs.
|
132
133
|
|
134
|
+
*Alex Ghiculescu*
|
133
135
|
|
134
|
-
|
136
|
+
* Fix migration compatibility to create SQLite references/belongs_to column as integer when migration version is 6.0.
|
135
137
|
|
136
|
-
|
138
|
+
Reference/belongs_to in migrations with version 6.0 were creating columns as
|
139
|
+
bigint instead of integer for the SQLite Adapter.
|
137
140
|
|
141
|
+
*Marcelo Lauxen*
|
138
142
|
|
139
|
-
|
143
|
+
* Fix joining through a polymorphic association.
|
140
144
|
|
141
|
-
*
|
142
|
-
to the connection session.
|
145
|
+
*Alexandre Ruban*
|
143
146
|
|
144
|
-
|
147
|
+
* Fix `QueryMethods#in_order_of` to handle empty order list.
|
145
148
|
|
146
|
-
|
147
|
-
|
149
|
+
```ruby
|
150
|
+
Post.in_order_of(:id, []).to_a
|
151
|
+
```
|
148
152
|
|
149
|
-
|
153
|
+
Also more explicitly set the column as secondary order, so that any other
|
154
|
+
value is still ordered.
|
150
155
|
|
151
|
-
*
|
152
|
-
an `IN` clause.
|
156
|
+
*Jean Boussier*
|
153
157
|
|
154
|
-
|
158
|
+
* Fix `rails dbconsole` for 3-tier config.
|
155
159
|
|
156
|
-
*
|
157
|
-
with a having clause
|
160
|
+
*Eileen M. Uchitelle*
|
158
161
|
|
159
|
-
|
160
|
-
references an aliased select value would generate an error when
|
161
|
-
#include? was called, due to an optimisation that would generate
|
162
|
-
call #exists? on the relation instead, which effectively alters
|
163
|
-
the select values of the query (and thus removes the aliased select
|
164
|
-
values), but leaves the having clause intact. Because the having
|
165
|
-
clause is then referencing an aliased column that is no longer
|
166
|
-
present in the simplified query, an ActiveRecord::InvalidStatement
|
167
|
-
error was raised.
|
162
|
+
* Fix quoting of column aliases generated by calculation methods.
|
168
163
|
|
169
|
-
|
164
|
+
Since the alias is derived from the table name, we can't assume the result
|
165
|
+
is a valid identifier.
|
170
166
|
|
171
167
|
```ruby
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
168
|
+
class Test < ActiveRecord::Base
|
169
|
+
self.table_name = '1abc'
|
170
|
+
end
|
171
|
+
Test.group(:id).count
|
172
|
+
# syntax error at or near "1" (ActiveRecord::StatementInvalid)
|
173
|
+
# LINE 1: SELECT COUNT(*) AS count_all, "1abc"."id" AS 1abc_id FROM "1...
|
177
174
|
```
|
178
175
|
|
179
|
-
|
180
|
-
simplified #exists? query, which simply checks for the presence of
|
181
|
-
a having clause.
|
182
|
-
|
183
|
-
Fixes #41417
|
184
|
-
|
185
|
-
*Michael Smart*
|
186
|
-
|
187
|
-
* Increment postgres prepared statement counter before making a prepared statement, so if the statement is aborted
|
188
|
-
without Rails knowledge (e.g., if app gets kill -9d during long-running query or due to Rack::Timeout), app won't end
|
189
|
-
up in perpetual crash state for being inconsistent with Postgres.
|
190
|
-
|
191
|
-
*wbharding*, *Martin Tepper*
|
192
|
-
|
176
|
+
*Jean Boussier*
|
193
177
|
|
194
|
-
## Rails 6.1.2.1 (February 10, 2021) ##
|
195
178
|
|
196
|
-
|
179
|
+
## Rails 7.0.0 (December 15, 2021) ##
|
197
180
|
|
198
|
-
|
199
|
-
for validating the money format in the PostgreSQL adapter. This patch
|
200
|
-
fixes the regexp.
|
181
|
+
* Better handle SQL queries with invalid encoding.
|
201
182
|
|
202
|
-
|
183
|
+
```ruby
|
184
|
+
Post.create(name: "broken \xC8 UTF-8")
|
185
|
+
```
|
203
186
|
|
204
|
-
|
187
|
+
Would cause all adapters to fail in a non controlled way in the code
|
188
|
+
responsible to detect write queries.
|
205
189
|
|
206
|
-
|
190
|
+
The query is now properly passed to the database connection, which might or might
|
191
|
+
not be able to handle it, but will either succeed or failed in a more correct way.
|
207
192
|
|
193
|
+
*Jean Boussier*
|
208
194
|
|
209
|
-
|
195
|
+
* Move database and shard selection config options to a generator.
|
210
196
|
|
211
|
-
|
197
|
+
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.
|
212
198
|
|
213
199
|
*Eileen M. Uchitelle*
|
214
200
|
|
215
|
-
* Make destroy async transactional.
|
216
201
|
|
217
|
-
|
218
|
-
case the job would enqueue even though the database deletion
|
219
|
-
rolledback putting things in a funky state.
|
202
|
+
## Rails 7.0.0.rc3 (December 14, 2021) ##
|
220
203
|
|
221
|
-
|
204
|
+
* No changes.
|
222
205
|
|
223
|
-
*Cory Gwin*
|
224
206
|
|
225
|
-
|
207
|
+
## Rails 7.0.0.rc2 (December 14, 2021) ##
|
226
208
|
|
227
|
-
|
209
|
+
* No changes.
|
228
210
|
|
229
|
-
* Connection specification now passes the "url" key as a configuration for the
|
230
|
-
adapter if the "url" protocol is "jdbc", "http", or "https". Previously only
|
231
|
-
urls with the "jdbc" prefix were passed to the Active Record Adapter, others
|
232
|
-
are assumed to be adapter specification urls.
|
233
211
|
|
234
|
-
|
212
|
+
## Rails 7.0.0.rc1 (December 06, 2021) ##
|
235
213
|
|
236
|
-
|
214
|
+
* Remove deprecated `ActiveRecord::DatabaseConfigurations::DatabaseConfig#spec_name`.
|
237
215
|
|
238
|
-
*
|
216
|
+
*Rafael Mendonça França*
|
239
217
|
|
240
|
-
|
218
|
+
* Remove deprecated `ActiveRecord::Connection#in_clause_length`.
|
241
219
|
|
242
|
-
*
|
220
|
+
*Rafael Mendonça França*
|
243
221
|
|
244
|
-
|
222
|
+
* Remove deprecated `ActiveRecord::Connection#allowed_index_name_length`.
|
245
223
|
|
246
|
-
*
|
224
|
+
*Rafael Mendonça França*
|
247
225
|
|
248
|
-
|
226
|
+
* Remove deprecated `ActiveRecord::Base#remove_connection`.
|
249
227
|
|
250
|
-
*
|
228
|
+
*Rafael Mendonça França*
|
251
229
|
|
252
|
-
|
230
|
+
* Load STI Models in fixtures
|
253
231
|
|
254
|
-
|
232
|
+
Data from Fixtures now loads based on the specific class for models with
|
233
|
+
Single Table Inheritance. This affects enums defined in subclasses, previously
|
234
|
+
the value of these fields was not parsed and remained `nil`
|
255
235
|
|
256
|
-
*
|
236
|
+
*Andres Howard*
|
257
237
|
|
238
|
+
* `#authenticate` returns false when the password is blank instead of raising an error.
|
258
239
|
|
259
|
-
|
240
|
+
*Muhammad Muhammad Ibrahim*
|
260
241
|
|
261
|
-
* Fix
|
242
|
+
* Fix `ActiveRecord::QueryMethods#in_order_of` behavior for integer enums.
|
262
243
|
|
263
|
-
|
244
|
+
`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.
|
264
245
|
|
265
|
-
|
246
|
+
The following example now works as expected:
|
266
247
|
|
267
|
-
|
248
|
+
```ruby
|
249
|
+
class Book < ApplicationRecord
|
250
|
+
enum status: [:proposed, :written, :published]
|
251
|
+
end
|
268
252
|
|
269
|
-
|
253
|
+
Book.in_order_of(:status, %w[written published proposed])
|
254
|
+
```
|
270
255
|
|
271
|
-
*
|
256
|
+
*Alexandre Ruban*
|
272
257
|
|
273
|
-
*
|
258
|
+
* Ignore persisted in-memory records when merging target lists.
|
274
259
|
|
275
|
-
*
|
260
|
+
*Kevin Sjöberg*
|
276
261
|
|
277
|
-
*
|
262
|
+
* Add a new option `:update_only` to `upsert_all` to configure the list of columns to update in case of conflict.
|
278
263
|
|
279
|
-
|
264
|
+
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:
|
280
265
|
|
281
|
-
|
266
|
+
```ruby
|
267
|
+
Commodity.upsert_all(
|
268
|
+
[
|
269
|
+
{ id: 2, name: "Copper", price: 4.84 },
|
270
|
+
{ id: 4, name: "Gold", price: 1380.87 },
|
271
|
+
{ id: 6, name: "Aluminium", price: 0.35 }
|
272
|
+
],
|
273
|
+
update_only: [:price] # Only prices will be updated
|
274
|
+
)
|
275
|
+
```
|
282
276
|
|
283
|
-
*
|
277
|
+
*Jorge Manrubia*
|
284
278
|
|
285
|
-
*
|
279
|
+
* Remove deprecated `ActiveRecord::Result#map!` and `ActiveRecord::Result#collect!`.
|
286
280
|
|
287
281
|
*Rafael Mendonça França*
|
288
282
|
|
289
|
-
*
|
283
|
+
* Remove deprecated `ActiveRecord::Base.configurations.to_h`.
|
290
284
|
|
291
|
-
*
|
285
|
+
*Rafael Mendonça França*
|
292
286
|
|
293
|
-
*
|
287
|
+
* Remove deprecated `ActiveRecord::Base.configurations.default_hash`.
|
294
288
|
|
295
|
-
*
|
289
|
+
*Rafael Mendonça França*
|
296
290
|
|
297
|
-
*
|
291
|
+
* Remove deprecated `ActiveRecord::Base.arel_attribute`.
|
298
292
|
|
299
|
-
|
300
|
-
to throw an error saying :polymorphic would not be a valid option.
|
293
|
+
*Rafael Mendonça França*
|
301
294
|
|
302
|
-
|
295
|
+
* Remove deprecated `ActiveRecord::Base.connection_config`.
|
303
296
|
|
304
|
-
*
|
297
|
+
*Rafael Mendonça França*
|
305
298
|
|
306
|
-
|
299
|
+
* Filter attributes in SQL logs
|
307
300
|
|
308
|
-
Previously,
|
309
|
-
|
310
|
-
|
301
|
+
Previously, SQL queries in logs containing `ActiveRecord::Base.filter_attributes` were not filtered.
|
302
|
+
|
303
|
+
Now, the filter attributes will be masked `[FILTERED]` in the logs when `prepared_statement` is enabled.
|
311
304
|
|
312
|
-
```ruby
|
313
|
-
add_index(:items, "to_tsvector('english', description)")
|
314
305
|
```
|
306
|
+
# Before:
|
307
|
+
Foo Load (0.2ms) SELECT "foos".* FROM "foos" WHERE "foos"."passw" = ? LIMIT ? [["passw", "hello"], ["LIMIT", 1]]
|
315
308
|
|
316
|
-
|
309
|
+
# After:
|
310
|
+
Foo Load (0.5ms) SELECT "foos".* FROM "foos" WHERE "foos"."passw" = ? LIMIT ? [["passw", "[FILTERED]"], ["LIMIT", 1]]
|
311
|
+
```
|
317
312
|
|
313
|
+
*Aishwarya Subramanian*
|
318
314
|
|
319
|
-
|
315
|
+
* Remove deprecated `Tasks::DatabaseTasks.spec`.
|
320
316
|
|
321
|
-
*
|
317
|
+
*Rafael Mendonça França*
|
322
318
|
|
323
|
-
|
319
|
+
* Remove deprecated `Tasks::DatabaseTasks.current_config`.
|
324
320
|
|
325
|
-
*
|
321
|
+
*Rafael Mendonça França*
|
326
322
|
|
327
|
-
*
|
323
|
+
* Deprecate `Tasks::DatabaseTasks.schema_file_type`.
|
328
324
|
|
329
325
|
*Rafael Mendonça França*
|
330
326
|
|
331
|
-
*
|
327
|
+
* Remove deprecated `Tasks::DatabaseTasks.dump_filename`.
|
332
328
|
|
333
|
-
|
334
|
-
|
335
|
-
*Tomoyuki Kai*
|
329
|
+
*Rafael Mendonça França*
|
336
330
|
|
337
|
-
*
|
331
|
+
* Remove deprecated `Tasks::DatabaseTasks.schema_file`.
|
338
332
|
|
339
|
-
|
340
|
-
class AdminAuthor
|
341
|
-
delegate_missing_to :@author
|
333
|
+
*Rafael Mendonça França*
|
342
334
|
|
343
|
-
|
344
|
-
@author = author
|
345
|
-
end
|
346
|
-
end
|
335
|
+
* Remove deprecated `environment` and `name` arguments from `Tasks::DatabaseTasks.schema_up_to_date?`.
|
347
336
|
|
348
|
-
|
349
|
-
```
|
337
|
+
*Rafael Mendonça França*
|
350
338
|
|
351
|
-
|
339
|
+
* Merging conditions on the same column no longer maintain both conditions,
|
340
|
+
and will be consistently replaced by the latter condition.
|
352
341
|
|
353
|
-
|
342
|
+
```ruby
|
343
|
+
# Rails 6.1 (IN clause is replaced by merger side equality condition)
|
344
|
+
Author.where(id: [david.id, mary.id]).merge(Author.where(id: bob)) # => [bob]
|
345
|
+
# Rails 6.1 (both conflict conditions exists, deprecated)
|
346
|
+
Author.where(id: david.id..mary.id).merge(Author.where(id: bob)) # => []
|
347
|
+
# Rails 6.1 with rewhere to migrate to Rails 7.0's behavior
|
348
|
+
Author.where(id: david.id..mary.id).merge(Author.where(id: bob), rewhere: true) # => [bob]
|
349
|
+
# Rails 7.0 (same behavior with IN clause, mergee side condition is consistently replaced)
|
350
|
+
Author.where(id: [david.id, mary.id]).merge(Author.where(id: bob)) # => [bob]
|
351
|
+
Author.where(id: david.id..mary.id).merge(Author.where(id: bob)) # => [bob]
|
354
352
|
|
355
|
-
|
353
|
+
*Rafael Mendonça França*
|
356
354
|
|
357
|
-
|
355
|
+
* Remove deprecated support to `Model.reorder(nil).first` to search using non-deterministic order.
|
358
356
|
|
359
|
-
|
360
|
-
MealsRecord.connected_to(role: :reading) do
|
361
|
-
Dog.first # read from animals replica
|
362
|
-
Dinner.first # read from meals replica
|
363
|
-
Person.first # read from primary writer
|
364
|
-
end
|
365
|
-
end
|
357
|
+
*Rafael Mendonça França*
|
366
358
|
|
367
|
-
|
359
|
+
* Remove deprecated rake tasks:
|
368
360
|
|
369
|
-
|
370
|
-
|
371
|
-
|
372
|
-
|
373
|
-
|
361
|
+
* `db:schema:load_if_ruby`
|
362
|
+
* `db:structure:dump`
|
363
|
+
* `db:structure:load`
|
364
|
+
* `db:structure:load_if_sql`
|
365
|
+
* `db:structure:dump:#{name}`
|
366
|
+
* `db:structure:load:#{name}`
|
367
|
+
* `db:test:load_structure`
|
368
|
+
* `db:test:load_structure:#{name}`
|
374
369
|
|
375
|
-
*
|
370
|
+
*Rafael Mendonça França*
|
376
371
|
|
377
|
-
*
|
372
|
+
* Remove deprecated `DatabaseConfig#config` method.
|
378
373
|
|
379
|
-
|
374
|
+
*Rafael Mendonça França*
|
380
375
|
|
381
|
-
|
376
|
+
* Rollback transactions when the block returns earlier than expected.
|
382
377
|
|
383
|
-
|
378
|
+
Before this change, when a transaction block returned early, the transaction would be committed.
|
384
379
|
|
385
|
-
|
380
|
+
The problem is that timeouts triggered inside the transaction block was also making the incomplete transaction
|
381
|
+
to be committed, so in order to avoid this mistake, the transaction block is rolled back.
|
386
382
|
|
387
|
-
|
383
|
+
*Rafael Mendonça França*
|
388
384
|
|
389
|
-
|
385
|
+
* Add middleware for automatic shard swapping.
|
390
386
|
|
391
|
-
|
387
|
+
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:
|
392
388
|
|
393
|
-
|
389
|
+
```ruby
|
390
|
+
config.active_record.shard_resolver = ->(request) {
|
391
|
+
subdomain = request.subdomain
|
392
|
+
tenant = Tenant.find_by_subdomain!(subdomain)
|
393
|
+
tenant.shard
|
394
|
+
}
|
395
|
+
```
|
394
396
|
|
395
|
-
|
397
|
+
See guides for more details.
|
396
398
|
|
397
|
-
|
399
|
+
*Eileen M. Uchitelle*, *John Crepezzi*
|
398
400
|
|
399
|
-
|
401
|
+
* Remove deprecated support to pass a column to `type_cast`.
|
400
402
|
|
401
|
-
*
|
402
|
-
no longer enforce case sensitive comparison by default.
|
403
|
+
*Rafael Mendonça França*
|
403
404
|
|
404
|
-
|
405
|
+
* Remove deprecated support to type cast to database values `ActiveRecord::Base` objects.
|
405
406
|
|
406
|
-
*
|
407
|
+
*Rafael Mendonça França*
|
407
408
|
|
408
|
-
|
409
|
-
`table_name_length`
|
410
|
-
`columns_per_table`
|
411
|
-
`indexes_per_table`
|
412
|
-
`columns_per_multicolumn_index`
|
413
|
-
`sql_query_length`
|
414
|
-
`joins_per_query`
|
409
|
+
* Remove deprecated support to quote `ActiveRecord::Base` objects.
|
415
410
|
|
416
411
|
*Rafael Mendonça França*
|
417
412
|
|
418
|
-
* Remove
|
413
|
+
* Remove deprecacated support to resolve connection using `"primary"` as connection specification name.
|
419
414
|
|
420
415
|
*Rafael Mendonça França*
|
421
416
|
|
422
|
-
* Remove
|
417
|
+
* Remove deprecation warning when using `:interval` column is used in PostgreSQL database.
|
423
418
|
|
424
|
-
|
419
|
+
Now, interval columns will return `ActiveSupport::Duration` objects instead of strings.
|
420
|
+
|
421
|
+
To keep the old behavior, you can add this line to your model:
|
425
422
|
|
426
|
-
|
423
|
+
```ruby
|
424
|
+
attribute :column, :string
|
425
|
+
```
|
427
426
|
|
428
427
|
*Rafael Mendonça França*
|
429
428
|
|
430
|
-
* Remove deprecated `ActiveRecord::Base
|
429
|
+
* Remove deprecated support to YAML load `ActiveRecord::Base` instance in the Rails 4.2 and 4.1 formats.
|
431
430
|
|
432
431
|
*Rafael Mendonça França*
|
433
432
|
|
434
|
-
* Remove deprecated `
|
433
|
+
* Remove deprecated option `:spec_name` in the `configs_for` method.
|
435
434
|
|
436
435
|
*Rafael Mendonça França*
|
437
436
|
|
438
|
-
* Remove deprecated
|
437
|
+
* Remove deprecated `ActiveRecord::Base.allow_unsafe_raw_sql`.
|
439
438
|
|
440
439
|
*Rafael Mendonça França*
|
441
440
|
|
442
|
-
*
|
443
|
-
in initialization block and callbacks.
|
441
|
+
* Fix regression bug that caused ignoring additional conditions for preloading has_many-through relations.
|
444
442
|
|
445
|
-
|
446
|
-
|
447
|
-
User.where(name: "John").create do |john|
|
448
|
-
User.find_by(name: "David") # => nil
|
449
|
-
end
|
443
|
+
Fixes #43132
|
450
444
|
|
451
|
-
|
445
|
+
*Alexander Pauly*
|
452
446
|
|
453
|
-
|
454
|
-
User.find_by(name: "David") # => #<User name: "David", ...>
|
455
|
-
end
|
447
|
+
* Fix `has_many` inversing recursion on models with recursive associations.
|
456
448
|
|
457
|
-
*
|
449
|
+
*Gannon McGibbon*
|
458
450
|
|
459
|
-
*
|
451
|
+
* Add `accepts_nested_attributes_for` support for `delegated_type`
|
460
452
|
|
461
|
-
|
462
|
-
|
463
|
-
|
453
|
+
```ruby
|
454
|
+
class Entry < ApplicationRecord
|
455
|
+
delegated_type :entryable, types: %w[ Message Comment ]
|
456
|
+
accepts_nested_attributes_for :entryable
|
457
|
+
end
|
464
458
|
|
465
|
-
|
459
|
+
entry = Entry.create(entryable_type: 'Message', entryable_attributes: { content: 'Hello world' })
|
460
|
+
# => #<Entry:0x00>
|
461
|
+
# id: 1
|
462
|
+
# entryable_id: 1,
|
463
|
+
# entryable_type: 'Message'
|
464
|
+
# ...>
|
465
|
+
|
466
|
+
entry.entryable
|
467
|
+
# => #<Message:0x01>
|
468
|
+
# id: 1
|
469
|
+
# content: 'Hello world'
|
470
|
+
# ...>
|
471
|
+
```
|
466
472
|
|
467
|
-
|
468
|
-
# SELECT * FROM users WHERE name = 'John' AND name = 'David'
|
473
|
+
Previously it would raise an error:
|
469
474
|
|
470
|
-
|
475
|
+
```ruby
|
476
|
+
Entry.create(entryable_type: 'Message', entryable_attributes: { content: 'Hello world' })
|
477
|
+
# ArgumentError: Cannot build association `entryable'. Are you trying to build a polymorphic one-to-one association?
|
478
|
+
```
|
471
479
|
|
472
|
-
|
473
|
-
# SELECT * FROM users WHERE name = 'David'
|
480
|
+
*Sjors Baltus*
|
474
481
|
|
475
|
-
|
482
|
+
* Use subquery for DELETE with GROUP_BY and HAVING clauses.
|
476
483
|
|
477
|
-
|
484
|
+
Prior to this change, deletes with GROUP_BY and HAVING were returning an error.
|
478
485
|
|
479
|
-
|
480
|
-
`each`
|
481
|
-
`first`
|
482
|
-
`values`
|
483
|
-
`[]=`
|
486
|
+
After this change, GROUP_BY and HAVING are valid clauses in DELETE queries, generating the following query:
|
484
487
|
|
485
|
-
|
488
|
+
```sql
|
489
|
+
DELETE FROM "posts" WHERE "posts"."id" IN (
|
490
|
+
SELECT "posts"."id" FROM "posts" INNER JOIN "comments" ON "comments"."post_id" = "posts"."id" GROUP BY "posts"."id" HAVING (count(comments.id) >= 2))
|
491
|
+
) [["flagged", "t"]]
|
492
|
+
```
|
486
493
|
|
487
|
-
*
|
494
|
+
*Ignacio Chiazzo Cardarello*
|
488
495
|
|
489
|
-
|
496
|
+
* Use subquery for UPDATE with GROUP_BY and HAVING clauses.
|
490
497
|
|
491
|
-
|
492
|
-
# SELECT * FROM users WHERE name != 'Jon' AND role != 'admin'
|
498
|
+
Prior to this change, updates with GROUP_BY and HAVING were being ignored, generating a SQL like this:
|
493
499
|
|
494
|
-
|
500
|
+
```sql
|
501
|
+
UPDATE "posts" SET "flagged" = ? WHERE "posts"."id" IN (
|
502
|
+
SELECT "posts"."id" FROM "posts" INNER JOIN "comments" ON "comments"."post_id" = "posts"."id"
|
503
|
+
) [["flagged", "t"]]
|
504
|
+
```
|
495
505
|
|
496
|
-
|
497
|
-
# SELECT * FROM users WHERE NOT (name == 'Jon' AND role == 'admin')
|
506
|
+
After this change, GROUP_BY and HAVING clauses are used as a subquery in updates, like this:
|
498
507
|
|
499
|
-
|
508
|
+
```sql
|
509
|
+
UPDATE "posts" SET "flagged" = ? WHERE "posts"."id" IN (
|
510
|
+
SELECT "posts"."id" FROM "posts" INNER JOIN "comments" ON "comments"."post_id" = "posts"."id"
|
511
|
+
GROUP BY posts.id HAVING (count(comments.id) >= 2)
|
512
|
+
) [["flagged", "t"]]
|
513
|
+
```
|
500
514
|
|
501
|
-
*
|
515
|
+
*Ignacio Chiazzo Cardarello*
|
502
516
|
|
503
|
-
|
517
|
+
* Add support for setting the filename of the schema or structure dump in the database config.
|
504
518
|
|
505
|
-
|
519
|
+
Applications may now set their the filename or path of the schema / structure dump file in their database configuration.
|
506
520
|
|
507
|
-
|
521
|
+
```yaml
|
522
|
+
production:
|
523
|
+
primary:
|
524
|
+
database: my_db
|
525
|
+
schema_dump: my_schema_dump_filename.rb
|
526
|
+
animals:
|
527
|
+
database: animals_db
|
528
|
+
schema_dump: false
|
529
|
+
```
|
508
530
|
|
509
|
-
|
531
|
+
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`.
|
510
532
|
|
511
|
-
*
|
533
|
+
*Eileen M. Uchitelle*, *Ryan Kerr*
|
512
534
|
|
513
|
-
*
|
514
|
-
message using `config.active_record.suppress_multiple_database_warning`.
|
535
|
+
* Add `ActiveRecord::Base.prohibit_shard_swapping` to prevent attempts to change the shard within a block.
|
515
536
|
|
516
|
-
*
|
537
|
+
*John Crepezzi*, *Eileen M. Uchitelle*
|
517
538
|
|
518
|
-
*
|
539
|
+
* Filter unchanged attributes with default function from insert query when `partial_inserts` is disabled.
|
519
540
|
|
520
|
-
|
541
|
+
*Akshay Birajdar*, *Jacopo Beschi*
|
521
542
|
|
522
|
-
|
543
|
+
* Add support for FILTER clause (SQL:2003) to Arel.
|
523
544
|
|
524
|
-
|
545
|
+
Currently supported by PostgreSQL 9.4+ and SQLite 3.30+.
|
525
546
|
|
526
|
-
|
527
|
-
ActiveRecord::Base.connected_to(role: :reading) do
|
528
|
-
User.first # reads from default replica
|
529
|
-
Dog.first # reads from default replica
|
547
|
+
*Andrey Novikov*
|
530
548
|
|
531
|
-
|
532
|
-
User.first # reads from default replica
|
533
|
-
Dog.first # reads from shard one primary
|
534
|
-
end
|
549
|
+
* Automatically set timestamps on record creation during bulk insert/upsert
|
535
550
|
|
536
|
-
|
537
|
-
Dog.first # reads from default replica
|
551
|
+
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}`).
|
538
552
|
|
539
|
-
|
540
|
-
User.first # reads from shard two primary
|
541
|
-
Dog.first # reads from default replica
|
542
|
-
end
|
543
|
-
end
|
544
|
-
```
|
553
|
+
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.
|
545
554
|
|
546
|
-
|
555
|
+
Note that this means `upsert_all` on models with `record_timestamps = false` will no longer touch `updated_{at,on}` automatically.
|
547
556
|
|
548
|
-
*
|
557
|
+
*Sam Bostock*
|
549
558
|
|
550
|
-
|
559
|
+
* Don't require `role` when passing `shard` to `connected_to`.
|
551
560
|
|
552
|
-
|
561
|
+
`connected_to` can now be called with a `shard` only. Note that `role` is still inherited if `connected_to` calls are nested.
|
553
562
|
|
554
|
-
|
563
|
+
*Eileen M. Uchitelle*
|
555
564
|
|
556
|
-
|
557
|
-
topic = Topic.first
|
558
|
-
topic.values_at(:title, :author_name)
|
559
|
-
# => ["Budget", "Jason"]
|
560
|
-
```
|
565
|
+
* Add option to lazily load the schema cache on the connection.
|
561
566
|
|
562
|
-
|
567
|
+
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.
|
563
568
|
|
564
|
-
|
569
|
+
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.
|
565
570
|
|
566
|
-
*
|
571
|
+
*Eileen M. Uchitelle*
|
567
572
|
|
568
|
-
|
573
|
+
* Allow automatic `inverse_of` detection for associations with scopes.
|
569
574
|
|
570
|
-
|
575
|
+
Automatic `inverse_of` detection now works for associations with scopes. For
|
576
|
+
example, the `comments` association here now automatically detects
|
577
|
+
`inverse_of: :post`, so we don't need to pass that option:
|
571
578
|
|
572
579
|
```ruby
|
573
|
-
class
|
574
|
-
|
575
|
-
|
576
|
-
|
577
|
-
|
580
|
+
class Post < ActiveRecord::Base
|
581
|
+
has_many :comments, -> { visible }
|
582
|
+
end
|
583
|
+
|
584
|
+
class Comment < ActiveRecord::Base
|
585
|
+
belongs_to :post
|
578
586
|
end
|
579
587
|
```
|
580
588
|
|
581
|
-
|
589
|
+
Note that the automatic detection still won't work if the inverse
|
590
|
+
association has a scope. In this example a scope on the `post` association
|
591
|
+
would still prevent Rails from finding the inverse for the `comments`
|
592
|
+
association.
|
582
593
|
|
583
|
-
|
584
|
-
total number of rows affected, just like their non-batched counterparts.
|
594
|
+
This will be the default for new apps in Rails 7. To opt in:
|
585
595
|
|
586
596
|
```ruby
|
587
|
-
|
588
|
-
Person.in_batches.delete_all # => 42
|
597
|
+
config.active_record.automatic_scope_inversing = true
|
589
598
|
```
|
590
599
|
|
591
|
-
|
592
|
-
|
593
|
-
*Eugene Kenny*
|
600
|
+
*Daniel Colson*, *Chris Bloom*
|
594
601
|
|
595
|
-
*
|
596
|
-
`ActiveSupport::Duration` when loading records from database and
|
597
|
-
serialization to ISO 8601 formatted duration string on save.
|
598
|
-
Add support to define a column in migrations and get it in a schema dump.
|
599
|
-
Optional column precision is supported.
|
602
|
+
* Accept optional transaction args to `ActiveRecord::Locking::Pessimistic#with_lock`
|
600
603
|
|
601
|
-
|
604
|
+
`#with_lock` now accepts transaction options like `requires_new:`,
|
605
|
+
`isolation:`, and `joinable:`
|
602
606
|
|
603
|
-
|
607
|
+
*John Mileham*
|
604
608
|
|
605
|
-
|
609
|
+
* Adds support for deferrable foreign key constraints in PostgreSQL.
|
606
610
|
|
607
|
-
|
611
|
+
By default, foreign key constraints in PostgreSQL are checked after each statement. This works for most use cases,
|
612
|
+
but becomes a major limitation when creating related records before the parent record is inserted into the database.
|
613
|
+
One example of this is looking up / creating a person via one or more unique alias.
|
608
614
|
|
609
|
-
|
615
|
+
```ruby
|
616
|
+
Person.transaction do
|
617
|
+
alias = Alias
|
618
|
+
.create_with(user_id: SecureRandom.uuid)
|
619
|
+
.create_or_find_by(name: "DHH")
|
620
|
+
|
621
|
+
person = Person
|
622
|
+
.create_with(name: "David Heinemeier Hansson")
|
623
|
+
.create_or_find_by(id: alias.user_id)
|
624
|
+
end
|
625
|
+
```
|
610
626
|
|
611
|
-
|
612
|
-
t.string :name
|
613
|
-
t.interval :duration
|
614
|
-
end
|
627
|
+
Using the default behavior, the transaction would fail when executing the first `INSERT` statement.
|
615
628
|
|
616
|
-
|
617
|
-
|
618
|
-
end
|
629
|
+
By passing the `:deferrable` option to the `add_foreign_key` statement in migrations, it's possible to defer this
|
630
|
+
check.
|
619
631
|
|
620
|
-
|
621
|
-
|
622
|
-
|
623
|
-
Event.new(duration: 'P1DT12H3S').duration # => 1 day, 12 hours, and 3 seconds
|
624
|
-
Event.new(duration: '1 day') # Unknown value will be ignored and NULL will be written to database
|
632
|
+
```ruby
|
633
|
+
add_foreign_key :aliases, :person, deferrable: true
|
634
|
+
```
|
625
635
|
|
626
|
-
|
636
|
+
Passing `deferrable: true` doesn't change the default behavior, but allows manually deferring the check using
|
637
|
+
`SET CONSTRAINTS ALL DEFERRED` within a transaction. This will cause the foreign keys to be checked after the
|
638
|
+
transaction.
|
627
639
|
|
628
|
-
|
640
|
+
It's also possible to adjust the default behavior from an immediate check (after the statement), to a deferred check
|
641
|
+
(after the transaction):
|
629
642
|
|
630
643
|
```ruby
|
631
|
-
|
632
|
-
belongs_to :supplier, dependent: :destroy_async
|
633
|
-
end
|
644
|
+
add_foreign_key :aliases, :person, deferrable: :deferred
|
634
645
|
```
|
635
646
|
|
636
|
-
|
647
|
+
*Benedikt Deicke*
|
648
|
+
|
649
|
+
* Allow configuring Postgres password through the socket URL.
|
637
650
|
|
638
|
-
|
651
|
+
For example:
|
652
|
+
```ruby
|
653
|
+
ActiveRecord::DatabaseConfigurations::UrlConfig.new(
|
654
|
+
:production, :production, 'postgres:///?user=user&password=secret&dbname=app', {}
|
655
|
+
).configuration_hash
|
656
|
+
```
|
639
657
|
|
640
|
-
|
658
|
+
will now return,
|
641
659
|
|
642
|
-
|
660
|
+
```ruby
|
661
|
+
{ :user=>"user", :password=>"secret", :dbname=>"app", :adapter=>"postgresql" }
|
662
|
+
```
|
643
663
|
|
644
|
-
*
|
664
|
+
*Abeid Ahmed*
|
645
665
|
|
646
|
-
|
666
|
+
* PostgreSQL: support custom enum types
|
647
667
|
|
648
|
-
|
668
|
+
In migrations, use `create_enum` to add a new enum type, and `t.enum` to add a column.
|
649
669
|
|
650
|
-
|
651
|
-
|
670
|
+
```ruby
|
671
|
+
def up
|
672
|
+
create_enum :mood, ["happy", "sad"]
|
652
673
|
|
653
|
-
|
674
|
+
change_table :cats do |t|
|
675
|
+
t.enum :current_mood, enum_type: "mood", default: "happy", null: false
|
676
|
+
end
|
677
|
+
end
|
678
|
+
```
|
654
679
|
|
655
|
-
|
656
|
-
|
680
|
+
Enums will be presented correctly in `schema.rb`. Note that this is only supported by
|
681
|
+
the PostgreSQL adapter.
|
657
682
|
|
658
|
-
*
|
683
|
+
*Alex Ghiculescu*
|
659
684
|
|
660
|
-
*
|
685
|
+
* Avoid COMMENT statements in PostgreSQL structure dumps
|
661
686
|
|
662
|
-
|
687
|
+
COMMENT statements are now omitted from the output of `db:structure:dump` when using PostgreSQL >= 11.
|
688
|
+
This allows loading the dump without a pgsql superuser account.
|
663
689
|
|
664
|
-
|
690
|
+
Fixes #36816, #43107.
|
665
691
|
|
666
|
-
|
692
|
+
*Janosch Müller*
|
667
693
|
|
668
|
-
|
694
|
+
* Add support for generated columns in PostgreSQL adapter
|
669
695
|
|
670
|
-
|
696
|
+
Generated columns are supported since version 12.0 of PostgreSQL. This adds
|
697
|
+
support of those to the PostgreSQL adapter.
|
671
698
|
|
672
699
|
```ruby
|
673
|
-
|
674
|
-
|
675
|
-
|
700
|
+
create_table :users do |t|
|
701
|
+
t.string :name
|
702
|
+
t.virtual :name_upcased, type: :string, as: 'upper(name)', stored: true
|
676
703
|
end
|
677
|
-
|
678
|
-
# ... FROM comments LEFT OUTER JOIN comments children ON ... WHERE children.label = 1
|
679
|
-
Comment.includes(:children).where("children.label": "child")
|
680
704
|
```
|
681
705
|
|
682
|
-
*
|
706
|
+
*Michał Begejowicz*
|
683
707
|
|
684
|
-
* Support storing demodulized class name for polymorphic type.
|
685
708
|
|
686
|
-
|
687
|
-
by `store_full_sti_class` class attribute.
|
709
|
+
## Rails 7.0.0.alpha2 (September 15, 2021) ##
|
688
710
|
|
689
|
-
|
711
|
+
* No changes.
|
690
712
|
|
691
|
-
*Ryuta Kamizono*
|
692
713
|
|
693
|
-
|
694
|
-
`rails db:schema:{load, dump}` tasks to work with either `:ruby` or `:sql` format,
|
695
|
-
depending on `config.active_record.schema_format` configuration value.
|
714
|
+
## Rails 7.0.0.alpha1 (September 15, 2021) ##
|
696
715
|
|
697
|
-
|
716
|
+
* Remove warning when overwriting existing scopes
|
698
717
|
|
699
|
-
|
718
|
+
Removes the following unnecessary warning message that appeared when overwriting existing scopes
|
700
719
|
|
701
|
-
```
|
702
|
-
|
703
|
-
|
704
|
-
post.body # => ActiveModel::MissingAttributeError
|
720
|
+
```
|
721
|
+
Creating scope :my_scope_name. Overwriting existing method "MyClass.my_scope_name" when overwriting existing scopes
|
722
|
+
```
|
705
723
|
|
706
|
-
|
707
|
-
post = Post.select("UPPER(title) AS title").eager_load(:comments).first
|
708
|
-
post.title # => "Welcome to the weblog"
|
709
|
-
post.body # => "Such a lovely day"
|
724
|
+
*Weston Ganger*
|
710
725
|
|
711
|
-
|
712
|
-
post = Post.select("UPPER(title) AS title").eager_load(:comments).first
|
713
|
-
post.title # => "WELCOME TO THE WEBLOG"
|
714
|
-
post.body # => ActiveModel::MissingAttributeError
|
715
|
-
```
|
726
|
+
* Use full precision for `updated_at` in `insert_all`/`upsert_all`
|
716
727
|
|
717
|
-
|
728
|
+
`CURRENT_TIMESTAMP` provides differing precision depending on the database,
|
729
|
+
and not all databases support explicitly specifying additional precision.
|
718
730
|
|
719
|
-
|
731
|
+
Instead, we delegate to the new `connection.high_precision_current_timestamp`
|
732
|
+
for the SQL to produce a high precision timestamp on the current database.
|
720
733
|
|
721
|
-
|
722
|
-
class Post < ActiveRecord::Base
|
723
|
-
attribute :written_at, default: -> { Time.now.utc }
|
724
|
-
end
|
734
|
+
Fixes #42992
|
725
735
|
|
726
|
-
|
727
|
-
Post.type_for_attribute(:written_at) # => #<Type::Value ... precision: nil, ...>
|
736
|
+
*Sam Bostock*
|
728
737
|
|
729
|
-
|
730
|
-
Post.type_for_attribute(:written_at) # => #<Type::DateTime ... precision: 6, ...>
|
731
|
-
```
|
738
|
+
* Add ssl support for postgresql database tasks
|
732
739
|
|
733
|
-
|
740
|
+
Add `PGSSLMODE`, `PGSSLCERT`, `PGSSLKEY` and `PGSSLROOTCERT` to pg_env from database config
|
741
|
+
when running postgresql database tasks.
|
734
742
|
|
735
|
-
|
743
|
+
```yaml
|
744
|
+
# config/database.yml
|
736
745
|
|
737
|
-
|
738
|
-
|
739
|
-
|
740
|
-
|
746
|
+
production:
|
747
|
+
sslmode: verify-full
|
748
|
+
sslcert: client.crt
|
749
|
+
sslkey: client.key
|
750
|
+
sslrootcert: ca.crt
|
751
|
+
```
|
752
|
+
|
753
|
+
Environment variables
|
741
754
|
|
742
|
-
|
755
|
+
```
|
756
|
+
PGSSLMODE=verify-full
|
757
|
+
PGSSLCERT=client.crt
|
758
|
+
PGSSLKEY=client.key
|
759
|
+
PGSSLROOTCERT=ca.crt
|
743
760
|
```
|
744
761
|
|
745
|
-
|
762
|
+
Fixes #42994
|
746
763
|
|
747
|
-
*
|
764
|
+
*Michael Bayucot*
|
748
765
|
|
749
|
-
|
766
|
+
* Avoid scoping update callbacks in `ActiveRecord::Relation#update!`.
|
750
767
|
|
751
|
-
|
752
|
-
|
753
|
-
otherwise specified. This will reduce memory pressure for applications which
|
754
|
-
do not generally mutate string properties of Active Record objects.
|
768
|
+
Making it consistent with how scoping is applied only to the query in `ActiveRecord::Relation#update`
|
769
|
+
and not also to the callbacks from the update itself.
|
755
770
|
|
756
|
-
*
|
771
|
+
*Dylan Thacker-Smith*
|
757
772
|
|
758
|
-
*
|
773
|
+
* Fix 2 cases that inferred polymorphic class from the association's `foreign_type`
|
774
|
+
using `String#constantize` instead of the model's `polymorphic_class_for`.
|
759
775
|
|
760
|
-
|
776
|
+
When updating a polymorphic association, the old `foreign_type` was not inferred correctly when:
|
777
|
+
1. `touch`ing the previously associated record
|
778
|
+
2. updating the previously associated record's `counter_cache`
|
761
779
|
|
762
|
-
*
|
780
|
+
*Jimmy Bourassa*
|
763
781
|
|
764
|
-
|
765
|
-
david_and_mary = Author.where(id: [david, mary])
|
766
|
-
mary_and_bob = Author.where(id: [mary, bob])
|
782
|
+
* Add config option for ignoring tables when dumping the schema cache.
|
767
783
|
|
768
|
-
|
784
|
+
Applications can now be configured to ignore certain tables when dumping the schema cache.
|
769
785
|
|
770
|
-
|
771
|
-
david_and_mary.or(mary_and_bob) # => [david, mary, bob]
|
772
|
-
```
|
786
|
+
The configuration option can table an array of tables:
|
773
787
|
|
774
|
-
|
788
|
+
```ruby
|
789
|
+
config.active_record.schema_cache_ignored_tables = ["ignored_table", "another_ignored_table"]
|
790
|
+
```
|
775
791
|
|
776
|
-
|
777
|
-
and will be consistently replaced by the latter condition in Rails 6.2.
|
778
|
-
To migrate to Rails 6.2's behavior, use `relation.merge(other, rewhere: true)`.
|
792
|
+
Or a regex:
|
779
793
|
|
780
794
|
```ruby
|
781
|
-
|
782
|
-
|
795
|
+
config.active_record.schema_cache_ignored_tables = [/^_/]
|
796
|
+
```
|
783
797
|
|
784
|
-
|
785
|
-
Author.where(id: david.id..mary.id).merge(Author.where(id: bob)) # => []
|
798
|
+
*Eileen M. Uchitelle*
|
786
799
|
|
787
|
-
|
788
|
-
Author.where(id: david.id..mary.id).merge(Author.where(id: bob), rewhere: true) # => [bob]
|
800
|
+
* Make schema cache methods return consistent results.
|
789
801
|
|
790
|
-
|
791
|
-
|
792
|
-
|
793
|
-
|
802
|
+
Previously the schema cache methods `primary_keys`, `columns`, `columns_hash`, and `indexes`
|
803
|
+
would behave differently than one another when a table didn't exist and differently across
|
804
|
+
database adapters. This change unifies the behavior so each method behaves the same regardless
|
805
|
+
of adapter.
|
794
806
|
|
795
|
-
|
807
|
+
The behavior now is:
|
796
808
|
|
797
|
-
|
809
|
+
`columns`: (unchanged) raises a db error if the table does not exist.
|
810
|
+
`columns_hash`: (unchanged) raises a db error if the table does not exist.
|
811
|
+
`primary_keys`: (unchanged) returns `nil` if the table does not exist.
|
812
|
+
`indexes`: (changed for mysql2) returns `[]` if the table does not exist.
|
798
813
|
|
799
|
-
*
|
814
|
+
*Eileen M. Uchitelle*
|
800
815
|
|
801
|
-
*
|
816
|
+
* Reestablish connection to previous database after after running `db:schema:load:name`
|
802
817
|
|
803
|
-
|
804
|
-
`ActiveRecord::Persistence.upsert_all` was used with the name of an expression index, an error
|
805
|
-
was raised. Adding a guard around the formatting behavior for the `:unique_by` corrects this.
|
818
|
+
After running `db:schema:load:name` the previous connection is restored.
|
806
819
|
|
807
|
-
|
820
|
+
*Jacopo Beschi*
|
808
821
|
|
809
|
-
|
810
|
-
create_table :books, id: :integer, force: true do |t|
|
811
|
-
t.column :name, :string
|
812
|
-
t.index "lower(name)", unique: true
|
813
|
-
end
|
822
|
+
* Add database config option `database_tasks`
|
814
823
|
|
815
|
-
|
816
|
-
|
824
|
+
If you would like to connect to an external database without any database
|
825
|
+
management tasks such as schema management, migrations, seeds, etc. you can set
|
826
|
+
the per database config option `database_tasks: false`
|
817
827
|
|
818
|
-
|
828
|
+
```yaml
|
829
|
+
# config/database.yml
|
819
830
|
|
820
|
-
|
831
|
+
production:
|
832
|
+
primary:
|
833
|
+
database: my_database
|
834
|
+
adapter: mysql2
|
835
|
+
animals:
|
836
|
+
database: my_animals_database
|
837
|
+
adapter: mysql2
|
838
|
+
database_tasks: false
|
839
|
+
```
|
821
840
|
|
822
|
-
*
|
841
|
+
*Weston Ganger*
|
823
842
|
|
824
|
-
|
843
|
+
* Fix `ActiveRecord::InternalMetadata` to not be broken by `config.active_record.record_timestamps = false`
|
825
844
|
|
826
|
-
|
827
|
-
|
828
|
-
remove_check_constraint :products, name: "price_check"
|
829
|
-
```
|
845
|
+
Since the model always create the timestamp columns, it has to set them, otherwise it breaks
|
846
|
+
various DB management tasks.
|
830
847
|
|
831
|
-
|
848
|
+
Fixes #42983
|
832
849
|
|
833
|
-
* Add `ActiveRecord::
|
834
|
-
to enable/disable strict_loading mode by default for a model. The configuration's value is
|
835
|
-
inheritable by subclasses, but they can override that value and it will not impact parent class.
|
850
|
+
* Add `ActiveRecord::QueryLogs`.
|
836
851
|
|
837
|
-
|
852
|
+
Configurable tags can be automatically added to all SQL queries generated by Active Record.
|
838
853
|
|
839
854
|
```ruby
|
840
|
-
|
841
|
-
|
842
|
-
|
843
|
-
|
855
|
+
# config/application.rb
|
856
|
+
module MyApp
|
857
|
+
class Application < Rails::Application
|
858
|
+
config.active_record.query_log_tags_enabled = true
|
859
|
+
end
|
844
860
|
end
|
845
|
-
|
846
|
-
dev = Developer.first
|
847
|
-
dev.projects.first
|
848
|
-
# => ActiveRecord::StrictLoadingViolationError Exception: Developer is marked as strict_loading and Project cannot be lazily loaded.
|
849
861
|
```
|
850
862
|
|
851
|
-
|
852
|
-
|
853
|
-
* Deprecate passing an Active Record object to `quote`/`type_cast` directly.
|
854
|
-
|
855
|
-
*Ryuta Kamizono*
|
856
|
-
|
857
|
-
* Default engine `ENGINE=InnoDB` is no longer dumped to make schema more agnostic.
|
858
|
-
|
859
|
-
Before:
|
863
|
+
By default the application, controller and action details are added to the query tags:
|
860
864
|
|
861
865
|
```ruby
|
862
|
-
|
866
|
+
class BooksController < ApplicationController
|
867
|
+
def index
|
868
|
+
@books = Book.all
|
869
|
+
end
|
863
870
|
end
|
864
871
|
```
|
865
872
|
|
866
|
-
|
873
|
+
```ruby
|
874
|
+
GET /books
|
875
|
+
# SELECT * FROM books /*application:MyApp;controller:books;action:index*/
|
876
|
+
```
|
877
|
+
|
878
|
+
Custom tags containing static values and Procs can be defined in the application configuration:
|
867
879
|
|
868
880
|
```ruby
|
869
|
-
|
870
|
-
|
881
|
+
config.active_record.query_log_tags = [
|
882
|
+
:application,
|
883
|
+
:controller,
|
884
|
+
:action,
|
885
|
+
{
|
886
|
+
custom_static: "foo",
|
887
|
+
custom_dynamic: -> { Time.now }
|
888
|
+
}
|
889
|
+
]
|
871
890
|
```
|
872
891
|
|
873
|
-
*
|
892
|
+
*Keeran Raj Hawoldar*, *Eileen M. Uchitelle*, *Kasper Timm Hansen*
|
893
|
+
|
894
|
+
* Added support for multiple databases to `rails db:setup` and `rails db:reset`.
|
895
|
+
|
896
|
+
*Ryan Hall*
|
874
897
|
|
875
|
-
*
|
876
|
-
See ActiveRecord::DelegatedType for the full description.
|
898
|
+
* Add `ActiveRecord::Relation#structurally_compatible?`.
|
877
899
|
|
878
|
-
|
900
|
+
Adds a query method by which a user can tell if the relation that they're
|
901
|
+
about to use for `#or` or `#and` is structurally compatible with the
|
902
|
+
receiver.
|
879
903
|
|
880
|
-
*
|
904
|
+
*Kevin Newton*
|
881
905
|
|
882
|
-
|
906
|
+
* Add `ActiveRecord::QueryMethods#in_order_of`.
|
907
|
+
|
908
|
+
This allows you to specify an explicit order that you'd like records
|
909
|
+
returned in based on a SQL expression. By default, this will be accomplished
|
910
|
+
using a case statement, as in:
|
883
911
|
|
884
912
|
```ruby
|
885
|
-
|
913
|
+
Post.in_order_of(:id, [3, 5, 1])
|
914
|
+
```
|
886
915
|
|
887
|
-
|
888
|
-
accounts.merge(accounts.where.not(credit_limit: nil)).sum(:credit_limit)
|
889
|
-
# => {
|
890
|
-
# [1, 1] => 50,
|
891
|
-
# [2, 2] => 60
|
892
|
-
# }
|
916
|
+
will generate the SQL:
|
893
917
|
|
894
|
-
|
895
|
-
|
896
|
-
# => {
|
897
|
-
# 1 => 50,
|
898
|
-
# 2 => 60
|
899
|
-
# }
|
918
|
+
```sql
|
919
|
+
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
|
900
920
|
```
|
901
921
|
|
902
|
-
|
922
|
+
However, because this functionality is built into MySQL in the form of the
|
923
|
+
`FIELD` function, that connection adapter will generate the following SQL
|
924
|
+
instead:
|
903
925
|
|
904
|
-
|
926
|
+
```sql
|
927
|
+
SELECT "posts".* FROM "posts" ORDER BY FIELD("posts"."id", 1, 5, 3) DESC
|
928
|
+
```
|
905
929
|
|
906
|
-
|
930
|
+
*Kevin Newton*
|
907
931
|
|
908
|
-
|
909
|
-
accounts = Account.where(id: [1, 2]).annotate("david and mary")
|
932
|
+
* Fix `eager_loading?` when ordering with `Symbol`.
|
910
933
|
|
911
|
-
|
912
|
-
accounts.merge(accounts.rewhere(id: 3))
|
913
|
-
# SELECT accounts.* FROM accounts WHERE accounts.id = 3 /* david and mary */ /* david and mary */
|
934
|
+
`eager_loading?` is triggered correctly when using `order` with symbols.
|
914
935
|
|
915
|
-
|
916
|
-
|
917
|
-
|
936
|
+
```ruby
|
937
|
+
scope = Post.includes(:comments).order(:"comments.label")
|
938
|
+
=> true
|
918
939
|
```
|
919
940
|
|
920
|
-
*
|
921
|
-
|
922
|
-
* Resolve conflict between counter cache and optimistic locking.
|
941
|
+
*Jacopo Beschi*
|
923
942
|
|
924
|
-
|
925
|
-
cache. This avoids raising an unnecessary `ActiveRecord::StaleObjectError`
|
926
|
-
upon subsequent transactions by maintaining parity with the corresponding
|
927
|
-
database record's `lock_version` column.
|
943
|
+
* Two change tracking methods are added for `belongs_to` associations.
|
928
944
|
|
929
|
-
|
945
|
+
The `association_changed?` method (assuming an association named `:association`) returns true
|
946
|
+
if a different associated object has been assigned and the foreign key will be updated in the
|
947
|
+
next save.
|
930
948
|
|
931
|
-
|
949
|
+
The `association_previously_changed?` method returns true if the previous save updated the
|
950
|
+
association to reference a different associated object.
|
932
951
|
|
933
|
-
*
|
952
|
+
*George Claghorn*
|
934
953
|
|
935
|
-
|
936
|
-
david_and_mary = Author.where(id: david.id..mary.id)
|
954
|
+
* Add option to disable schema dump per-database.
|
937
955
|
|
938
|
-
|
939
|
-
|
956
|
+
Dumping the schema is on by default for all databases in an application. To turn it off for a
|
957
|
+
specific database, use the `schema_dump` option:
|
940
958
|
|
941
|
-
|
942
|
-
|
959
|
+
```yaml
|
960
|
+
# config/database.yml
|
943
961
|
|
944
|
-
|
945
|
-
|
962
|
+
production:
|
963
|
+
schema_dump: false
|
946
964
|
```
|
947
965
|
|
948
|
-
*
|
966
|
+
*Luis Vasconcellos*, *Eileen M. Uchitelle*
|
967
|
+
|
968
|
+
* Fix `eager_loading?` when ordering with `Hash` syntax.
|
949
969
|
|
950
|
-
|
951
|
-
|
952
|
-
or email verification, where you want the bearer of the signed id to be able to interact with the
|
953
|
-
underlying record, but usually only within a certain time period.
|
970
|
+
`eager_loading?` is triggered correctly when using `order` with hash syntax
|
971
|
+
on an outer table.
|
954
972
|
|
955
973
|
```ruby
|
956
|
-
|
974
|
+
Post.includes(:comments).order({ "comments.label": :ASC }).eager_loading?
|
975
|
+
# => true
|
976
|
+
```
|
957
977
|
|
958
|
-
|
978
|
+
*Jacopo Beschi*
|
959
979
|
|
960
|
-
|
961
|
-
User.find_signed signed_id, purpose: :password_reset # => nil, since the signed id has expired
|
980
|
+
* Move the forcing of clear text encoding to the `ActiveRecord::Encryption::Encryptor`.
|
962
981
|
|
963
|
-
|
964
|
-
User.find_signed signed_id, purpose: :password_reset # => User.first
|
982
|
+
Fixes #42699.
|
965
983
|
|
966
|
-
|
967
|
-
```
|
984
|
+
*J Smith*
|
968
985
|
|
969
|
-
|
986
|
+
* `partial_inserts` is now disabled by default in new apps.
|
970
987
|
|
971
|
-
|
988
|
+
This will be the default for new apps in Rails 7. To opt in:
|
972
989
|
|
973
|
-
|
990
|
+
```ruby
|
991
|
+
config.active_record.partial_inserts = true
|
992
|
+
```
|
974
993
|
|
975
|
-
|
994
|
+
If a migration removes the default value of a column, this option
|
995
|
+
would cause old processes to no longer be able to create new records.
|
976
996
|
|
977
|
-
|
997
|
+
If you need to remove a column, you should first use `ignored_columns`
|
998
|
+
to stop using it.
|
978
999
|
|
979
|
-
*
|
1000
|
+
*Jean Boussier*
|
1001
|
+
|
1002
|
+
* Rails can now verify foreign keys after loading fixtures in tests.
|
980
1003
|
|
981
|
-
|
1004
|
+
This will be the default for new apps in Rails 7. To opt in:
|
982
1005
|
|
983
1006
|
```ruby
|
984
|
-
|
985
|
-
|
1007
|
+
config.active_record.verify_foreign_keys_for_fixtures = true
|
1008
|
+
```
|
986
1009
|
|
987
|
-
|
988
|
-
# => { false => 10 }
|
1010
|
+
Tests will not run if there is a foreign key constraint violation in your fixture data.
|
989
1011
|
|
990
|
-
|
991
|
-
posts.unscope(where: :hidden).count
|
992
|
-
# => { false => 11, true => 1 }
|
1012
|
+
The feature is supported by SQLite and PostgreSQL, other adapters can also add support for it.
|
993
1013
|
|
994
|
-
|
995
|
-
posts.unscope(where: :"comments.hidden").count
|
996
|
-
# => { false => 11 }
|
997
|
-
```
|
1014
|
+
*Alex Ghiculescu*
|
998
1015
|
|
999
|
-
|
1016
|
+
* Clear cached `has_one` association after setting `belongs_to` association to `nil`.
|
1000
1017
|
|
1001
|
-
|
1018
|
+
After setting a `belongs_to` relation to `nil` and updating an unrelated attribute on the owner,
|
1019
|
+
the owner should still return `nil` on the `has_one` relation.
|
1002
1020
|
|
1003
|
-
|
1004
|
-
steve = Person.find_by(name: "Steve")
|
1005
|
-
david = Author.find_by(name: "David")
|
1021
|
+
Fixes #42597.
|
1006
1022
|
|
1007
|
-
|
1023
|
+
*Michiel de Mare*
|
1008
1024
|
|
1009
|
-
|
1010
|
-
relation.rewhere(writer: david).to_a # => []
|
1025
|
+
* OpenSSL constants are now used for Digest computations.
|
1011
1026
|
|
1012
|
-
|
1013
|
-
relation.rewhere(writer: david).to_a # => [david]
|
1014
|
-
```
|
1027
|
+
*Dirkjan Bussink*
|
1015
1028
|
|
1016
|
-
|
1029
|
+
* Adds support for `if_not_exists` to `add_foreign_key` and `if_exists` to `remove_foreign_key`.
|
1017
1030
|
|
1018
|
-
|
1031
|
+
Applications can set their migrations to ignore exceptions raised when adding a foreign key
|
1032
|
+
that already exists or when removing a foreign key that does not exist.
|
1033
|
+
|
1034
|
+
Example Usage:
|
1019
1035
|
|
1020
1036
|
```ruby
|
1021
|
-
|
1022
|
-
|
1037
|
+
class AddAuthorsForeignKeyToArticles < ActiveRecord::Migration[7.0]
|
1038
|
+
def change
|
1039
|
+
add_foreign_key :articles, :authors, if_not_exists: true
|
1040
|
+
end
|
1041
|
+
end
|
1023
1042
|
```
|
1024
1043
|
|
1025
|
-
|
1044
|
+
```ruby
|
1045
|
+
class RemoveAuthorsForeignKeyFromArticles < ActiveRecord::Migration[7.0]
|
1046
|
+
def change
|
1047
|
+
remove_foreign_key :articles, :authors, if_exists: true
|
1048
|
+
end
|
1049
|
+
end
|
1050
|
+
```
|
1026
1051
|
|
1027
|
-
*
|
1052
|
+
*Roberto Miranda*
|
1028
1053
|
|
1029
|
-
|
1054
|
+
* Prevent polluting ENV during postgresql structure dump/load.
|
1030
1055
|
|
1031
|
-
|
1056
|
+
Some configuration parameters were provided to pg_dump / psql via
|
1057
|
+
environment variables which persisted beyond the command being run, and may
|
1058
|
+
have caused subsequent commands and connections to fail. Tasks running
|
1059
|
+
across multiple postgresql databases like `rails db:test:prepare` may have
|
1060
|
+
been affected.
|
1032
1061
|
|
1033
|
-
*
|
1062
|
+
*Samuel Cochran*
|
1034
1063
|
|
1035
|
-
*
|
1064
|
+
* Set precision 6 by default for `datetime` columns.
|
1036
1065
|
|
1037
|
-
|
1066
|
+
By default, datetime columns will have microseconds precision instead of seconds precision.
|
1038
1067
|
|
1039
|
-
*
|
1068
|
+
*Roberto Miranda*
|
1040
1069
|
|
1041
|
-
|
1070
|
+
* Allow preloading of associations with instance dependent scopes.
|
1042
1071
|
|
1043
|
-
*
|
1072
|
+
*John Hawthorn*, *John Crepezzi*, *Adam Hess*, *Eileen M. Uchitelle*, *Dinah Shi*
|
1044
1073
|
|
1045
|
-
|
1074
|
+
* Do not try to rollback transactions that failed due to a `ActiveRecord::TransactionRollbackError`.
|
1046
1075
|
|
1047
|
-
*
|
1076
|
+
*Jamie McCarthy*
|
1048
1077
|
|
1049
|
-
*
|
1078
|
+
* Active Record Encryption will now encode values as UTF-8 when using deterministic
|
1079
|
+
encryption. The encoding is part of the encrypted payload, so different encodings for
|
1080
|
+
different values result in different ciphertexts. This can break unique constraints and
|
1081
|
+
queries.
|
1050
1082
|
|
1051
|
-
|
1083
|
+
The new behavior is configurable via `active_record.encryption.forced_encoding_for_deterministic_encryption`
|
1084
|
+
that is `Encoding::UTF_8` by default. It can be disabled by setting it to `nil`.
|
1052
1085
|
|
1053
|
-
*
|
1086
|
+
*Jorge Manrubia*
|
1054
1087
|
|
1055
|
-
|
1088
|
+
* The MySQL adapter now cast numbers and booleans bind parameters to string for safety reasons.
|
1056
1089
|
|
1057
|
-
|
1090
|
+
When comparing a string and a number in a query, MySQL converts the string to a number. So for
|
1091
|
+
instance `"foo" = 0`, will implicitly cast `"foo"` to `0` and will evaluate to `TRUE` which can
|
1092
|
+
lead to security vulnerabilities.
|
1058
1093
|
|
1059
|
-
|
1094
|
+
Active Record already protect against that vulnerability when it knows the type of the column
|
1095
|
+
being compared, however until now it was still vulnerable when using bind parameters:
|
1060
1096
|
|
1061
|
-
|
1062
|
-
|
1097
|
+
```ruby
|
1098
|
+
User.where("login_token = ?", 0).first
|
1099
|
+
```
|
1063
1100
|
|
1064
|
-
|
1101
|
+
Would perform:
|
1065
1102
|
|
1066
|
-
```
|
1067
|
-
|
1103
|
+
```sql
|
1104
|
+
SELECT * FROM `users` WHERE `login_token` = 0 LIMIT 1;
|
1068
1105
|
```
|
1069
1106
|
|
1070
|
-
|
1071
|
-
created within that migration so that if table and its indexes exist then there is no
|
1072
|
-
attempt to create them again.
|
1107
|
+
Now it will perform:
|
1073
1108
|
|
1074
|
-
|
1109
|
+
```sql
|
1110
|
+
SELECT * FROM `users` WHERE `login_token` = '0' LIMIT 1;
|
1111
|
+
```
|
1075
1112
|
|
1076
|
-
*
|
1113
|
+
*Jean Boussier*
|
1077
1114
|
|
1078
|
-
|
1115
|
+
* Fixture configurations (`_fixture`) are now strictly validated.
|
1079
1116
|
|
1080
|
-
|
1117
|
+
If an error will be raised if that entry contains unknown keys while previously it
|
1118
|
+
would silently have no effects.
|
1081
1119
|
|
1082
|
-
|
1120
|
+
*Jean Boussier*
|
1083
1121
|
|
1084
|
-
|
1122
|
+
* Add `ActiveRecord::Base.update!` that works like `ActiveRecord::Base.update` but raises exceptions.
|
1085
1123
|
|
1086
|
-
|
1124
|
+
This allows for the same behavior as the instance method `#update!` at a class level.
|
1087
1125
|
|
1088
1126
|
```ruby
|
1089
|
-
Person.
|
1090
|
-
person.party_all_night!
|
1091
|
-
end
|
1127
|
+
Person.update!(:all, state: "confirmed")
|
1092
1128
|
```
|
1093
1129
|
|
1094
|
-
*
|
1130
|
+
*Dorian Marié*
|
1095
1131
|
|
1096
|
-
*
|
1132
|
+
* Add `ActiveRecord::Base#attributes_for_database`.
|
1097
1133
|
|
1098
|
-
|
1134
|
+
Returns attributes with values for assignment to the database.
|
1099
1135
|
|
1100
|
-
*
|
1136
|
+
*Chris Salzberg*
|
1101
1137
|
|
1102
|
-
*
|
1138
|
+
* Use an empty query to check if the PostgreSQL connection is still active.
|
1103
1139
|
|
1104
|
-
|
1140
|
+
An empty query is faster than `SELECT 1`.
|
1105
1141
|
|
1106
|
-
*
|
1142
|
+
*Heinrich Lee Yu*
|
1107
1143
|
|
1108
|
-
* `
|
1144
|
+
* Add `ActiveRecord::Base#previously_persisted?`.
|
1109
1145
|
|
1110
|
-
|
1146
|
+
Returns `true` if the object has been previously persisted but now it has been deleted.
|
1111
1147
|
|
1112
|
-
* Deprecate
|
1148
|
+
* Deprecate `partial_writes` in favor of `partial_inserts` and `partial_updates`.
|
1113
1149
|
|
1114
|
-
|
1150
|
+
This allows to have a different behavior on update and create.
|
1115
1151
|
|
1116
|
-
*
|
1152
|
+
*Jean Boussier*
|
1117
1153
|
|
1118
|
-
|
1154
|
+
* Fix compatibility with `psych >= 4`.
|
1119
1155
|
|
1120
|
-
|
1156
|
+
Starting in Psych 4.0.0 `YAML.load` behaves like `YAML.safe_load`. To preserve compatibility,
|
1157
|
+
Active Record's schema cache loader and `YAMLColumn` now uses `YAML.unsafe_load` if available.
|
1121
1158
|
|
1122
|
-
*
|
1159
|
+
*Jean Boussier*
|
1123
1160
|
|
1124
|
-
*
|
1161
|
+
* `ActiveRecord::Base.logger` is now a `class_attribute`.
|
1125
1162
|
|
1126
|
-
|
1163
|
+
This means it can no longer be accessed directly through `@@logger`, and that setting `logger =`
|
1164
|
+
on a subclass won't change the parent's logger.
|
1127
1165
|
|
1128
|
-
*
|
1166
|
+
*Jean Boussier*
|
1129
1167
|
|
1130
|
-
*
|
1168
|
+
* Add `.asc.nulls_first` for all databases. Unfortunately MySQL still doesn't like `nulls_last`.
|
1131
1169
|
|
1132
|
-
|
1170
|
+
*Keenan Brock*
|
1133
1171
|
|
1134
|
-
|
1172
|
+
* Improve performance of `one?` and `many?` by limiting the generated count query to 2 results.
|
1135
1173
|
|
1136
|
-
*
|
1174
|
+
*Gonzalo Riestra*
|
1137
1175
|
|
1138
|
-
|
1176
|
+
* Don't check type when using `if_not_exists` on `add_column`.
|
1139
1177
|
|
1140
|
-
|
1178
|
+
Previously, if a migration called `add_column` with the `if_not_exists` option set to true
|
1179
|
+
the `column_exists?` check would look for a column with the same name and type as the migration.
|
1141
1180
|
|
1142
|
-
|
1181
|
+
Recently it was discovered that the type passed to the migration is not always the same type
|
1182
|
+
as the column after migration. For example a column set to `:mediumblob` in the migration will
|
1183
|
+
be casted to `binary` when calling `column.type`. Since there is no straightforward way to cast
|
1184
|
+
the type to the database type without running the migration, we opted to drop the type check from
|
1185
|
+
`add_column`. This means that migrations adding a duplicate column with a different type will no
|
1186
|
+
longer raise an error.
|
1143
1187
|
|
1144
|
-
|
1145
|
-
# config/database.yml
|
1146
|
-
production:
|
1147
|
-
primary:
|
1148
|
-
database: my_database
|
1149
|
-
primary_shard_one:
|
1150
|
-
database: my_database_shard_one
|
1151
|
-
```
|
1188
|
+
*Eileen M. Uchitelle*
|
1152
1189
|
|
1153
|
-
|
1190
|
+
* Log a warning message when running SQLite in production.
|
1154
1191
|
|
1155
|
-
|
1156
|
-
|
1157
|
-
|
1192
|
+
Using SQLite in production ENV is generally discouraged. SQLite is also the default adapter
|
1193
|
+
in a new Rails application.
|
1194
|
+
For the above reasons log a warning message when running SQLite in production.
|
1158
1195
|
|
1159
|
-
|
1160
|
-
|
1161
|
-
|
1162
|
-
|
1163
|
-
|
1196
|
+
The warning can be disabled by setting `config.active_record.sqlite3_production_warning=false`.
|
1197
|
+
|
1198
|
+
*Jacopo Beschi*
|
1199
|
+
|
1200
|
+
* Add option to disable joins for `has_one` associations.
|
1201
|
+
|
1202
|
+
In a multiple database application, associations can't join across
|
1203
|
+
databases. When set, this option instructs Rails to generate 2 or
|
1204
|
+
more queries rather than generating joins for `has_one` associations.
|
1164
1205
|
|
1165
|
-
|
1206
|
+
Set the option on a has one through association:
|
1166
1207
|
|
1167
1208
|
```ruby
|
1168
|
-
|
1169
|
-
|
1209
|
+
class Person
|
1210
|
+
has_one :dog
|
1211
|
+
has_one :veterinarian, through: :dog, disable_joins: true
|
1170
1212
|
end
|
1171
1213
|
```
|
1172
1214
|
|
1173
|
-
|
1215
|
+
Then instead of generating join SQL, two queries are used for `@person.veterinarian`:
|
1174
1216
|
|
1175
|
-
|
1217
|
+
```
|
1218
|
+
SELECT "dogs"."id" FROM "dogs" WHERE "dogs"."person_id" = ? [["person_id", 1]]
|
1219
|
+
SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."dog_id" = ? [["dog_id", 1]]
|
1220
|
+
```
|
1176
1221
|
|
1177
|
-
*
|
1222
|
+
*Sarah Vessels*, *Eileen M. Uchitelle*
|
1178
1223
|
|
1179
|
-
|
1224
|
+
* `Arel::Visitors::Dot` now renders a complete set of properties when visiting
|
1225
|
+
`Arel::Nodes::SelectCore`, `SelectStatement`, `InsertStatement`, `UpdateStatement`, and
|
1226
|
+
`DeleteStatement`, which fixes #42026. Previously, some properties were omitted.
|
1180
1227
|
|
1181
|
-
|
1228
|
+
*Mike Dalessio*
|
1182
1229
|
|
1183
|
-
|
1184
|
-
|
1185
|
-
|
1186
|
-
|
1230
|
+
* `Arel::Visitors::Dot` now supports `Arel::Nodes::Bin`, `Case`, `CurrentRow`, `Distinct`,
|
1231
|
+
`DistinctOn`, `Else`, `Except`, `InfixOperation`, `Intersect`, `Lock`, `NotRegexp`, `Quoted`,
|
1232
|
+
`Regexp`, `UnaryOperation`, `Union`, `UnionAll`, `When`, and `With`. Previously, these node
|
1233
|
+
types caused an exception to be raised by `Arel::Visitors::Dot#accept`.
|
1187
1234
|
|
1188
|
-
|
1235
|
+
*Mike Dalessio*
|
1236
|
+
|
1237
|
+
* Optimize `remove_columns` to use a single SQL statement.
|
1189
1238
|
|
1190
1239
|
```ruby
|
1191
|
-
|
1192
|
-
db_config.name
|
1240
|
+
remove_columns :my_table, :col_one, :col_two
|
1193
1241
|
```
|
1194
1242
|
|
1195
|
-
|
1196
|
-
|
1197
|
-
* Add additional database-specific rake tasks for multi-database users.
|
1198
|
-
|
1199
|
-
Previously, `rails db:create`, `rails db:drop`, and `rails db:migrate` were the only rails tasks that could operate on a single
|
1200
|
-
database. For example:
|
1243
|
+
Now results in the following SQL:
|
1201
1244
|
|
1202
|
-
```
|
1203
|
-
|
1204
|
-
rails db:create:primary
|
1205
|
-
rails db:create:animals
|
1206
|
-
rails db:drop
|
1207
|
-
rails db:drop:primary
|
1208
|
-
rails db:drop:animals
|
1209
|
-
rails db:migrate
|
1210
|
-
rails db:migrate:primary
|
1211
|
-
rails db:migrate:animals
|
1245
|
+
```sql
|
1246
|
+
ALTER TABLE "my_table" DROP COLUMN "col_one", DROP COLUMN "col_two"
|
1212
1247
|
```
|
1213
1248
|
|
1214
|
-
|
1215
|
-
`rails db:test:prepare` can additionally operate on a single database. For example:
|
1249
|
+
*Jon Dufresne*
|
1216
1250
|
|
1217
|
-
|
1218
|
-
rails db:schema:dump
|
1219
|
-
rails db:schema:dump:primary
|
1220
|
-
rails db:schema:dump:animals
|
1221
|
-
rails db:schema:load
|
1222
|
-
rails db:schema:load:primary
|
1223
|
-
rails db:schema:load:animals
|
1224
|
-
rails db:structure:dump
|
1225
|
-
rails db:structure:dump:primary
|
1226
|
-
rails db:structure:dump:animals
|
1227
|
-
rails db:structure:load
|
1228
|
-
rails db:structure:load:primary
|
1229
|
-
rails db:structure:load:animals
|
1230
|
-
rails db:test:prepare
|
1231
|
-
rails db:test:prepare:primary
|
1232
|
-
rails db:test:prepare:animals
|
1233
|
-
```
|
1251
|
+
* Ensure `has_one` autosave association callbacks get called once.
|
1234
1252
|
|
1235
|
-
|
1253
|
+
Change the `has_one` autosave callback to be non cyclic as well.
|
1254
|
+
By doing this the autosave callback are made more consistent for
|
1255
|
+
all 3 cases: `has_many`, `has_one`, and `belongs_to`.
|
1236
1256
|
|
1237
|
-
*
|
1257
|
+
*Petrik de Heus*
|
1238
1258
|
|
1239
|
-
|
1259
|
+
* Add option to disable joins for associations.
|
1240
1260
|
|
1241
|
-
|
1261
|
+
In a multiple database application, associations can't join across
|
1262
|
+
databases. When set, this option instructs Rails to generate 2 or
|
1263
|
+
more queries rather than generating joins for associations.
|
1264
|
+
|
1265
|
+
Set the option on a has many through association:
|
1242
1266
|
|
1243
1267
|
```ruby
|
1244
|
-
class
|
1245
|
-
has_many :
|
1268
|
+
class Dog
|
1269
|
+
has_many :treats, through: :humans, disable_joins: true
|
1270
|
+
has_many :humans
|
1246
1271
|
end
|
1272
|
+
```
|
1273
|
+
|
1274
|
+
Then instead of generating join SQL, two queries are used for `@dog.treats`:
|
1247
1275
|
|
1248
|
-
|
1249
|
-
|
1250
|
-
|
1276
|
+
```
|
1277
|
+
SELECT "humans"."id" FROM "humans" WHERE "humans"."dog_id" = ? [["dog_id", 1]]
|
1278
|
+
SELECT "treats".* FROM "treats" WHERE "treats"."human_id" IN (?, ?, ?) [["human_id", 1], ["human_id", 2], ["human_id", 3]]
|
1251
1279
|
```
|
1252
1280
|
|
1253
|
-
*
|
1281
|
+
*Eileen M. Uchitelle*, *Aaron Patterson*, *Lee Quarella*
|
1254
1282
|
|
1255
|
-
* Add
|
1283
|
+
* Add setting for enumerating column names in SELECT statements.
|
1256
1284
|
|
1257
|
-
|
1285
|
+
Adding a column to a PostgreSQL database, for example, while the application is running can
|
1286
|
+
change the result of wildcard `SELECT *` queries, which invalidates the result
|
1287
|
+
of cached prepared statements and raises a `PreparedStatementCacheExpired` error.
|
1258
1288
|
|
1259
|
-
|
1289
|
+
When enabled, Active Record will avoid wildcards and always include column names
|
1290
|
+
in `SELECT` queries, which will return consistent results and avoid prepared
|
1291
|
+
statement errors.
|
1292
|
+
|
1293
|
+
Before:
|
1260
1294
|
|
1261
1295
|
```ruby
|
1262
|
-
|
1263
|
-
|
1264
|
-
# => ActiveRecord::StrictLoadingViolationError: Developer is marked as strict_loading and AuditLog cannot be lazily loaded.
|
1296
|
+
Book.limit(5)
|
1297
|
+
# SELECT * FROM books LIMIT 5
|
1265
1298
|
```
|
1266
1299
|
|
1267
|
-
|
1300
|
+
After:
|
1268
1301
|
|
1269
|
-
|
1302
|
+
```ruby
|
1303
|
+
# config/application.rb
|
1304
|
+
module MyApp
|
1305
|
+
class Application < Rails::Application
|
1306
|
+
config.active_record.enumerate_columns_in_select_statements = true
|
1307
|
+
end
|
1308
|
+
end
|
1270
1309
|
|
1271
|
-
|
1310
|
+
# or, configure per-model
|
1311
|
+
class Book < ApplicationRecord
|
1312
|
+
self.enumerate_columns_in_select_statements = true
|
1313
|
+
end
|
1314
|
+
```
|
1272
1315
|
|
1273
|
-
|
1316
|
+
```ruby
|
1317
|
+
Book.limit(5)
|
1318
|
+
# SELECT id, author_id, name, format, status, language, etc FROM books LIMIT 5
|
1319
|
+
```
|
1274
1320
|
|
1275
|
-
|
1321
|
+
*Matt Duszynski*
|
1276
1322
|
|
1277
|
-
|
1323
|
+
* Allow passing SQL as `on_duplicate` value to `#upsert_all` to make it possible to use raw SQL to update columns on conflict:
|
1278
1324
|
|
1279
1325
|
```ruby
|
1280
|
-
|
1281
|
-
|
1282
|
-
|
1283
|
-
|
1284
|
-
end
|
1326
|
+
Book.upsert_all(
|
1327
|
+
[{ id: 1, status: 1 }, { id: 2, status: 1 }],
|
1328
|
+
on_duplicate: Arel.sql("status = GREATEST(books.status, EXCLUDED.status)")
|
1329
|
+
)
|
1285
1330
|
```
|
1286
1331
|
|
1332
|
+
*Vladimir Dementyev*
|
1333
|
+
|
1334
|
+
* Allow passing SQL as `returning` statement to `#upsert_all`:
|
1335
|
+
|
1287
1336
|
```ruby
|
1288
|
-
|
1289
|
-
|
1290
|
-
|
1291
|
-
|
1292
|
-
|
1337
|
+
Article.insert_all(
|
1338
|
+
[
|
1339
|
+
{ title: "Article 1", slug: "article-1", published: false },
|
1340
|
+
{ title: "Article 2", slug: "article-2", published: false }
|
1341
|
+
],
|
1342
|
+
returning: Arel.sql("id, (xmax = '0') as inserted, name as new_name")
|
1343
|
+
)
|
1293
1344
|
```
|
1294
1345
|
|
1346
|
+
*Vladimir Dementyev*
|
1347
|
+
|
1348
|
+
* Deprecate `legacy_connection_handling`.
|
1349
|
+
|
1295
1350
|
*Eileen M. Uchitelle*
|
1296
1351
|
|
1297
|
-
*
|
1352
|
+
* Add attribute encryption support.
|
1298
1353
|
|
1299
|
-
|
1354
|
+
Encrypted attributes are declared at the model level. These
|
1355
|
+
are regular Active Record attributes backed by a column with
|
1356
|
+
the same name. The system will transparently encrypt these
|
1357
|
+
attributes before saving them into the database and will
|
1358
|
+
decrypt them when retrieving their values.
|
1300
1359
|
|
1301
|
-
*Larry Reid*
|
1302
1360
|
|
1303
|
-
|
1361
|
+
```ruby
|
1362
|
+
class Person < ApplicationRecord
|
1363
|
+
encrypts :name
|
1364
|
+
encrypts :email_address, deterministic: true
|
1365
|
+
end
|
1366
|
+
```
|
1304
1367
|
|
1305
|
-
|
1368
|
+
You can learn more in the [Active Record Encryption
|
1369
|
+
guide](https://edgeguides.rubyonrails.org/active_record_encryption.html).
|
1306
1370
|
|
1307
|
-
|
1371
|
+
*Jorge Manrubia*
|
1308
1372
|
|
1309
|
-
|
1373
|
+
* Changed Arel predications `contains` and `overlaps` to use
|
1374
|
+
`quoted_node` so that PostgreSQL arrays are quoted properly.
|
1310
1375
|
|
1311
|
-
*
|
1376
|
+
*Bradley Priest*
|
1312
1377
|
|
1313
|
-
|
1378
|
+
* Add mode argument to record level `strict_loading!`.
|
1314
1379
|
|
1315
|
-
|
1316
|
-
|
1317
|
-
|
1318
|
-
|
1319
|
-
|
1320
|
-
|
1380
|
+
This argument can be used when enabling strict loading for a single record
|
1381
|
+
to specify that we only want to raise on n plus one queries.
|
1382
|
+
|
1383
|
+
```ruby
|
1384
|
+
developer.strict_loading!(mode: :n_plus_one_only)
|
1385
|
+
|
1386
|
+
developer.projects.to_a # Does not raise
|
1387
|
+
developer.projects.first.client # Raises StrictLoadingViolationError
|
1321
1388
|
```
|
1322
1389
|
|
1323
|
-
|
1390
|
+
Previously, enabling strict loading would cause any lazily loaded
|
1391
|
+
association to raise an error. Using `n_plus_one_only` mode allows us to
|
1392
|
+
lazily load belongs_to, has_many, and other associations that are fetched
|
1393
|
+
through a single query.
|
1324
1394
|
|
1325
|
-
*
|
1395
|
+
*Dinah Shi*
|
1326
1396
|
|
1327
|
-
|
1397
|
+
* Fix Float::INFINITY assignment to datetime column with postgresql adapter.
|
1328
1398
|
|
1329
|
-
|
1399
|
+
Before:
|
1330
1400
|
|
1331
|
-
|
1401
|
+
```ruby
|
1402
|
+
# With this config
|
1403
|
+
ActiveRecord::Base.time_zone_aware_attributes = true
|
1332
1404
|
|
1333
|
-
|
1405
|
+
# and the following schema:
|
1406
|
+
create_table "postgresql_infinities" do |t|
|
1407
|
+
t.datetime "datetime"
|
1408
|
+
end
|
1334
1409
|
|
1335
|
-
|
1410
|
+
# This test fails
|
1411
|
+
record = PostgresqlInfinity.create!(datetime: Float::INFINITY)
|
1412
|
+
assert_equal Float::INFINITY, record.datetime # record.datetime gets nil
|
1413
|
+
```
|
1336
1414
|
|
1337
|
-
|
1415
|
+
After this commit, `record.datetime` gets `Float::INFINITY` as expected.
|
1338
1416
|
|
1339
|
-
*
|
1417
|
+
*Shunichi Ikegami*
|
1340
1418
|
|
1341
|
-
*
|
1419
|
+
* Type cast enum values by the original attribute type.
|
1342
1420
|
|
1343
|
-
|
1421
|
+
The notable thing about this change is that unknown labels will no longer match 0 on MySQL.
|
1344
1422
|
|
1345
1423
|
```ruby
|
1346
|
-
|
1424
|
+
class Book < ActiveRecord::Base
|
1425
|
+
enum :status, { proposed: 0, written: 1, published: 2 }
|
1426
|
+
end
|
1347
1427
|
```
|
1348
1428
|
|
1349
|
-
|
1429
|
+
Before:
|
1350
1430
|
|
1351
1431
|
```ruby
|
1352
|
-
|
1432
|
+
# SELECT `books`.* FROM `books` WHERE `books`.`status` = 'prohibited' LIMIT 1
|
1433
|
+
Book.find_by(status: :prohibited)
|
1434
|
+
# => #<Book id: 1, status: "proposed", ...> (for mysql2 adapter)
|
1435
|
+
# => ActiveRecord::StatementInvalid: PG::InvalidTextRepresentation: ERROR: invalid input syntax for type integer: "prohibited" (for postgresql adapter)
|
1436
|
+
# => nil (for sqlite3 adapter)
|
1353
1437
|
```
|
1354
1438
|
|
1355
|
-
|
1356
|
-
|
1357
|
-
* Ensure `:reading` connections always raise if a write is attempted.
|
1358
|
-
|
1359
|
-
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`.
|
1439
|
+
After:
|
1360
1440
|
|
1361
|
-
|
1441
|
+
```ruby
|
1442
|
+
# SELECT `books`.* FROM `books` WHERE `books`.`status` IS NULL LIMIT 1
|
1443
|
+
Book.find_by(status: :prohibited)
|
1444
|
+
# => nil (for all adapters)
|
1445
|
+
```
|
1362
1446
|
|
1363
|
-
*
|
1447
|
+
*Ryuta Kamizono*
|
1364
1448
|
|
1365
|
-
|
1449
|
+
* Fixtures for `has_many :through` associations now load timestamps on join tables.
|
1366
1450
|
|
1367
|
-
|
1451
|
+
Given this fixture:
|
1368
1452
|
|
1369
|
-
|
1370
|
-
|
1453
|
+
```yml
|
1454
|
+
### monkeys.yml
|
1455
|
+
george:
|
1456
|
+
name: George the Monkey
|
1457
|
+
fruits: apple
|
1371
1458
|
|
1372
|
-
|
1459
|
+
### fruits.yml
|
1460
|
+
apple:
|
1461
|
+
name: apple
|
1462
|
+
```
|
1373
1463
|
|
1374
|
-
|
1375
|
-
|
1376
|
-
|
1377
|
-
is enabled, requests using ConditionalGet don't return the same ETag header
|
1378
|
-
after a collection is modified.
|
1464
|
+
If the join table (`fruit_monkeys`) contains `created_at` or `updated_at` columns,
|
1465
|
+
these will now be populated when loading the fixture. Previously, fixture loading
|
1466
|
+
would crash if these columns were required, and leave them as null otherwise.
|
1379
1467
|
|
1380
|
-
|
1468
|
+
*Alex Ghiculescu*
|
1381
1469
|
|
1382
|
-
|
1470
|
+
* Allow applications to configure the thread pool for async queries.
|
1383
1471
|
|
1384
|
-
|
1385
|
-
|
1472
|
+
Some applications may want one thread pool per database whereas others want to use
|
1473
|
+
a single global thread pool for all queries. By default, Rails will set `async_query_executor`
|
1474
|
+
to `nil` which will not initialize any executor. If `load_async` is called and no executor
|
1475
|
+
has been configured, the query will be executed in the foreground.
|
1386
1476
|
|
1387
|
-
|
1477
|
+
To create one thread pool for all database connections to use applications can set
|
1478
|
+
`config.active_record.async_query_executor` to `:global_thread_pool` and optionally define
|
1479
|
+
`config.active_record.global_executor_concurrency`. This defaults to 4. For applications that want
|
1480
|
+
to have a thread pool for each database connection, `config.active_record.async_query_executor` can
|
1481
|
+
be set to `:multi_thread_pool`. The configuration for each thread pool is set in the database
|
1482
|
+
configuration.
|
1388
1483
|
|
1389
|
-
*
|
1484
|
+
*Eileen M. Uchitelle*
|
1390
1485
|
|
1391
|
-
|
1486
|
+
* Allow new syntax for `enum` to avoid leading `_` from reserved options.
|
1392
1487
|
|
1393
1488
|
Before:
|
1394
1489
|
|
1395
1490
|
```ruby
|
1396
|
-
|
1397
|
-
|
1491
|
+
class Book < ActiveRecord::Base
|
1492
|
+
enum status: [ :proposed, :written ], _prefix: true, _scopes: false
|
1493
|
+
enum cover: [ :hard, :soft ], _suffix: true, _default: :hard
|
1494
|
+
end
|
1398
1495
|
```
|
1399
1496
|
|
1400
1497
|
After:
|
1401
1498
|
|
1402
1499
|
```ruby
|
1403
|
-
|
1404
|
-
|
1405
|
-
|
1500
|
+
class Book < ActiveRecord::Base
|
1501
|
+
enum :status, [ :proposed, :written ], prefix: true, scopes: false
|
1502
|
+
enum :cover, [ :hard, :soft ], suffix: true, default: :hard
|
1503
|
+
end
|
1406
1504
|
```
|
1407
1505
|
|
1408
|
-
*
|
1506
|
+
*Ryuta Kamizono*
|
1409
1507
|
|
1410
|
-
*
|
1508
|
+
* Add `ActiveRecord::Relation#load_async`.
|
1411
1509
|
|
1412
|
-
|
1510
|
+
This method schedules the query to be performed asynchronously from a thread pool.
|
1413
1511
|
|
1414
|
-
|
1512
|
+
If the result is accessed before a background thread had the opportunity to perform
|
1513
|
+
the query, it will be performed in the foreground.
|
1415
1514
|
|
1416
|
-
|
1515
|
+
This is useful for queries that can be performed long enough before their result will be
|
1516
|
+
needed, or for controllers which need to perform several independent queries.
|
1417
1517
|
|
1418
|
-
|
1518
|
+
```ruby
|
1519
|
+
def index
|
1520
|
+
@categories = Category.some_complex_scope.load_async
|
1521
|
+
@posts = Post.some_complex_scope.load_async
|
1522
|
+
end
|
1523
|
+
```
|
1419
1524
|
|
1420
|
-
|
1421
|
-
|
1525
|
+
Active Record logs will also include timing info for the duration of how long
|
1526
|
+
the main thread had to wait to access the result. This timing is useful to know
|
1527
|
+
whether or not it's worth to load the query asynchronously.
|
1422
1528
|
|
1423
|
-
|
1424
|
-
|
1529
|
+
```
|
1530
|
+
DEBUG -- : Category Load (62.1ms) SELECT * FROM `categories` LIMIT 50
|
1531
|
+
DEBUG -- : ASYNC Post Load (64ms) (db time 126.1ms) SELECT * FROM `posts` LIMIT 100
|
1532
|
+
```
|
1425
1533
|
|
1426
|
-
|
1534
|
+
The duration in the first set of parens is how long the main thread was blocked
|
1535
|
+
waiting for the results, and the second set of parens with "db time" is how long
|
1536
|
+
the entire query took to execute.
|
1427
1537
|
|
1428
|
-
*
|
1538
|
+
*Jean Boussier*
|
1429
1539
|
|
1430
|
-
|
1540
|
+
* Implemented `ActiveRecord::Relation#excluding` method.
|
1431
1541
|
|
1432
|
-
|
1542
|
+
This method excludes the specified record (or collection of records) from
|
1543
|
+
the resulting relation:
|
1433
1544
|
|
1434
|
-
|
1545
|
+
```ruby
|
1546
|
+
Post.excluding(post)
|
1547
|
+
Post.excluding(post_one, post_two)
|
1548
|
+
```
|
1435
1549
|
|
1436
|
-
|
1550
|
+
Also works on associations:
|
1437
1551
|
|
1438
|
-
|
1552
|
+
```ruby
|
1553
|
+
post.comments.excluding(comment)
|
1554
|
+
post.comments.excluding(comment_one, comment_two)
|
1555
|
+
```
|
1439
1556
|
|
1440
|
-
|
1557
|
+
This is short-hand for `Post.where.not(id: post.id)` (for a single record)
|
1558
|
+
and `Post.where.not(id: [post_one.id, post_two.id])` (for a collection).
|
1441
1559
|
|
1442
|
-
*
|
1560
|
+
*Glen Crawford*
|
1443
1561
|
|
1444
|
-
|
1562
|
+
* Skip optimised #exist? query when #include? is called on a relation
|
1563
|
+
with a having clause.
|
1445
1564
|
|
1446
|
-
|
1565
|
+
Relations that have aliased select values AND a having clause that
|
1566
|
+
references an aliased select value would generate an error when
|
1567
|
+
#include? was called, due to an optimisation that would generate
|
1568
|
+
call #exists? on the relation instead, which effectively alters
|
1569
|
+
the select values of the query (and thus removes the aliased select
|
1570
|
+
values), but leaves the having clause intact. Because the having
|
1571
|
+
clause is then referencing an aliased column that is no longer
|
1572
|
+
present in the simplified query, an ActiveRecord::InvalidStatement
|
1573
|
+
error was raised.
|
1447
1574
|
|
1448
|
-
|
1575
|
+
A sample query affected by this problem:
|
1449
1576
|
|
1450
|
-
|
1577
|
+
```ruby
|
1578
|
+
Author.select('COUNT(*) as total_posts', 'authors.*')
|
1579
|
+
.joins(:posts)
|
1580
|
+
.group(:id)
|
1581
|
+
.having('total_posts > 2')
|
1582
|
+
.include?(Author.first)
|
1583
|
+
```
|
1451
1584
|
|
1452
|
-
|
1585
|
+
This change adds an addition check to the condition that skips the
|
1586
|
+
simplified #exists? query, which simply checks for the presence of
|
1587
|
+
a having clause.
|
1453
1588
|
|
1454
|
-
|
1589
|
+
Fixes #41417.
|
1455
1590
|
|
1456
|
-
*
|
1591
|
+
*Michael Smart*
|
1457
1592
|
|
1458
|
-
*
|
1593
|
+
* Increment postgres prepared statement counter before making a prepared statement, so if the statement is aborted
|
1594
|
+
without Rails knowledge (e.g., if app gets killed during long-running query or due to Rack::Timeout), app won't end
|
1595
|
+
up in perpetual crash state for being inconsistent with PostgreSQL.
|
1459
1596
|
|
1460
|
-
*
|
1597
|
+
*wbharding*, *Martin Tepper*
|
1461
1598
|
|
1462
|
-
*
|
1599
|
+
* Add ability to apply `scoping` to `all_queries`.
|
1463
1600
|
|
1464
|
-
|
1601
|
+
Some applications may want to use the `scoping` method but previously it only
|
1602
|
+
worked on certain types of queries. This change allows the `scoping` method to apply
|
1603
|
+
to all queries for a model in a block.
|
1465
1604
|
|
1466
|
-
|
1605
|
+
```ruby
|
1606
|
+
Post.where(blog_id: post.blog_id).scoping(all_queries: true) do
|
1607
|
+
post.update(title: "a post title") # adds `posts.blog_id = 1` to the query
|
1608
|
+
end
|
1609
|
+
```
|
1467
1610
|
|
1468
|
-
*
|
1611
|
+
*Eileen M. Uchitelle*
|
1469
1612
|
|
1470
|
-
*
|
1471
|
-
|
1613
|
+
* `ActiveRecord::Calculations.calculate` called with `:average`
|
1614
|
+
(aliased as `ActiveRecord::Calculations.average`) will now use column-based
|
1615
|
+
type casting. This means that floating-point number columns will now be
|
1616
|
+
aggregated as `Float` and decimal columns will be aggregated as `BigDecimal`.
|
1472
1617
|
|
1473
|
-
|
1618
|
+
Integers are handled as a special case returning `BigDecimal` always
|
1619
|
+
(this was the case before already).
|
1474
1620
|
|
1475
1621
|
```ruby
|
1476
|
-
|
1622
|
+
# With the following schema:
|
1623
|
+
create_table "measurements" do |t|
|
1624
|
+
t.float "temperature"
|
1625
|
+
end
|
1626
|
+
|
1627
|
+
# Before:
|
1628
|
+
Measurement.average(:temperature).class
|
1629
|
+
# => BigDecimal
|
1630
|
+
|
1631
|
+
# After:
|
1632
|
+
Measurement.average(:temperature).class
|
1633
|
+
# => Float
|
1477
1634
|
```
|
1478
1635
|
|
1479
|
-
|
1636
|
+
Before this change, Rails just called `to_d` on average aggregates from the
|
1637
|
+
database adapter. This is not the case anymore. If you relied on that kind
|
1638
|
+
of magic, you now need to register your own `ActiveRecord::Type`
|
1639
|
+
(see `ActiveRecord::Attributes::ClassMethods` for documentation).
|
1640
|
+
|
1641
|
+
*Josua Schmid*
|
1642
|
+
|
1643
|
+
* PostgreSQL: introduce `ActiveRecord::ConnectionAdapters::PostgreSQLAdapter.datetime_type`.
|
1644
|
+
|
1645
|
+
This setting controls what native type Active Record should use when you call `datetime` in
|
1646
|
+
a migration or schema. It takes a symbol which must correspond to one of the configured
|
1647
|
+
`NATIVE_DATABASE_TYPES`. The default is `:timestamp`, meaning `t.datetime` in a migration
|
1648
|
+
will create a "timestamp without time zone" column. To use "timestamp with time zone",
|
1649
|
+
change this to `:timestamptz` in an initializer.
|
1650
|
+
|
1651
|
+
You should run `bin/rails db:migrate` to rebuild your schema.rb if you change this.
|
1652
|
+
|
1653
|
+
*Alex Ghiculescu*
|
1654
|
+
|
1655
|
+
* PostgreSQL: handle `timestamp with time zone` columns correctly in `schema.rb`.
|
1656
|
+
|
1657
|
+
Previously they dumped as `t.datetime :column_name`, now they dump as `t.timestamptz :column_name`,
|
1658
|
+
and are created as `timestamptz` columns when the schema is loaded.
|
1659
|
+
|
1660
|
+
*Alex Ghiculescu*
|
1661
|
+
|
1662
|
+
* Removing trailing whitespace when matching columns in
|
1663
|
+
`ActiveRecord::Sanitization.disallow_raw_sql!`.
|
1664
|
+
|
1665
|
+
*Gannon McGibbon*, *Adrian Hirt*
|
1666
|
+
|
1667
|
+
* Expose a way for applications to set a `primary_abstract_class`.
|
1668
|
+
|
1669
|
+
Multiple database applications that use a primary abstract class that is not
|
1670
|
+
named `ApplicationRecord` can now set a specific class to be the `primary_abstract_class`.
|
1480
1671
|
|
1481
1672
|
```ruby
|
1482
|
-
|
1483
|
-
|
1484
|
-
|
1673
|
+
class PrimaryApplicationRecord
|
1674
|
+
self.primary_abstract_class
|
1675
|
+
end
|
1485
1676
|
```
|
1486
1677
|
|
1487
|
-
|
1678
|
+
When an application boots it automatically connects to the primary or first database in the
|
1679
|
+
database configuration file. In a multiple database application that then call `connects_to`
|
1680
|
+
needs to know that the default connection is the same as the `ApplicationRecord` connection.
|
1681
|
+
However, some applications have a differently named `ApplicationRecord`. This prevents Active
|
1682
|
+
Record from opening duplicate connections to the same database.
|
1488
1683
|
|
1489
|
-
*
|
1490
|
-
|
1491
|
-
*Eileen Uchitelle*, *John Crepezzi*
|
1684
|
+
*Eileen M. Uchitelle*, *John Crepezzi*
|
1492
1685
|
|
1493
|
-
*
|
1686
|
+
* Support hash config for `structure_dump_flags` and `structure_load_flags` flags.
|
1687
|
+
Now that Active Record supports multiple databases configuration,
|
1688
|
+
we need a way to pass specific flags for dump/load databases since
|
1689
|
+
the options are not the same for different adapters.
|
1690
|
+
We can use in the original way:
|
1494
1691
|
|
1495
|
-
|
1692
|
+
```ruby
|
1693
|
+
ActiveRecord::Tasks::DatabaseTasks.structure_dump_flags = ['--no-defaults', '--skip-add-drop-table']
|
1694
|
+
# or
|
1695
|
+
ActiveRecord::Tasks::DatabaseTasks.structure_dump_flags = '--no-defaults --skip-add-drop-table'
|
1696
|
+
```
|
1496
1697
|
|
1497
|
-
|
1698
|
+
And also use it passing a hash, with one or more keys, where the key
|
1699
|
+
is the adapter
|
1498
1700
|
|
1499
|
-
|
1701
|
+
```ruby
|
1702
|
+
ActiveRecord::Tasks::DatabaseTasks.structure_dump_flags = {
|
1703
|
+
mysql2: ['--no-defaults', '--skip-add-drop-table'],
|
1704
|
+
postgres: '--no-tablespaces'
|
1705
|
+
}
|
1706
|
+
```
|
1500
1707
|
|
1501
|
-
|
1708
|
+
*Gustavo Gonzalez*
|
1502
1709
|
|
1503
|
-
|
1504
|
-
|
1505
|
-
|
1506
|
-
|
1710
|
+
* Connection specification now passes the "url" key as a configuration for the
|
1711
|
+
adapter if the "url" protocol is "jdbc", "http", or "https". Previously only
|
1712
|
+
urls with the "jdbc" prefix were passed to the Active Record Adapter, others
|
1713
|
+
are assumed to be adapter specification urls.
|
1507
1714
|
|
1508
|
-
|
1715
|
+
Fixes #41137.
|
1509
1716
|
|
1510
|
-
|
1717
|
+
*Jonathan Bracy*
|
1511
1718
|
|
1512
|
-
|
1719
|
+
* Allow to opt-out of `strict_loading` mode on a per-record base.
|
1513
1720
|
|
1514
|
-
|
1721
|
+
This is useful when strict loading is enabled application wide or on a
|
1722
|
+
model level.
|
1515
1723
|
|
1516
|
-
|
1724
|
+
```ruby
|
1725
|
+
class User < ApplicationRecord
|
1726
|
+
has_many :bookmarks
|
1727
|
+
has_many :articles, strict_loading: true
|
1728
|
+
end
|
1517
1729
|
|
1518
|
-
|
1730
|
+
user = User.first
|
1731
|
+
user.articles # => ActiveRecord::StrictLoadingViolationError
|
1732
|
+
user.bookmarks # => #<ActiveRecord::Associations::CollectionProxy>
|
1519
1733
|
|
1520
|
-
|
1734
|
+
user.strict_loading!(true) # => true
|
1735
|
+
user.bookmarks # => ActiveRecord::StrictLoadingViolationError
|
1521
1736
|
|
1522
|
-
|
1737
|
+
user.strict_loading!(false) # => false
|
1738
|
+
user.bookmarks # => #<ActiveRecord::Associations::CollectionProxy>
|
1739
|
+
user.articles.strict_loading!(false) # => #<ActiveRecord::Associations::CollectionProxy>
|
1740
|
+
```
|
1523
1741
|
|
1524
|
-
|
1742
|
+
*Ayrton De Craene*
|
1525
1743
|
|
1526
|
-
|
1744
|
+
* Add `FinderMethods#sole` and `#find_sole_by` to find and assert the
|
1745
|
+
presence of exactly one record.
|
1527
1746
|
|
1528
|
-
|
1747
|
+
Used when you need a single row, but also want to assert that there aren't
|
1748
|
+
multiple rows matching the condition; especially for when database
|
1749
|
+
constraints aren't enough or are impractical.
|
1529
1750
|
|
1530
|
-
|
1751
|
+
```ruby
|
1752
|
+
Product.where(["price = %?", price]).sole
|
1753
|
+
# => ActiveRecord::RecordNotFound (if no Product with given price)
|
1754
|
+
# => #<Product ...> (if one Product with given price)
|
1755
|
+
# => ActiveRecord::SoleRecordExceeded (if more than one Product with given price)
|
1531
1756
|
|
1532
|
-
|
1757
|
+
user.api_keys.find_sole_by(key: key)
|
1758
|
+
# as above
|
1759
|
+
```
|
1533
1760
|
|
1534
|
-
*
|
1761
|
+
*Asherah Connor*
|
1535
1762
|
|
1536
|
-
|
1763
|
+
* Makes `ActiveRecord::AttributeMethods::Query` respect the getter overrides defined in the model.
|
1537
1764
|
|
1538
|
-
|
1765
|
+
Before:
|
1539
1766
|
|
1540
|
-
|
1767
|
+
```ruby
|
1768
|
+
class User
|
1769
|
+
def admin
|
1770
|
+
false # Overriding the getter to always return false
|
1771
|
+
end
|
1772
|
+
end
|
1541
1773
|
|
1542
|
-
|
1774
|
+
user = User.first
|
1775
|
+
user.update(admin: true)
|
1543
1776
|
|
1544
|
-
|
1777
|
+
user.admin # false (as expected, due to the getter overwrite)
|
1778
|
+
user.admin? # true (not expected, returned the DB column value)
|
1779
|
+
```
|
1545
1780
|
|
1546
|
-
|
1781
|
+
After this commit, `user.admin?` above returns false, as expected.
|
1547
1782
|
|
1548
|
-
|
1783
|
+
Fixes #40771.
|
1549
1784
|
|
1550
|
-
*
|
1785
|
+
*Felipe*
|
1551
1786
|
|
1552
|
-
|
1787
|
+
* Allow delegated_type to be specified primary_key and foreign_key.
|
1553
1788
|
|
1554
|
-
|
1789
|
+
Since delegated_type assumes that the foreign_key ends with `_id`,
|
1790
|
+
`singular_id` defined by it does not work when the foreign_key does
|
1791
|
+
not end with `id`. This change fixes it by taking into account
|
1792
|
+
`primary_key` and `foreign_key` in the options.
|
1555
1793
|
|
1556
|
-
*
|
1794
|
+
*Ryota Egusa*
|
1557
1795
|
|
1558
|
-
*
|
1796
|
+
* Expose an `invert_where` method that will invert all scope conditions.
|
1559
1797
|
|
1560
|
-
|
1798
|
+
```ruby
|
1799
|
+
class User
|
1800
|
+
scope :active, -> { where(accepted: true, locked: false) }
|
1801
|
+
end
|
1561
1802
|
|
1562
|
-
|
1803
|
+
User.active
|
1804
|
+
# ... WHERE `accepted` = 1 AND `locked` = 0
|
1563
1805
|
|
1564
|
-
|
1565
|
-
|
1566
|
-
|
1806
|
+
User.active.invert_where
|
1807
|
+
# ... WHERE NOT (`accepted` = 1 AND `locked` = 0)
|
1808
|
+
```
|
1567
1809
|
|
1568
|
-
*
|
1810
|
+
*Kevin Deisz*
|
1569
1811
|
|
1570
|
-
*
|
1812
|
+
* Restore possibility of passing `false` to :polymorphic option of `belongs_to`.
|
1571
1813
|
|
1572
|
-
|
1814
|
+
Previously, passing `false` would trigger the option validation logic
|
1815
|
+
to throw an error saying :polymorphic would not be a valid option.
|
1573
1816
|
|
1574
|
-
*
|
1817
|
+
*glaszig*
|
1575
1818
|
|
1576
|
-
|
1819
|
+
* Remove deprecated `database` kwarg from `connected_to`.
|
1577
1820
|
|
1578
|
-
*
|
1821
|
+
*Eileen M. Uchitelle*, *John Crepezzi*
|
1579
1822
|
|
1580
|
-
|
1823
|
+
* Allow adding nonnamed expression indexes to be revertible.
|
1581
1824
|
|
1582
|
-
|
1825
|
+
Previously, the following code would raise an error, when executed while rolling back,
|
1826
|
+
and the index name should be specified explicitly. Now, the index name is inferred
|
1827
|
+
automatically.
|
1583
1828
|
|
1584
|
-
|
1829
|
+
```ruby
|
1830
|
+
add_index(:items, "to_tsvector('english', description)")
|
1831
|
+
```
|
1585
1832
|
|
1586
|
-
|
1833
|
+
Fixes #40732.
|
1587
1834
|
|
1588
|
-
|
1835
|
+
*fatkodima*
|
1589
1836
|
|
1590
|
-
|
1837
|
+
* Only warn about negative enums if a positive form that would cause conflicts exists.
|
1591
1838
|
|
1592
|
-
|
1839
|
+
Fixes #39065.
|
1593
1840
|
|
1594
|
-
|
1841
|
+
*Alex Ghiculescu*
|
1595
1842
|
|
1596
|
-
|
1843
|
+
* Add option to run `default_scope` on all queries.
|
1597
1844
|
|
1598
|
-
|
1845
|
+
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`).
|
1599
1846
|
|
1600
|
-
|
1847
|
+
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.
|
1601
1848
|
|
1602
|
-
|
1849
|
+
```ruby
|
1850
|
+
class Article < ApplicationRecord
|
1851
|
+
default_scope -> { where(blog_id: Current.blog.id) }, all_queries: true
|
1852
|
+
end
|
1853
|
+
```
|
1603
1854
|
|
1604
|
-
*
|
1855
|
+
*Eileen M. Uchitelle*
|
1605
1856
|
|
1606
|
-
*
|
1857
|
+
* Add `where.associated` to check for the presence of an association.
|
1607
1858
|
|
1608
|
-
|
1859
|
+
```ruby
|
1860
|
+
# Before:
|
1861
|
+
account.users.joins(:contact).where.not(contact_id: nil)
|
1609
1862
|
|
1610
|
-
|
1863
|
+
# After:
|
1864
|
+
account.users.where.associated(:contact)
|
1865
|
+
```
|
1611
1866
|
|
1612
|
-
|
1867
|
+
Also mirrors `where.missing`.
|
1613
1868
|
|
1614
|
-
*
|
1869
|
+
*Kasper Timm Hansen*
|
1615
1870
|
|
1616
|
-
* Allow
|
1871
|
+
* Allow constructors (`build_association` and `create_association`) on
|
1872
|
+
`has_one :through` associations.
|
1617
1873
|
|
1618
|
-
*
|
1874
|
+
*Santiago Perez Perret*
|
1619
1875
|
|
1620
1876
|
|
1621
|
-
Please check [6-
|
1877
|
+
Please check [6-1-stable](https://github.com/rails/rails/blob/6-1-stable/activerecord/CHANGELOG.md) for previous changes.
|