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