activerecord 6.0.6.1 → 6.1.7.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +1152 -779
- data/MIT-LICENSE +1 -1
- data/README.rdoc +2 -2
- data/lib/active_record/aggregations.rb +5 -5
- data/lib/active_record/association_relation.rb +30 -12
- data/lib/active_record/associations/alias_tracker.rb +19 -15
- data/lib/active_record/associations/association.rb +49 -26
- data/lib/active_record/associations/association_scope.rb +18 -20
- data/lib/active_record/associations/belongs_to_association.rb +23 -10
- data/lib/active_record/associations/belongs_to_polymorphic_association.rb +8 -3
- data/lib/active_record/associations/builder/association.rb +32 -5
- data/lib/active_record/associations/builder/belongs_to.rb +10 -7
- data/lib/active_record/associations/builder/collection_association.rb +5 -4
- data/lib/active_record/associations/builder/has_and_belongs_to_many.rb +0 -1
- data/lib/active_record/associations/builder/has_many.rb +6 -2
- data/lib/active_record/associations/builder/has_one.rb +11 -14
- data/lib/active_record/associations/builder/singular_association.rb +1 -1
- data/lib/active_record/associations/collection_association.rb +32 -18
- data/lib/active_record/associations/collection_proxy.rb +12 -5
- data/lib/active_record/associations/foreign_association.rb +13 -0
- data/lib/active_record/associations/has_many_association.rb +24 -2
- data/lib/active_record/associations/has_many_through_association.rb +10 -4
- data/lib/active_record/associations/has_one_association.rb +15 -1
- data/lib/active_record/associations/join_dependency/join_association.rb +37 -21
- data/lib/active_record/associations/join_dependency/join_part.rb +1 -1
- data/lib/active_record/associations/join_dependency.rb +63 -49
- data/lib/active_record/associations/preloader/association.rb +14 -8
- data/lib/active_record/associations/preloader/through_association.rb +1 -1
- data/lib/active_record/associations/preloader.rb +5 -3
- data/lib/active_record/associations/singular_association.rb +1 -1
- data/lib/active_record/associations.rb +118 -11
- data/lib/active_record/attribute_assignment.rb +10 -8
- data/lib/active_record/attribute_methods/before_type_cast.rb +13 -9
- data/lib/active_record/attribute_methods/dirty.rb +1 -11
- data/lib/active_record/attribute_methods/primary_key.rb +6 -2
- data/lib/active_record/attribute_methods/query.rb +3 -6
- data/lib/active_record/attribute_methods/read.rb +8 -11
- data/lib/active_record/attribute_methods/serialization.rb +11 -5
- data/lib/active_record/attribute_methods/time_zone_conversion.rb +12 -13
- data/lib/active_record/attribute_methods/write.rb +12 -20
- data/lib/active_record/attribute_methods.rb +64 -54
- data/lib/active_record/attributes.rb +33 -8
- data/lib/active_record/autosave_association.rb +47 -30
- data/lib/active_record/base.rb +2 -14
- data/lib/active_record/callbacks.rb +152 -22
- data/lib/active_record/coders/yaml_column.rb +1 -1
- data/lib/active_record/connection_adapters/abstract/connection_pool.rb +185 -134
- data/lib/active_record/connection_adapters/abstract/database_limits.rb +2 -44
- data/lib/active_record/connection_adapters/abstract/database_statements.rb +66 -23
- data/lib/active_record/connection_adapters/abstract/query_cache.rb +3 -8
- data/lib/active_record/connection_adapters/abstract/quoting.rb +34 -34
- data/lib/active_record/connection_adapters/abstract/savepoints.rb +3 -3
- data/lib/active_record/connection_adapters/abstract/schema_creation.rb +153 -116
- data/lib/active_record/connection_adapters/abstract/schema_definitions.rb +114 -26
- data/lib/active_record/connection_adapters/abstract/schema_dumper.rb +3 -3
- data/lib/active_record/connection_adapters/abstract/schema_statements.rb +228 -83
- data/lib/active_record/connection_adapters/abstract/transaction.rb +92 -33
- data/lib/active_record/connection_adapters/abstract_adapter.rb +52 -76
- data/lib/active_record/connection_adapters/abstract_mysql_adapter.rb +123 -87
- data/lib/active_record/connection_adapters/column.rb +15 -1
- data/lib/active_record/connection_adapters/deduplicable.rb +29 -0
- data/lib/active_record/connection_adapters/legacy_pool_manager.rb +35 -0
- data/lib/active_record/connection_adapters/mysql/database_statements.rb +24 -24
- data/lib/active_record/connection_adapters/mysql/explain_pretty_printer.rb +1 -1
- data/lib/active_record/connection_adapters/mysql/quoting.rb +18 -3
- data/lib/active_record/connection_adapters/mysql/schema_creation.rb +32 -6
- data/lib/active_record/connection_adapters/mysql/schema_definitions.rb +8 -0
- data/lib/active_record/connection_adapters/mysql/schema_dumper.rb +5 -2
- data/lib/active_record/connection_adapters/mysql/schema_statements.rb +7 -4
- data/lib/active_record/connection_adapters/mysql/type_metadata.rb +10 -1
- data/lib/active_record/connection_adapters/mysql2_adapter.rb +31 -12
- data/lib/active_record/connection_adapters/pool_config.rb +73 -0
- data/lib/active_record/connection_adapters/pool_manager.rb +47 -0
- data/lib/active_record/connection_adapters/postgresql/column.rb +24 -1
- data/lib/active_record/connection_adapters/postgresql/database_statements.rb +14 -53
- data/lib/active_record/connection_adapters/postgresql/oid/cidr.rb +3 -5
- data/lib/active_record/connection_adapters/postgresql/oid/date.rb +2 -2
- data/lib/active_record/connection_adapters/postgresql/oid/date_time.rb +2 -2
- data/lib/active_record/connection_adapters/postgresql/oid/interval.rb +49 -0
- data/lib/active_record/connection_adapters/postgresql/oid/legacy_point.rb +2 -2
- data/lib/active_record/connection_adapters/postgresql/oid/macaddr.rb +25 -0
- data/lib/active_record/connection_adapters/postgresql/oid/point.rb +2 -2
- data/lib/active_record/connection_adapters/postgresql/oid/uuid.rb +11 -1
- data/lib/active_record/connection_adapters/postgresql/oid.rb +2 -0
- data/lib/active_record/connection_adapters/postgresql/quoting.rb +30 -4
- data/lib/active_record/connection_adapters/postgresql/referential_integrity.rb +1 -1
- data/lib/active_record/connection_adapters/postgresql/schema_creation.rb +5 -1
- data/lib/active_record/connection_adapters/postgresql/schema_statements.rb +61 -29
- data/lib/active_record/connection_adapters/postgresql/type_metadata.rb +8 -0
- data/lib/active_record/connection_adapters/postgresql_adapter.rb +75 -64
- data/lib/active_record/connection_adapters/schema_cache.rb +130 -15
- data/lib/active_record/connection_adapters/sql_type_metadata.rb +8 -0
- data/lib/active_record/connection_adapters/sqlite3/database_statements.rb +32 -5
- data/lib/active_record/connection_adapters/sqlite3/quoting.rb +1 -1
- data/lib/active_record/connection_adapters/sqlite3/schema_creation.rb +5 -1
- data/lib/active_record/connection_adapters/sqlite3/schema_statements.rb +36 -3
- data/lib/active_record/connection_adapters/sqlite3_adapter.rb +48 -50
- data/lib/active_record/connection_adapters.rb +52 -0
- data/lib/active_record/connection_handling.rb +218 -71
- data/lib/active_record/core.rb +264 -63
- data/lib/active_record/database_configurations/connection_url_resolver.rb +99 -0
- data/lib/active_record/database_configurations/database_config.rb +52 -9
- data/lib/active_record/database_configurations/hash_config.rb +54 -8
- data/lib/active_record/database_configurations/url_config.rb +15 -40
- data/lib/active_record/database_configurations.rb +125 -85
- data/lib/active_record/delegated_type.rb +209 -0
- data/lib/active_record/destroy_association_async_job.rb +36 -0
- data/lib/active_record/enum.rb +69 -34
- data/lib/active_record/errors.rb +47 -12
- data/lib/active_record/explain.rb +9 -4
- data/lib/active_record/explain_subscriber.rb +1 -1
- data/lib/active_record/fixture_set/file.rb +10 -17
- data/lib/active_record/fixture_set/model_metadata.rb +1 -2
- data/lib/active_record/fixture_set/render_context.rb +1 -1
- data/lib/active_record/fixture_set/table_row.rb +2 -2
- data/lib/active_record/fixtures.rb +58 -9
- data/lib/active_record/gem_version.rb +3 -3
- data/lib/active_record/inheritance.rb +40 -18
- data/lib/active_record/insert_all.rb +38 -5
- data/lib/active_record/integration.rb +3 -5
- data/lib/active_record/internal_metadata.rb +18 -7
- data/lib/active_record/legacy_yaml_adapter.rb +7 -3
- data/lib/active_record/locking/optimistic.rb +24 -17
- data/lib/active_record/locking/pessimistic.rb +6 -2
- data/lib/active_record/log_subscriber.rb +27 -8
- data/lib/active_record/middleware/database_selector/resolver/session.rb +3 -0
- data/lib/active_record/middleware/database_selector/resolver.rb +5 -0
- data/lib/active_record/middleware/database_selector.rb +4 -1
- data/lib/active_record/migration/command_recorder.rb +47 -27
- data/lib/active_record/migration/compatibility.rb +72 -18
- data/lib/active_record/migration.rb +114 -84
- data/lib/active_record/model_schema.rb +89 -14
- data/lib/active_record/nested_attributes.rb +2 -3
- data/lib/active_record/no_touching.rb +1 -1
- data/lib/active_record/persistence.rb +50 -45
- data/lib/active_record/query_cache.rb +15 -5
- data/lib/active_record/querying.rb +11 -6
- data/lib/active_record/railtie.rb +64 -44
- data/lib/active_record/railties/console_sandbox.rb +2 -4
- data/lib/active_record/railties/databases.rake +279 -101
- data/lib/active_record/readonly_attributes.rb +4 -0
- data/lib/active_record/reflection.rb +60 -44
- data/lib/active_record/relation/batches/batch_enumerator.rb +25 -9
- data/lib/active_record/relation/batches.rb +38 -31
- data/lib/active_record/relation/calculations.rb +104 -43
- data/lib/active_record/relation/finder_methods.rb +44 -14
- data/lib/active_record/relation/from_clause.rb +1 -1
- data/lib/active_record/relation/merger.rb +20 -23
- data/lib/active_record/relation/predicate_builder/array_handler.rb +8 -9
- data/lib/active_record/relation/predicate_builder/association_query_value.rb +4 -5
- data/lib/active_record/relation/predicate_builder/polymorphic_array_value.rb +10 -6
- data/lib/active_record/relation/predicate_builder/relation_handler.rb +1 -1
- data/lib/active_record/relation/predicate_builder.rb +61 -38
- data/lib/active_record/relation/query_methods.rb +322 -196
- data/lib/active_record/relation/record_fetch_warning.rb +3 -3
- data/lib/active_record/relation/spawn_methods.rb +8 -7
- data/lib/active_record/relation/where_clause.rb +111 -61
- data/lib/active_record/relation.rb +100 -81
- data/lib/active_record/result.rb +41 -33
- data/lib/active_record/runtime_registry.rb +2 -2
- data/lib/active_record/sanitization.rb +6 -17
- data/lib/active_record/schema_dumper.rb +34 -4
- data/lib/active_record/schema_migration.rb +2 -8
- data/lib/active_record/scoping/default.rb +1 -3
- data/lib/active_record/scoping/named.rb +1 -17
- data/lib/active_record/secure_token.rb +16 -8
- data/lib/active_record/serialization.rb +5 -3
- data/lib/active_record/signed_id.rb +116 -0
- data/lib/active_record/statement_cache.rb +20 -4
- data/lib/active_record/store.rb +8 -3
- data/lib/active_record/suppressor.rb +2 -2
- data/lib/active_record/table_metadata.rb +42 -51
- data/lib/active_record/tasks/database_tasks.rb +140 -113
- data/lib/active_record/tasks/mysql_database_tasks.rb +34 -35
- data/lib/active_record/tasks/postgresql_database_tasks.rb +24 -26
- data/lib/active_record/tasks/sqlite_database_tasks.rb +13 -9
- data/lib/active_record/test_databases.rb +5 -4
- data/lib/active_record/test_fixtures.rb +79 -31
- data/lib/active_record/timestamp.rb +4 -6
- data/lib/active_record/touch_later.rb +21 -21
- data/lib/active_record/transactions.rb +19 -66
- data/lib/active_record/type/serialized.rb +6 -2
- data/lib/active_record/type.rb +8 -1
- data/lib/active_record/type_caster/connection.rb +0 -1
- data/lib/active_record/type_caster/map.rb +8 -5
- data/lib/active_record/validations/associated.rb +1 -1
- data/lib/active_record/validations/numericality.rb +35 -0
- data/lib/active_record/validations/uniqueness.rb +24 -4
- data/lib/active_record/validations.rb +1 -0
- data/lib/active_record.rb +7 -14
- data/lib/arel/attributes/attribute.rb +4 -0
- data/lib/arel/collectors/bind.rb +5 -0
- data/lib/arel/collectors/composite.rb +8 -0
- data/lib/arel/collectors/sql_string.rb +7 -0
- data/lib/arel/collectors/substitute_binds.rb +7 -0
- data/lib/arel/nodes/binary.rb +82 -8
- data/lib/arel/nodes/bind_param.rb +8 -0
- data/lib/arel/nodes/casted.rb +21 -9
- data/lib/arel/nodes/equality.rb +6 -9
- data/lib/arel/nodes/grouping.rb +3 -0
- data/lib/arel/nodes/homogeneous_in.rb +76 -0
- data/lib/arel/nodes/in.rb +8 -1
- data/lib/arel/nodes/infix_operation.rb +13 -1
- data/lib/arel/nodes/join_source.rb +1 -1
- data/lib/arel/nodes/node.rb +7 -6
- data/lib/arel/nodes/ordering.rb +27 -0
- data/lib/arel/nodes/sql_literal.rb +3 -0
- data/lib/arel/nodes/table_alias.rb +7 -3
- data/lib/arel/nodes/unary.rb +0 -1
- data/lib/arel/nodes.rb +3 -1
- data/lib/arel/predications.rb +12 -18
- data/lib/arel/select_manager.rb +1 -2
- data/lib/arel/table.rb +13 -5
- data/lib/arel/visitors/dot.rb +14 -2
- data/lib/arel/visitors/mysql.rb +11 -1
- data/lib/arel/visitors/postgresql.rb +15 -4
- data/lib/arel/visitors/to_sql.rb +89 -78
- data/lib/arel/visitors.rb +0 -7
- data/lib/arel.rb +5 -13
- data/lib/rails/generators/active_record/migration/migration_generator.rb +1 -0
- data/lib/rails/generators/active_record/migration/templates/create_table_migration.rb.tt +2 -0
- data/lib/rails/generators/active_record/migration/templates/migration.rb.tt +3 -3
- data/lib/rails/generators/active_record/migration.rb +6 -1
- data/lib/rails/generators/active_record/model/model_generator.rb +39 -2
- data/lib/rails/generators/active_record/model/templates/abstract_base_class.rb.tt +7 -0
- metadata +25 -26
- data/lib/active_record/advisory_lock_base.rb +0 -18
- data/lib/active_record/attribute_decorators.rb +0 -88
- data/lib/active_record/connection_adapters/connection_specification.rb +0 -296
- data/lib/active_record/connection_adapters/determine_if_preparable_visitor.rb +0 -29
- data/lib/active_record/define_callbacks.rb +0 -22
- data/lib/active_record/railties/collection_cache_association_loading.rb +0 -34
- data/lib/active_record/relation/predicate_builder/base_handler.rb +0 -18
- data/lib/active_record/relation/where_clause_factory.rb +0 -33
- data/lib/arel/attributes.rb +0 -22
- data/lib/arel/visitors/depth_first.rb +0 -203
- data/lib/arel/visitors/ibm_db.rb +0 -34
- data/lib/arel/visitors/informix.rb +0 -62
- data/lib/arel/visitors/mssql.rb +0 -156
- data/lib/arel/visitors/oracle.rb +0 -158
- data/lib/arel/visitors/oracle12.rb +0 -65
- data/lib/arel/visitors/where_sql.rb +0 -22
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,31 @@
|
|
1
|
-
## Rails 6.
|
1
|
+
## Rails 6.1.7.6 (August 22, 2023) ##
|
2
2
|
|
3
|
-
*
|
3
|
+
* No changes.
|
4
|
+
|
5
|
+
|
6
|
+
## Rails 6.1.7.5 (August 22, 2023) ##
|
7
|
+
|
8
|
+
* No changes.
|
9
|
+
|
10
|
+
|
11
|
+
## Rails 6.1.7.4 (June 26, 2023) ##
|
12
|
+
|
13
|
+
* No changes.
|
14
|
+
|
15
|
+
|
16
|
+
## Rails 6.1.7.3 (March 13, 2023) ##
|
17
|
+
|
18
|
+
* No changes.
|
19
|
+
|
20
|
+
|
21
|
+
## Rails 6.1.7.2 (January 24, 2023) ##
|
22
|
+
|
23
|
+
* No changes.
|
24
|
+
|
25
|
+
|
26
|
+
## Rails 6.1.7.1 (January 17, 2023) ##
|
27
|
+
|
28
|
+
* Make sanitize_as_sql_comment more strict
|
4
29
|
|
5
30
|
Though this method was likely never meant to take user input, it was
|
6
31
|
attempting sanitization. That sanitization could be bypassed with
|
@@ -16,15 +41,38 @@
|
|
16
41
|
|
17
42
|
[CVE-2023-22794]
|
18
43
|
|
44
|
+
* Added integer width check to PostgreSQL::Quoting
|
19
45
|
|
20
|
-
|
46
|
+
Given a value outside the range for a 64bit signed integer type
|
47
|
+
PostgreSQL will treat the column type as numeric. Comparing
|
48
|
+
integer values against numeric values can result in a slow
|
49
|
+
sequential scan.
|
50
|
+
|
51
|
+
This behavior is configurable via
|
52
|
+
ActiveRecord::Base.raise_int_wider_than_64bit which defaults to true.
|
53
|
+
|
54
|
+
[CVE-2022-44566]
|
55
|
+
|
56
|
+
## Rails 6.1.7 (September 09, 2022) ##
|
21
57
|
|
22
58
|
* Symbol is allowed by default for YAML columns
|
23
59
|
|
24
60
|
*Étienne Barrié*
|
25
61
|
|
62
|
+
* Fix `ActiveRecord::Store` to serialize as a regular Hash
|
63
|
+
|
64
|
+
Previously it would serialize as an `ActiveSupport::HashWithIndifferentAccess`
|
65
|
+
which is wasteful and cause problem with YAML safe_load.
|
26
66
|
|
27
|
-
|
67
|
+
*Jean Boussier*
|
68
|
+
|
69
|
+
* Fix PG.connect keyword arguments deprecation warning on ruby 2.7
|
70
|
+
|
71
|
+
Fixes #44307.
|
72
|
+
|
73
|
+
*Nikita Vasilevsky*
|
74
|
+
|
75
|
+
## Rails 6.1.6.1 (July 12, 2022) ##
|
28
76
|
|
29
77
|
* Change ActiveRecord::Coders::YAMLColumn default to safe_load
|
30
78
|
|
@@ -52,1398 +100,1723 @@
|
|
52
100
|
[CVE-2022-32224]
|
53
101
|
|
54
102
|
|
55
|
-
## Rails 6.
|
103
|
+
## Rails 6.1.6 (May 09, 2022) ##
|
56
104
|
|
57
105
|
* No changes.
|
58
106
|
|
59
107
|
|
60
|
-
## Rails 6.
|
108
|
+
## Rails 6.1.5.1 (April 26, 2022) ##
|
61
109
|
|
62
110
|
* No changes.
|
63
111
|
|
64
112
|
|
65
|
-
## Rails 6.
|
113
|
+
## Rails 6.1.5 (March 09, 2022) ##
|
66
114
|
|
67
|
-
*
|
115
|
+
* Fix `ActiveRecord::ConnectionAdapters::SchemaCache#deep_deduplicate` for Ruby 2.6.
|
68
116
|
|
117
|
+
Ruby 2.6 and 2.7 have slightly different implementations of the `String#-@` method.
|
118
|
+
In Ruby 2.6, the receiver of the `String#-@` method is modified under certain circumstances.
|
119
|
+
This was later identified as a bug (https://bugs.ruby-lang.org/issues/15926) and only
|
120
|
+
fixed in Ruby 2.7.
|
69
121
|
|
70
|
-
|
122
|
+
Before the changes in this commit, the
|
123
|
+
`ActiveRecord::ConnectionAdapters::SchemaCache#deep_deduplicate` method, which internally
|
124
|
+
calls the `String#-@` method, could also modify an input string argument in Ruby 2.6 --
|
125
|
+
changing a tainted, unfrozen string into a tainted, frozen string.
|
71
126
|
|
72
|
-
|
127
|
+
Fixes #43056
|
73
128
|
|
129
|
+
*Eric O'Hanlon*
|
74
130
|
|
75
|
-
|
131
|
+
* Fix migration compatibility to create SQLite references/belongs_to column as integer when
|
132
|
+
migration version is 6.0.
|
76
133
|
|
77
|
-
|
134
|
+
`reference`/`belongs_to` in migrations with version 6.0 were creating columns as
|
135
|
+
bigint instead of integer for the SQLite Adapter.
|
78
136
|
|
137
|
+
*Marcelo Lauxen*
|
79
138
|
|
80
|
-
|
139
|
+
* Fix dbconsole for 3-tier config.
|
81
140
|
|
82
|
-
*
|
141
|
+
*Eileen M. Uchitelle*
|
83
142
|
|
143
|
+
* Better handle SQL queries with invalid encoding.
|
84
144
|
|
85
|
-
|
145
|
+
```ruby
|
146
|
+
Post.create(name: "broken \xC8 UTF-8")
|
147
|
+
```
|
86
148
|
|
87
|
-
|
149
|
+
Would cause all adapters to fail in a non controlled way in the code
|
150
|
+
responsible to detect write queries.
|
88
151
|
|
152
|
+
The query is now properly passed to the database connection, which might or might
|
153
|
+
not be able to handle it, but will either succeed or failed in a more correct way.
|
89
154
|
|
90
|
-
|
155
|
+
*Jean Boussier*
|
91
156
|
|
92
|
-
*
|
157
|
+
* Ignore persisted in-memory records when merging target lists.
|
93
158
|
|
159
|
+
*Kevin Sjöberg*
|
94
160
|
|
95
|
-
|
161
|
+
* Fix regression bug that caused ignoring additional conditions for preloading
|
162
|
+
`has_many` through relations.
|
96
163
|
|
97
|
-
|
164
|
+
Fixes #43132
|
98
165
|
|
166
|
+
*Alexander Pauly*
|
99
167
|
|
100
|
-
|
168
|
+
* Fix `ActiveRecord::InternalMetadata` to not be broken by
|
169
|
+
`config.active_record.record_timestamps = false`
|
101
170
|
|
102
|
-
|
171
|
+
Since the model always create the timestamp columns, it has to set them, otherwise it breaks
|
172
|
+
various DB management tasks.
|
103
173
|
|
104
|
-
Fixes #
|
174
|
+
Fixes #42983
|
175
|
+
|
176
|
+
*Jean Boussier*
|
177
|
+
|
178
|
+
* Fix duplicate active record objects on `inverse_of`.
|
179
|
+
|
180
|
+
*Justin Carvalho*
|
181
|
+
|
182
|
+
* Fix duplicate objects stored in has many association after save.
|
183
|
+
|
184
|
+
Fixes #42549.
|
105
185
|
|
106
186
|
*Alex Ghiculescu*
|
107
187
|
|
108
|
-
*
|
188
|
+
* Fix performance regression in `CollectionAssocation#build`.
|
109
189
|
|
110
|
-
|
190
|
+
*Alex Ghiculescu*
|
111
191
|
|
112
|
-
|
192
|
+
* Fix retrieving default value for text column for MariaDB.
|
113
193
|
|
114
|
-
*
|
194
|
+
*fatkodima*
|
115
195
|
|
116
|
-
Fixes #36453.
|
117
196
|
|
118
|
-
|
197
|
+
## Rails 6.1.4.7 (March 08, 2022) ##
|
119
198
|
|
120
|
-
*
|
199
|
+
* No changes.
|
121
200
|
|
122
|
-
*Ryuta Kamizono*
|
123
201
|
|
124
|
-
|
202
|
+
## Rails 6.1.4.6 (February 11, 2022) ##
|
125
203
|
|
126
|
-
|
204
|
+
* No changes.
|
127
205
|
|
128
|
-
*Eugene Kenny*
|
129
206
|
|
130
|
-
|
207
|
+
## Rails 6.1.4.5 (February 11, 2022) ##
|
131
208
|
|
132
|
-
|
133
|
-
`ActiveRecord::Persistence.upsert_all` was used with the name of an expression index, an error
|
134
|
-
was raised. Adding a guard around the formatting behavior for the `:unique_by` corrects this.
|
209
|
+
* No changes.
|
135
210
|
|
136
|
-
Usage:
|
137
211
|
|
138
|
-
|
139
|
-
create_table :books, id: :integer, force: true do |t|
|
140
|
-
t.column :name, :string
|
141
|
-
t.index "lower(name)", unique: true
|
142
|
-
end
|
212
|
+
## Rails 6.1.4.4 (December 15, 2021) ##
|
143
213
|
|
144
|
-
|
145
|
-
```
|
214
|
+
* No changes.
|
146
215
|
|
147
|
-
Fixes #39516.
|
148
216
|
|
149
|
-
|
217
|
+
## Rails 6.1.4.3 (December 14, 2021) ##
|
150
218
|
|
151
|
-
*
|
219
|
+
* No changes.
|
152
220
|
|
153
|
-
*Ryuta Kamizono*
|
154
221
|
|
155
|
-
|
222
|
+
## Rails 6.1.4.2 (December 14, 2021) ##
|
156
223
|
|
157
|
-
|
224
|
+
* No changes.
|
158
225
|
|
159
|
-
* Resolve conflict between counter cache and optimistic locking.
|
160
226
|
|
161
|
-
|
162
|
-
cache. This avoids raising an unnecessary `ActiveRecord::StaleObjectError`
|
163
|
-
upon subsequent transactions by maintaining parity with the corresponding
|
164
|
-
database record's `lock_version` column.
|
227
|
+
## Rails 6.1.4.1 (August 19, 2021) ##
|
165
228
|
|
166
|
-
|
229
|
+
* No changes.
|
167
230
|
|
168
|
-
*Aaron Lipman*
|
169
231
|
|
170
|
-
|
232
|
+
## Rails 6.1.4 (June 24, 2021) ##
|
171
233
|
|
172
|
-
|
234
|
+
* Do not try to rollback transactions that failed due to a `ActiveRecord::TransactionRollbackError`.
|
173
235
|
|
174
|
-
*
|
236
|
+
*Jamie McCarthy*
|
175
237
|
|
176
|
-
|
238
|
+
* Raise an error if `pool_config` is `nil` in `set_pool_config`.
|
177
239
|
|
178
|
-
*
|
240
|
+
*Eileen M. Uchitelle*
|
179
241
|
|
180
|
-
|
242
|
+
* Fix compatibility with `psych >= 4`.
|
181
243
|
|
182
|
-
|
244
|
+
Starting in Psych 4.0.0 `YAML.load` behaves like `YAML.safe_load`. To preserve compatibility
|
245
|
+
Active Record's schema cache loader and `YAMLColumn` now uses `YAML.unsafe_load` if available.
|
183
246
|
|
184
|
-
*
|
247
|
+
*Jean Boussier*
|
185
248
|
|
186
|
-
*
|
249
|
+
* Support using replicas when using `rails dbconsole`.
|
187
250
|
|
188
|
-
*
|
251
|
+
*Christopher Thornton*
|
189
252
|
|
190
|
-
*
|
253
|
+
* Restore connection pools after transactional tests.
|
191
254
|
|
192
|
-
*
|
255
|
+
*Eugene Kenny*
|
256
|
+
|
257
|
+
* Change `upsert_all` to fails cleanly for MySQL when `:unique_by` is used.
|
258
|
+
|
259
|
+
*Bastian Bartmann*
|
193
260
|
|
194
|
-
*
|
195
|
-
doesn't support the feature.
|
261
|
+
* Fix user-defined `self.default_scope` to respect table alias.
|
196
262
|
|
197
263
|
*Ryuta Kamizono*
|
198
264
|
|
199
|
-
*
|
265
|
+
* Clear `@cache_keys` cache after `update_all`, `delete_all`, `destroy_all`.
|
200
266
|
|
201
267
|
*Ryuta Kamizono*
|
202
268
|
|
203
|
-
*
|
269
|
+
* Changed Arel predications `contains` and `overlaps` to use
|
270
|
+
`quoted_node` so that PostgreSQL arrays are quoted properly.
|
204
271
|
|
205
|
-
*
|
272
|
+
*Bradley Priest*
|
206
273
|
|
274
|
+
* Fix `merge` when the `where` clauses have string contents.
|
207
275
|
|
208
|
-
|
276
|
+
*Ryuta Kamizono*
|
209
277
|
|
210
|
-
*
|
278
|
+
* Fix rollback of parent destruction with nested `dependent: :destroy`.
|
211
279
|
|
280
|
+
*Jacopo Beschi*
|
212
281
|
|
213
|
-
|
282
|
+
* Fix binds logging for `"WHERE ... IN ..."` statements.
|
214
283
|
|
215
|
-
*
|
284
|
+
*Ricardo Díaz*
|
216
285
|
|
286
|
+
* Handle `false` in relation strict loading checks.
|
217
287
|
|
218
|
-
|
288
|
+
Previously when a model had strict loading set to true and then had a
|
289
|
+
relation set `strict_loading` to false the false wasn't considered when
|
290
|
+
deciding whether to raise/warn about strict loading.
|
219
291
|
|
220
|
-
|
292
|
+
```
|
293
|
+
class Dog < ActiveRecord::Base
|
294
|
+
self.strict_loading_by_default = true
|
221
295
|
|
222
|
-
|
223
|
-
|
224
|
-
|
296
|
+
has_many :treats, strict_loading: false
|
297
|
+
end
|
298
|
+
```
|
225
299
|
|
226
|
-
|
300
|
+
In the example, `dog.treats` would still raise even though
|
301
|
+
`strict_loading` was set to false. This is a bug affecting more than
|
302
|
+
Active Storage which is why I made this PR superseding #41461. We need
|
303
|
+
to fix this for all applications since the behavior is a little
|
304
|
+
surprising. I took the test from #41461 and the code suggestion from #41453
|
305
|
+
with some additions.
|
227
306
|
|
228
|
-
|
307
|
+
*Eileen M. Uchitelle*, *Radamés Roriz*
|
229
308
|
|
230
|
-
|
309
|
+
* Fix numericality validator without precision.
|
231
310
|
|
311
|
+
*Ryuta Kamizono*
|
232
312
|
|
233
|
-
|
313
|
+
* Fix aggregate attribute on Enum types.
|
234
314
|
|
235
|
-
*
|
315
|
+
*Ryuta Kamizono*
|
236
316
|
|
317
|
+
* Fix `CREATE INDEX` statement generation for PostgreSQL.
|
237
318
|
|
238
|
-
|
319
|
+
*eltongo*
|
239
320
|
|
240
|
-
*
|
321
|
+
* Fix where clause on enum attribute when providing array of strings.
|
322
|
+
|
323
|
+
*Ryuta Kamizono*
|
324
|
+
|
325
|
+
* Fix `unprepared_statement` to work it when nesting.
|
326
|
+
|
327
|
+
*Ryuta Kamizono*
|
241
328
|
|
242
329
|
|
243
|
-
## Rails 6.
|
330
|
+
## Rails 6.1.3.2 (May 05, 2021) ##
|
244
331
|
|
245
332
|
* No changes.
|
246
333
|
|
247
334
|
|
248
|
-
## Rails 6.
|
335
|
+
## Rails 6.1.3.1 (March 26, 2021) ##
|
249
336
|
|
250
337
|
* No changes.
|
251
338
|
|
252
339
|
|
253
|
-
## Rails 6.
|
340
|
+
## Rails 6.1.3 (February 17, 2021) ##
|
254
341
|
|
255
|
-
*
|
342
|
+
* Fix the MySQL adapter to always set the right collation and charset
|
343
|
+
to the connection session.
|
256
344
|
|
257
|
-
|
345
|
+
*Rafael Mendonça França*
|
258
346
|
|
259
|
-
|
347
|
+
* Fix MySQL adapter handling of time objects when prepared statements
|
348
|
+
are enabled.
|
260
349
|
|
261
|
-
*
|
350
|
+
*Rafael Mendonça França*
|
262
351
|
|
263
|
-
|
352
|
+
* Fix scoping in enum fields using conditions that would generate
|
353
|
+
an `IN` clause.
|
264
354
|
|
265
|
-
*
|
355
|
+
*Ryuta Kamizono*
|
266
356
|
|
267
|
-
|
357
|
+
* Skip optimised #exist? query when #include? is called on a relation
|
358
|
+
with a having clause
|
268
359
|
|
269
|
-
|
360
|
+
Relations that have aliased select values AND a having clause that
|
361
|
+
references an aliased select value would generate an error when
|
362
|
+
#include? was called, due to an optimisation that would generate
|
363
|
+
call #exists? on the relation instead, which effectively alters
|
364
|
+
the select values of the query (and thus removes the aliased select
|
365
|
+
values), but leaves the having clause intact. Because the having
|
366
|
+
clause is then referencing an aliased column that is no longer
|
367
|
+
present in the simplified query, an ActiveRecord::InvalidStatement
|
368
|
+
error was raised.
|
270
369
|
|
271
|
-
|
370
|
+
An sample query affected by this problem:
|
272
371
|
|
273
|
-
|
372
|
+
```ruby
|
373
|
+
Author.select('COUNT(*) as total_posts', 'authors.*')
|
374
|
+
.joins(:posts)
|
375
|
+
.group(:id)
|
376
|
+
.having('total_posts > 2')
|
377
|
+
.include?(Author.first)
|
378
|
+
```
|
274
379
|
|
275
|
-
|
380
|
+
This change adds an addition check to the condition that skips the
|
381
|
+
simplified #exists? query, which simply checks for the presence of
|
382
|
+
a having clause.
|
276
383
|
|
277
|
-
|
384
|
+
Fixes #41417
|
278
385
|
|
279
|
-
*
|
386
|
+
*Michael Smart*
|
280
387
|
|
281
|
-
*
|
388
|
+
* Increment postgres prepared statement counter before making a prepared statement, so if the statement is aborted
|
389
|
+
without Rails knowledge (e.g., if app gets kill -9d during long-running query or due to Rack::Timeout), app won't end
|
390
|
+
up in perpetual crash state for being inconsistent with Postgres.
|
282
391
|
|
283
|
-
|
392
|
+
*wbharding*, *Martin Tepper*
|
284
393
|
|
285
|
-
In order to fix this we are storing the advisory lock on a new connection with the connection specification name `AdisoryLockBase`. The caveat is that we need to maintain at least 2 connections to a database while migrations are running in order to do this.
|
286
394
|
|
287
|
-
|
395
|
+
## Rails 6.1.2.1 (February 10, 2021) ##
|
288
396
|
|
289
|
-
*
|
397
|
+
* Fix possible DoS vector in PostgreSQL money type
|
290
398
|
|
291
|
-
|
399
|
+
Carefully crafted input can cause a DoS via the regular expressions used
|
400
|
+
for validating the money format in the PostgreSQL adapter. This patch
|
401
|
+
fixes the regexp.
|
292
402
|
|
293
|
-
|
403
|
+
Thanks to @dee-see from Hackerone for this patch!
|
294
404
|
|
295
|
-
|
296
|
-
ActiveRecord::Relation#cache_key_with_version. This method will be used by
|
297
|
-
ActionController::ConditionalGet to ensure that when collection cache versioning
|
298
|
-
is enabled, requests using ConditionalGet don't return the same ETag header
|
299
|
-
after a collection is modified. Fixes #38078.
|
405
|
+
[CVE-2021-22880]
|
300
406
|
|
301
|
-
*Aaron
|
407
|
+
*Aaron Patterson*
|
302
408
|
|
303
|
-
* A database URL can now contain a querystring value that contains an equal sign. This is needed to support passing PostgresSQL `options`.
|
304
409
|
|
305
|
-
|
410
|
+
## Rails 6.1.2 (February 09, 2021) ##
|
306
411
|
|
307
|
-
*
|
412
|
+
* Fix timestamp type for sqlite3.
|
308
413
|
|
309
|
-
|
414
|
+
*Eileen M. Uchitelle*
|
310
415
|
|
311
|
-
|
416
|
+
* Make destroy async transactional.
|
312
417
|
|
418
|
+
An active record rollback could occur while enqueuing a job. In this
|
419
|
+
case the job would enqueue even though the database deletion
|
420
|
+
rolledback putting things in a funky state.
|
313
421
|
|
314
|
-
|
422
|
+
Now the jobs are only enqueued until after the db transaction has been committed.
|
315
423
|
|
316
|
-
*
|
424
|
+
*Cory Gwin*
|
317
425
|
|
426
|
+
* Fix malformed packet error in MySQL statement for connection configuration.
|
318
427
|
|
319
|
-
|
428
|
+
*robinroestenburg*
|
320
429
|
|
321
|
-
*
|
430
|
+
* Connection specification now passes the "url" key as a configuration for the
|
431
|
+
adapter if the "url" protocol is "jdbc", "http", or "https". Previously only
|
432
|
+
urls with the "jdbc" prefix were passed to the Active Record Adapter, others
|
433
|
+
are assumed to be adapter specification urls.
|
322
434
|
|
435
|
+
Fixes #41137.
|
323
436
|
|
324
|
-
|
437
|
+
*Jonathan Bracy*
|
325
438
|
|
326
|
-
*
|
327
|
-
transactional tests for the same database.
|
439
|
+
* Fix granular connection swapping when there are multiple abstract classes.
|
328
440
|
|
329
|
-
*
|
441
|
+
*Eileen M. Uchitelle*
|
330
442
|
|
331
|
-
* Fix
|
332
|
-
but not the entire collection.
|
443
|
+
* Fix `find_by` with custom primary key for belongs_to association.
|
333
444
|
|
334
|
-
*
|
445
|
+
*Ryuta Kamizono*
|
335
446
|
|
336
|
-
*
|
447
|
+
* Add support for `rails console --sandbox` for multiple database applications.
|
337
448
|
|
338
|
-
*
|
449
|
+
*alpaca-tc*
|
339
450
|
|
340
|
-
*
|
451
|
+
* Fix `where` on polymorphic association with empty array.
|
341
452
|
|
342
|
-
|
343
|
-
doing a relation query like `where.not(relation: { ... })`
|
344
|
-
wouldn't be properly deprecated and `where.not` would work as
|
345
|
-
NAND instead.
|
453
|
+
*Ryuta Kamizono*
|
346
454
|
|
347
|
-
|
455
|
+
* Fix preventing writes for `ApplicationRecord`.
|
348
456
|
|
349
|
-
*
|
350
|
-
to the previous database.
|
457
|
+
*Eileen M. Uchitelle*
|
351
458
|
|
352
|
-
The migrate task iterates and establish a connection over each db
|
353
|
-
resulting in the last one to be used by subsequent rake tasks.
|
354
|
-
We should reestablish a connection to the connection that was
|
355
|
-
established before the migrate tasks was run
|
356
459
|
|
357
|
-
|
460
|
+
## Rails 6.1.1 (January 07, 2021) ##
|
461
|
+
|
462
|
+
* Fix fixtures loading when strict loading is enabled for the association.
|
463
|
+
|
464
|
+
*Alex Ghiculescu*
|
358
465
|
|
359
|
-
* Fix
|
466
|
+
* Fix `where` with custom primary key for belongs_to association.
|
360
467
|
|
361
468
|
*Ryuta Kamizono*
|
362
469
|
|
470
|
+
* Fix `where` with aliased associations.
|
363
471
|
|
364
|
-
|
472
|
+
*Ryuta Kamizono*
|
365
473
|
|
366
|
-
*
|
474
|
+
* Fix `composed_of` with symbol mapping.
|
367
475
|
|
368
|
-
|
476
|
+
*Ryuta Kamizono*
|
369
477
|
|
370
|
-
*
|
478
|
+
* Don't skip money's type cast for pluck and calculations.
|
371
479
|
|
372
|
-
|
480
|
+
*Ryuta Kamizono*
|
373
481
|
|
374
|
-
*
|
482
|
+
* Fix `where` on polymorphic association with non Active Record object.
|
375
483
|
|
376
|
-
|
484
|
+
*Ryuta Kamizono*
|
377
485
|
|
378
|
-
*
|
379
|
-
context is used.
|
486
|
+
* Make sure `db:prepare` works even the schema file doesn't exist.
|
380
487
|
|
381
|
-
|
488
|
+
*Rafael Mendonça França*
|
382
489
|
|
383
|
-
*
|
384
|
-
their payloads.
|
490
|
+
* Fix complicated `has_many :through` with nested where condition.
|
385
491
|
|
386
|
-
|
492
|
+
*Ryuta Kamizono*
|
387
493
|
|
388
|
-
*
|
389
|
-
previously-committed record state.
|
494
|
+
* Handle STI models for `has_many dependent: :destroy_async`.
|
390
495
|
|
391
|
-
|
496
|
+
*Muhammad Usman*
|
392
497
|
|
393
|
-
*
|
498
|
+
* Restore possibility of passing `false` to :polymorphic option of `belongs_to`.
|
394
499
|
|
395
|
-
|
500
|
+
Previously, passing `false` would trigger the option validation logic
|
501
|
+
to throw an error saying :polymorphic would not be a valid option.
|
396
502
|
|
397
|
-
*
|
503
|
+
*glaszig*
|
398
504
|
|
399
|
-
|
505
|
+
* Allow adding nonnamed expression indexes to be revertible.
|
400
506
|
|
401
|
-
|
507
|
+
Fixes #40732.
|
402
508
|
|
403
|
-
|
509
|
+
Previously, the following code would raise an error, when executed while rolling back,
|
510
|
+
and the index name should be specified explicitly. Now, the index name is inferred
|
511
|
+
automatically.
|
404
512
|
|
405
|
-
|
406
|
-
|
513
|
+
```ruby
|
514
|
+
add_index(:items, "to_tsvector('english', description)")
|
515
|
+
```
|
407
516
|
|
408
|
-
*
|
517
|
+
*fatkodima*
|
409
518
|
|
410
|
-
* The memoized result of `ActiveRecord::Relation#take` is properly cleared
|
411
|
-
when `ActiveRecord::Relation#reset` or `ActiveRecord::Relation#reload`
|
412
|
-
is called.
|
413
519
|
|
414
|
-
|
520
|
+
## Rails 6.1.0 (December 09, 2020) ##
|
415
521
|
|
416
|
-
*
|
522
|
+
* Only warn about negative enums if a positive form that would cause conflicts exists.
|
417
523
|
|
418
|
-
|
524
|
+
Fixes #39065.
|
419
525
|
|
420
|
-
*
|
526
|
+
*Alex Ghiculescu*
|
421
527
|
|
422
|
-
|
528
|
+
* Change `attribute_for_inspect` to take `filter_attributes` in consideration.
|
423
529
|
|
424
|
-
*
|
530
|
+
*Rafael Mendonça França*
|
425
531
|
|
426
|
-
|
532
|
+
* Fix odd behavior of inverse_of with multiple belongs_to to same class.
|
427
533
|
|
428
|
-
|
534
|
+
Fixes #35204.
|
429
535
|
|
430
|
-
*
|
536
|
+
*Tomoyuki Kai*
|
431
537
|
|
432
|
-
*
|
538
|
+
* Build predicate conditions with objects that delegate `#id` and primary key:
|
433
539
|
|
434
|
-
|
540
|
+
```ruby
|
541
|
+
class AdminAuthor
|
542
|
+
delegate_missing_to :@author
|
435
543
|
|
544
|
+
def initialize(author)
|
545
|
+
@author = author
|
546
|
+
end
|
547
|
+
end
|
436
548
|
|
437
|
-
|
549
|
+
Post.where(author: AdminAuthor.new(author))
|
550
|
+
```
|
438
551
|
|
439
|
-
*
|
552
|
+
*Sean Doyle*
|
440
553
|
|
441
|
-
|
554
|
+
* Add `connected_to_many` API.
|
442
555
|
|
443
|
-
|
556
|
+
This API allows applications to connect to multiple databases at once without switching all of them or implementing a deeply nested stack.
|
444
557
|
|
445
|
-
|
558
|
+
Before:
|
446
559
|
|
447
|
-
|
560
|
+
AnimalsRecord.connected_to(role: :reading) do
|
561
|
+
MealsRecord.connected_to(role: :reading) do
|
562
|
+
Dog.first # read from animals replica
|
563
|
+
Dinner.first # read from meals replica
|
564
|
+
Person.first # read from primary writer
|
565
|
+
end
|
566
|
+
end
|
448
567
|
|
449
|
-
|
568
|
+
After:
|
450
569
|
|
451
|
-
|
452
|
-
|
570
|
+
ActiveRecord::Base.connected_to_many([AnimalsRecord, MealsRecord], role: :reading) do
|
571
|
+
Dog.first # read from animals replica
|
572
|
+
Dinner.first # read from meals replica
|
573
|
+
Person.first # read from primary writer
|
453
574
|
end
|
454
575
|
|
455
|
-
*
|
576
|
+
*Eileen M. Uchitelle*, *John Crepezzi*
|
456
577
|
|
457
|
-
*
|
578
|
+
* Add option to raise or log for `ActiveRecord::StrictLoadingViolationError`.
|
458
579
|
|
459
|
-
|
580
|
+
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.
|
460
581
|
|
582
|
+
Set `config.active_record.action_on_strict_loading_violation` to `:log` errors instead of raising.
|
461
583
|
|
462
|
-
|
584
|
+
*Eileen M. Uchitelle*
|
463
585
|
|
464
|
-
*
|
586
|
+
* Allow the inverse of a `has_one` association that was previously autosaved to be loaded.
|
465
587
|
|
466
|
-
|
588
|
+
Fixes #34255.
|
467
589
|
|
468
|
-
*
|
590
|
+
*Steven Weber*
|
469
591
|
|
470
|
-
|
592
|
+
* Optimise the length of index names for polymorphic references by using the reference name rather than the type and id column names.
|
471
593
|
|
472
|
-
|
594
|
+
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.
|
473
595
|
|
474
|
-
|
596
|
+
This change reduces the chance of that happening by using the reference name, e.g. `index_my_table_on_my_reference`.
|
475
597
|
|
476
|
-
Fixes #
|
598
|
+
Fixes #38655.
|
477
599
|
|
478
|
-
*
|
600
|
+
*Luke Redpath*
|
479
601
|
|
480
|
-
*
|
602
|
+
* MySQL: Uniqueness validator now respects default database collation,
|
603
|
+
no longer enforce case sensitive comparison by default.
|
481
604
|
|
482
|
-
*
|
605
|
+
*Ryuta Kamizono*
|
483
606
|
|
484
|
-
*
|
607
|
+
* Remove deprecated methods from `ActiveRecord::ConnectionAdapters::DatabaseLimits`.
|
485
608
|
|
486
|
-
|
609
|
+
`column_name_length`
|
610
|
+
`table_name_length`
|
611
|
+
`columns_per_table`
|
612
|
+
`indexes_per_table`
|
613
|
+
`columns_per_multicolumn_index`
|
614
|
+
`sql_query_length`
|
615
|
+
`joins_per_query`
|
487
616
|
|
488
|
-
*
|
617
|
+
*Rafael Mendonça França*
|
489
618
|
|
490
|
-
*
|
619
|
+
* Remove deprecated `ActiveRecord::ConnectionAdapters::AbstractAdapter#supports_multi_insert?`.
|
491
620
|
|
492
|
-
*
|
621
|
+
*Rafael Mendonça França*
|
493
622
|
|
494
|
-
*
|
623
|
+
* Remove deprecated `ActiveRecord::ConnectionAdapters::AbstractAdapter#supports_foreign_keys_in_create?`.
|
495
624
|
|
496
|
-
|
625
|
+
*Rafael Mendonça França*
|
497
626
|
|
498
|
-
|
627
|
+
* Remove deprecated `ActiveRecord::ConnectionAdapters::PostgreSQLAdapter#supports_ranges?`.
|
499
628
|
|
629
|
+
*Rafael Mendonça França*
|
500
630
|
|
501
|
-
|
631
|
+
* Remove deprecated `ActiveRecord::Base#update_attributes` and `ActiveRecord::Base#update_attributes!`.
|
502
632
|
|
503
|
-
*
|
633
|
+
*Rafael Mendonça França*
|
504
634
|
|
505
|
-
|
635
|
+
* Remove deprecated `migrations_path` argument in `ActiveRecord::ConnectionAdapter::SchemaStatements#assume_migrated_upto_version`.
|
506
636
|
|
507
|
-
*
|
637
|
+
*Rafael Mendonça França*
|
508
638
|
|
509
|
-
|
510
|
-
all = [treasures(:diamond), treasures(:sapphire), cars(:honda), treasures(:sapphire)]
|
511
|
-
assert_equal all, PriceEstimate.all.map(&:estimate_of)
|
512
|
-
```
|
639
|
+
* Remove deprecated `config.active_record.sqlite3.represent_boolean_as_integer`.
|
513
640
|
|
514
|
-
|
641
|
+
*Rafael Mendonça França*
|
515
642
|
|
516
|
-
|
517
|
-
|
518
|
-
|
519
|
-
nor = all.reject { |e|
|
520
|
-
e.estimate_of_type == sapphire.class.polymorphic_name
|
521
|
-
}.reject { |e|
|
522
|
-
e.estimate_of_id == sapphire.id
|
523
|
-
}
|
524
|
-
assert_equal [cars(:honda)], nor
|
525
|
-
|
526
|
-
without_sapphire = PriceEstimate.where.not(
|
527
|
-
estimate_of_type: sapphire.class.polymorphic_name, estimate_of_id: sapphire.id
|
528
|
-
)
|
529
|
-
assert_equal nor, without_sapphire.map(&:estimate_of)
|
530
|
-
```
|
643
|
+
* `relation.create` does no longer leak scope to class level querying methods
|
644
|
+
in initialization block and callbacks.
|
531
645
|
|
532
|
-
|
646
|
+
Before:
|
533
647
|
|
534
|
-
|
535
|
-
|
648
|
+
User.where(name: "John").create do |john|
|
649
|
+
User.find_by(name: "David") # => nil
|
650
|
+
end
|
536
651
|
|
537
|
-
|
538
|
-
assert_equal [treasures(:diamond), cars(:honda)], nand
|
652
|
+
After:
|
539
653
|
|
540
|
-
|
541
|
-
|
542
|
-
|
543
|
-
assert_equal nand, without_sapphire.map(&:estimate_of)
|
544
|
-
```
|
654
|
+
User.where(name: "John").create do |john|
|
655
|
+
User.find_by(name: "David") # => #<User name: "David", ...>
|
656
|
+
end
|
545
657
|
|
546
658
|
*Ryuta Kamizono*
|
547
659
|
|
548
|
-
*
|
660
|
+
* Named scope chain does no longer leak scope to class level querying methods.
|
549
661
|
|
550
|
-
|
662
|
+
class User < ActiveRecord::Base
|
663
|
+
scope :david, -> { User.where(name: "David") }
|
664
|
+
end
|
551
665
|
|
552
|
-
|
666
|
+
Before:
|
553
667
|
|
554
|
-
|
555
|
-
|
556
|
-
`ActiveRecord::Relation#cache_key` will now return a stable key that does not
|
557
|
-
include the max timestamp or count any more.
|
668
|
+
User.where(name: "John").david
|
669
|
+
# SELECT * FROM users WHERE name = 'John' AND name = 'David'
|
558
670
|
|
559
|
-
|
560
|
-
cache keys with timestamps until you set `ActiveRecord::Base.collection_cache_versioning = true`.
|
561
|
-
That's the setting for all new apps on Rails 6.0+
|
671
|
+
After:
|
562
672
|
|
563
|
-
|
673
|
+
User.where(name: "John").david
|
674
|
+
# SELECT * FROM users WHERE name = 'David'
|
564
675
|
|
565
|
-
*
|
676
|
+
*Ryuta Kamizono*
|
566
677
|
|
567
|
-
|
678
|
+
* Remove deprecated methods from `ActiveRecord::DatabaseConfigurations`.
|
568
679
|
|
569
|
-
|
680
|
+
`fetch`
|
681
|
+
`each`
|
682
|
+
`first`
|
683
|
+
`values`
|
684
|
+
`[]=`
|
570
685
|
|
571
|
-
*
|
572
|
-
`to` and `from` options are specified.
|
686
|
+
*Rafael Mendonça França*
|
573
687
|
|
574
|
-
|
688
|
+
* `where.not` now generates NAND predicates instead of NOR.
|
575
689
|
|
576
|
-
|
690
|
+
Before:
|
577
691
|
|
578
|
-
|
692
|
+
User.where.not(name: "Jon", role: "admin")
|
693
|
+
# SELECT * FROM users WHERE name != 'Jon' AND role != 'admin'
|
579
694
|
|
580
|
-
|
695
|
+
After:
|
581
696
|
|
582
|
-
|
697
|
+
User.where.not(name: "Jon", role: "admin")
|
698
|
+
# SELECT * FROM users WHERE NOT (name == 'Jon' AND role == 'admin')
|
583
699
|
|
584
|
-
|
585
|
-
associations, the callback for a `has_many` association was run while
|
586
|
-
another instance of the same callback on the same association hadn't
|
587
|
-
finished running. When control returned to the first instance of the
|
588
|
-
callback, the instance variable had changed, and subsequent associated
|
589
|
-
records weren't saved correctly. Specifically, the ID field for the
|
590
|
-
`belongs_to` corresponding to the `has_many` was `nil`.
|
700
|
+
*Rafael Mendonça França*
|
591
701
|
|
592
|
-
|
702
|
+
* Remove deprecated `ActiveRecord::Result#to_hash` method.
|
593
703
|
|
594
|
-
*
|
704
|
+
*Rafael Mendonça França*
|
595
705
|
|
596
|
-
*
|
706
|
+
* Deprecate `ActiveRecord::Base.allow_unsafe_raw_sql`.
|
597
707
|
|
598
|
-
|
708
|
+
*Rafael Mendonça França*
|
599
709
|
|
600
|
-
|
601
|
-
add_column :items, :attr1, :binary, size: 10 # => ArgumentError
|
602
|
-
add_column :items, :attr2, :decimal, scale: 10 # => ArgumentError
|
603
|
-
add_column :items, :attr3, :integer, limit: 10 # => ActiveRecordError
|
604
|
-
add_column :items, :attr4, :datetime, precision: 10 # => ActiveRecordError
|
605
|
-
```
|
710
|
+
* Remove deprecated support for using unsafe raw SQL in `ActiveRecord::Relation` methods.
|
606
711
|
|
607
|
-
|
712
|
+
*Rafael Mendonça França*
|
713
|
+
|
714
|
+
* Allow users to silence the "Rails couldn't infer whether you are using multiple databases..."
|
715
|
+
message using `config.active_record.suppress_multiple_database_warning`.
|
716
|
+
|
717
|
+
*Omri Gabay*
|
718
|
+
|
719
|
+
* Connections can be granularly switched for abstract classes when `connected_to` is called.
|
720
|
+
|
721
|
+
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.
|
722
|
+
|
723
|
+
Example usage:
|
724
|
+
|
725
|
+
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`.
|
608
726
|
|
609
727
|
```ruby
|
610
|
-
|
611
|
-
|
612
|
-
|
613
|
-
|
728
|
+
ActiveRecord::Base.connected_to(role: :reading) do
|
729
|
+
User.first # reads from default replica
|
730
|
+
Dog.first # reads from default replica
|
731
|
+
|
732
|
+
AnimalsRecord.connected_to(role: :writing, shard: :one) do
|
733
|
+
User.first # reads from default replica
|
734
|
+
Dog.first # reads from shard one primary
|
735
|
+
end
|
736
|
+
|
737
|
+
User.first # reads from default replica
|
738
|
+
Dog.first # reads from default replica
|
739
|
+
|
740
|
+
ApplicationRecord.connected_to(role: :writing, shard: :two) do
|
741
|
+
User.first # reads from shard two primary
|
742
|
+
Dog.first # reads from default replica
|
743
|
+
end
|
744
|
+
end
|
614
745
|
```
|
615
746
|
|
616
|
-
*
|
747
|
+
*Eileen M. Uchitelle*, *John Crepezzi*
|
617
748
|
|
618
|
-
*
|
619
|
-
whether preloaded / eager loaded or not, with the exception of `unscoped`.
|
749
|
+
* Allow double-dash comment syntax when querying read-only databases
|
620
750
|
|
621
|
-
|
751
|
+
*James Adam*
|
752
|
+
|
753
|
+
* Add `values_at` method.
|
754
|
+
|
755
|
+
Returns an array containing the values associated with the given methods.
|
622
756
|
|
623
757
|
```ruby
|
624
|
-
|
625
|
-
|
626
|
-
|
627
|
-
|
758
|
+
topic = Topic.first
|
759
|
+
topic.values_at(:title, :author_name)
|
760
|
+
# => ["Budget", "Jason"]
|
761
|
+
```
|
762
|
+
|
763
|
+
Similar to `Hash#values_at` but on an Active Record instance.
|
764
|
+
|
765
|
+
*Guillaume Briday*
|
766
|
+
|
767
|
+
* Fix `read_attribute_before_type_cast` to consider attribute aliases.
|
768
|
+
|
769
|
+
*Marcelo Lauxen*
|
770
|
+
|
771
|
+
* Support passing record to uniqueness validator `:conditions` callable:
|
772
|
+
|
773
|
+
```ruby
|
774
|
+
class Article < ApplicationRecord
|
775
|
+
validates_uniqueness_of :title, conditions: ->(article) {
|
776
|
+
published_at = article.published_at
|
777
|
+
where(published_at: published_at.beginning_of_year..published_at.end_of_year)
|
778
|
+
}
|
628
779
|
end
|
629
780
|
```
|
630
781
|
|
631
|
-
|
782
|
+
*Eliot Sykes*
|
783
|
+
|
784
|
+
* `BatchEnumerator#update_all` and `BatchEnumerator#delete_all` now return the
|
785
|
+
total number of rows affected, just like their non-batched counterparts.
|
632
786
|
|
633
787
|
```ruby
|
634
|
-
|
635
|
-
|
636
|
-
|
637
|
-
|
788
|
+
Person.in_batches.update_all("first_name = 'Eugene'") # => 42
|
789
|
+
Person.in_batches.delete_all # => 42
|
790
|
+
```
|
791
|
+
|
792
|
+
Fixes #40287.
|
793
|
+
|
794
|
+
*Eugene Kenny*
|
795
|
+
|
796
|
+
* Add support for PostgreSQL `interval` data type with conversion to
|
797
|
+
`ActiveSupport::Duration` when loading records from database and
|
798
|
+
serialization to ISO 8601 formatted duration string on save.
|
799
|
+
Add support to define a column in migrations and get it in a schema dump.
|
800
|
+
Optional column precision is supported.
|
801
|
+
|
802
|
+
To use this in 6.1, you need to place the next string to your model file:
|
803
|
+
|
804
|
+
attribute :duration, :interval
|
805
|
+
|
806
|
+
To keep old behavior until 7.0 is released:
|
807
|
+
|
808
|
+
attribute :duration, :string
|
809
|
+
|
810
|
+
Example:
|
811
|
+
|
812
|
+
create_table :events do |t|
|
813
|
+
t.string :name
|
814
|
+
t.interval :duration
|
815
|
+
end
|
816
|
+
|
817
|
+
class Event < ApplicationRecord
|
818
|
+
attribute :duration, :interval
|
819
|
+
end
|
820
|
+
|
821
|
+
Event.create!(name: 'Rock Fest', duration: 2.days)
|
822
|
+
Event.last.duration # => 2 days
|
823
|
+
Event.last.duration.iso8601 # => "P2D"
|
824
|
+
Event.new(duration: 'P1DT12H3S').duration # => 1 day, 12 hours, and 3 seconds
|
825
|
+
Event.new(duration: '1 day') # Unknown value will be ignored and NULL will be written to database
|
826
|
+
|
827
|
+
*Andrey Novikov*
|
828
|
+
|
829
|
+
* Allow associations supporting the `dependent:` key to take `dependent: :destroy_async`.
|
830
|
+
|
831
|
+
```ruby
|
832
|
+
class Account < ActiveRecord::Base
|
833
|
+
belongs_to :supplier, dependent: :destroy_async
|
638
834
|
end
|
639
835
|
```
|
640
836
|
|
641
|
-
|
837
|
+
`:destroy_async` will enqueue a job to destroy associated records in the background.
|
642
838
|
|
643
|
-
*
|
839
|
+
*DHH*, *George Claghorn*, *Cory Gwin*, *Rafael Mendonça França*, *Adrianna Chang*
|
644
840
|
|
645
|
-
* Add `rails db:
|
841
|
+
* Add `SKIP_TEST_DATABASE` environment variable to disable modifying the test database when `rails db:create` and `rails db:drop` are called.
|
646
842
|
|
647
|
-
|
843
|
+
*Jason Schweier*
|
648
844
|
|
649
|
-
|
845
|
+
* `connects_to` can only be called on `ActiveRecord::Base` or abstract classes.
|
650
846
|
|
651
|
-
|
847
|
+
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.
|
652
848
|
|
653
|
-
*
|
849
|
+
*Eileen M. Uchitelle*, *John Crepezzi*
|
850
|
+
|
851
|
+
* All connection adapters `execute` now raises `ActiveRecord::ConnectionNotEstablished` rather than
|
852
|
+
`ActiveRecord::StatementInvalid` when they encounter a connection error.
|
853
|
+
|
854
|
+
*Jean Boussier*
|
855
|
+
|
856
|
+
* `Mysql2Adapter#quote_string` now raises `ActiveRecord::ConnectionNotEstablished` rather than
|
857
|
+
`ActiveRecord::StatementInvalid` when it can't connect to the MySQL server.
|
654
858
|
|
655
|
-
*
|
656
|
-
`before_add` and `after_add` callbacks for `has_many :through` associations.
|
859
|
+
*Jean Boussier*
|
657
860
|
|
658
|
-
|
861
|
+
* Add support for check constraints that are `NOT VALID` via `validate: false` (PostgreSQL-only).
|
659
862
|
|
660
|
-
*
|
863
|
+
*Alex Robbin*
|
661
864
|
|
662
|
-
*
|
865
|
+
* Ensure the default configuration is considered primary or first for an environment
|
866
|
+
|
867
|
+
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.
|
868
|
+
|
869
|
+
*Eileen M. Uchitelle*
|
663
870
|
|
871
|
+
* Allow `where` references association names as joined table name aliases.
|
872
|
+
|
873
|
+
```ruby
|
874
|
+
class Comment < ActiveRecord::Base
|
875
|
+
enum label: [:default, :child]
|
876
|
+
has_many :children, class_name: "Comment", foreign_key: :parent_id
|
877
|
+
end
|
878
|
+
|
879
|
+
# ... FROM comments LEFT OUTER JOIN comments children ON ... WHERE children.label = 1
|
880
|
+
Comment.includes(:children).where("children.label": "child")
|
664
881
|
```
|
665
|
-
|
666
|
-
|
882
|
+
|
883
|
+
*Ryuta Kamizono*
|
884
|
+
|
885
|
+
* Support storing demodulized class name for polymorphic type.
|
886
|
+
|
887
|
+
Before Rails 6.1, storing demodulized class name is supported only for STI type
|
888
|
+
by `store_full_sti_class` class attribute.
|
889
|
+
|
890
|
+
Now `store_full_class_name` class attribute can handle both STI and polymorphic types.
|
891
|
+
|
892
|
+
*Ryuta Kamizono*
|
893
|
+
|
894
|
+
* Deprecate `rails db:structure:{load, dump}` tasks and extend
|
895
|
+
`rails db:schema:{load, dump}` tasks to work with either `:ruby` or `:sql` format,
|
896
|
+
depending on `config.active_record.schema_format` configuration value.
|
897
|
+
|
898
|
+
*fatkodima*
|
899
|
+
|
900
|
+
* Respect the `select` values for eager loading.
|
901
|
+
|
902
|
+
```ruby
|
903
|
+
post = Post.select("UPPER(title) AS title").first
|
904
|
+
post.title # => "WELCOME TO THE WEBLOG"
|
905
|
+
post.body # => ActiveModel::MissingAttributeError
|
906
|
+
|
907
|
+
# Rails 6.0 (ignore the `select` values)
|
908
|
+
post = Post.select("UPPER(title) AS title").eager_load(:comments).first
|
909
|
+
post.title # => "Welcome to the weblog"
|
910
|
+
post.body # => "Such a lovely day"
|
911
|
+
|
912
|
+
# Rails 6.1 (respect the `select` values)
|
913
|
+
post = Post.select("UPPER(title) AS title").eager_load(:comments).first
|
914
|
+
post.title # => "WELCOME TO THE WEBLOG"
|
915
|
+
post.body # => ActiveModel::MissingAttributeError
|
667
916
|
```
|
668
917
|
|
669
|
-
*
|
918
|
+
*Ryuta Kamizono*
|
670
919
|
|
671
|
-
*
|
920
|
+
* Allow attribute's default to be configured but keeping its own type.
|
672
921
|
|
673
|
-
|
922
|
+
```ruby
|
923
|
+
class Post < ActiveRecord::Base
|
924
|
+
attribute :written_at, default: -> { Time.now.utc }
|
925
|
+
end
|
926
|
+
|
927
|
+
# Rails 6.0
|
928
|
+
Post.type_for_attribute(:written_at) # => #<Type::Value ... precision: nil, ...>
|
674
929
|
|
930
|
+
# Rails 6.1
|
931
|
+
Post.type_for_attribute(:written_at) # => #<Type::DateTime ... precision: 6, ...>
|
675
932
|
```
|
676
|
-
|
677
|
-
|
933
|
+
|
934
|
+
*Ryuta Kamizono*
|
935
|
+
|
936
|
+
* Allow default to be configured for Enum.
|
937
|
+
|
938
|
+
```ruby
|
939
|
+
class Book < ActiveRecord::Base
|
940
|
+
enum status: [:proposed, :written, :published], _default: :published
|
941
|
+
end
|
942
|
+
|
943
|
+
Book.new.status # => "published"
|
678
944
|
```
|
679
945
|
|
680
|
-
|
946
|
+
*Ryuta Kamizono*
|
681
947
|
|
682
|
-
|
948
|
+
* Deprecate YAML loading from legacy format older than Rails 5.0.
|
683
949
|
|
684
|
-
*
|
950
|
+
*Ryuta Kamizono*
|
685
951
|
|
686
|
-
|
687
|
-
|
952
|
+
* Added the setting `ActiveRecord::Base.immutable_strings_by_default`, which
|
953
|
+
allows you to specify that all string columns should be frozen unless
|
954
|
+
otherwise specified. This will reduce memory pressure for applications which
|
955
|
+
do not generally mutate string properties of Active Record objects.
|
688
956
|
|
689
|
-
|
957
|
+
*Sean Griffin*, *Ryuta Kamizono*
|
690
958
|
|
691
|
-
|
692
|
-
# SELECT /*+ MAX_EXECUTION_TIME(50000) NO_INDEX_MERGE(topics) */ `topics`.* FROM `topics`
|
959
|
+
* Deprecate `map!` and `collect!` on `ActiveRecord::Result`.
|
693
960
|
|
694
|
-
|
961
|
+
*Ryuta Kamizono*
|
962
|
+
|
963
|
+
* Support `relation.and` for intersection as Set theory.
|
695
964
|
|
696
|
-
|
697
|
-
|
965
|
+
```ruby
|
966
|
+
david_and_mary = Author.where(id: [david, mary])
|
967
|
+
mary_and_bob = Author.where(id: [mary, bob])
|
698
968
|
|
699
|
-
|
969
|
+
david_and_mary.merge(mary_and_bob) # => [mary, bob]
|
700
970
|
|
701
|
-
|
702
|
-
|
703
|
-
|
704
|
-
* https://docs.microsoft.com/en-us/sql/t-sql/queries/hints-transact-sql-query?view=sql-server-2017
|
705
|
-
* https://www.ibm.com/support/knowledgecenter/en/SSEPGG_11.1.0/com.ibm.db2.luw.admin.perf.doc/doc/c0070117.html
|
971
|
+
david_and_mary.and(mary_and_bob) # => [mary]
|
972
|
+
david_and_mary.or(mary_and_bob) # => [david, mary, bob]
|
973
|
+
```
|
706
974
|
|
707
975
|
*Ryuta Kamizono*
|
708
976
|
|
709
|
-
*
|
977
|
+
* Merging conditions on the same column no longer maintain both conditions,
|
978
|
+
and will be consistently replaced by the latter condition in Rails 7.0.
|
979
|
+
To migrate to Rails 7.0's behavior, use `relation.merge(other, rewhere: true)`.
|
980
|
+
|
981
|
+
```ruby
|
982
|
+
# Rails 6.1 (IN clause is replaced by merger side equality condition)
|
983
|
+
Author.where(id: [david.id, mary.id]).merge(Author.where(id: bob)) # => [bob]
|
984
|
+
|
985
|
+
# Rails 6.1 (both conflict conditions exists, deprecated)
|
986
|
+
Author.where(id: david.id..mary.id).merge(Author.where(id: bob)) # => []
|
710
987
|
|
711
|
-
|
988
|
+
# Rails 6.1 with rewhere to migrate to Rails 7.0's behavior
|
989
|
+
Author.where(id: david.id..mary.id).merge(Author.where(id: bob), rewhere: true) # => [bob]
|
712
990
|
|
991
|
+
# Rails 7.0 (same behavior with IN clause, mergee side condition is consistently replaced)
|
992
|
+
Author.where(id: [david.id, mary.id]).merge(Author.where(id: bob)) # => [bob]
|
993
|
+
Author.where(id: david.id..mary.id).merge(Author.where(id: bob)) # => [bob]
|
713
994
|
```
|
714
|
-
|
715
|
-
|
995
|
+
|
996
|
+
*Ryuta Kamizono*
|
997
|
+
|
998
|
+
* Do not mark Postgresql MAC address and UUID attributes as changed when the assigned value only varies by case.
|
999
|
+
|
1000
|
+
*Peter Fry*
|
1001
|
+
|
1002
|
+
* Resolve issue with insert_all unique_by option when used with expression index.
|
1003
|
+
|
1004
|
+
When the `:unique_by` option of `ActiveRecord::Persistence.insert_all` and
|
1005
|
+
`ActiveRecord::Persistence.upsert_all` was used with the name of an expression index, an error
|
1006
|
+
was raised. Adding a guard around the formatting behavior for the `:unique_by` corrects this.
|
1007
|
+
|
1008
|
+
Usage:
|
1009
|
+
|
1010
|
+
```ruby
|
1011
|
+
create_table :books, id: :integer, force: true do |t|
|
1012
|
+
t.column :name, :string
|
1013
|
+
t.index "lower(name)", unique: true
|
716
1014
|
end
|
717
1015
|
|
718
|
-
|
1016
|
+
Book.insert_all [{ name: "MyTest" }], unique_by: :index_books_on_lower_name
|
719
1017
|
```
|
720
1018
|
|
721
|
-
|
1019
|
+
Fixes #39516.
|
722
1020
|
|
723
|
-
*
|
1021
|
+
*Austen Madden*
|
724
1022
|
|
725
|
-
|
1023
|
+
* Add basic support for CHECK constraints to database migrations.
|
726
1024
|
|
727
|
-
|
728
|
-
allowing bulk inserts akin to the bulk updates provided by `update_all` and
|
729
|
-
bulk deletes by `delete_all`.
|
1025
|
+
Usage:
|
730
1026
|
|
731
|
-
|
732
|
-
|
733
|
-
|
1027
|
+
```ruby
|
1028
|
+
add_check_constraint :products, "price > 0", name: "price_check"
|
1029
|
+
remove_check_constraint :products, name: "price_check"
|
1030
|
+
```
|
734
1031
|
|
735
|
-
*
|
1032
|
+
*fatkodima*
|
736
1033
|
|
737
|
-
* Add `
|
738
|
-
for
|
1034
|
+
* Add `ActiveRecord::Base.strict_loading_by_default` and `ActiveRecord::Base.strict_loading_by_default=`
|
1035
|
+
to enable/disable strict_loading mode by default for a model. The configuration's value is
|
1036
|
+
inheritable by subclasses, but they can override that value and it will not impact parent class.
|
739
1037
|
|
740
|
-
|
1038
|
+
Usage:
|
741
1039
|
|
742
|
-
|
1040
|
+
```ruby
|
1041
|
+
class Developer < ApplicationRecord
|
1042
|
+
self.strict_loading_by_default = true
|
743
1043
|
|
744
|
-
|
1044
|
+
has_many :projects
|
1045
|
+
end
|
745
1046
|
|
746
|
-
|
1047
|
+
dev = Developer.first
|
1048
|
+
dev.projects.first
|
1049
|
+
# => ActiveRecord::StrictLoadingViolationError Exception: Developer is marked as strict_loading and Project cannot be lazily loaded.
|
1050
|
+
```
|
747
1051
|
|
748
|
-
|
749
|
-
|
750
|
-
|
1052
|
+
*bogdanvlviv*
|
1053
|
+
|
1054
|
+
* Deprecate passing an Active Record object to `quote`/`type_cast` directly.
|
751
1055
|
|
752
1056
|
*Ryuta Kamizono*
|
753
1057
|
|
754
|
-
*
|
1058
|
+
* Default engine `ENGINE=InnoDB` is no longer dumped to make schema more agnostic.
|
755
1059
|
|
756
|
-
|
1060
|
+
Before:
|
757
1061
|
|
758
|
-
|
1062
|
+
```ruby
|
1063
|
+
create_table "accounts", options: "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci", force: :cascade do |t|
|
1064
|
+
end
|
1065
|
+
```
|
759
1066
|
|
760
|
-
|
1067
|
+
After:
|
761
1068
|
|
762
|
-
|
1069
|
+
```ruby
|
1070
|
+
create_table "accounts", charset: "utf8mb4", collation: "utf8mb4_0900_ai_ci", force: :cascade do |t|
|
1071
|
+
end
|
1072
|
+
```
|
763
1073
|
|
764
|
-
|
765
|
-
enum status: %i[ drafted active trashed ]
|
766
|
-
end
|
1074
|
+
*Ryuta Kamizono*
|
767
1075
|
|
768
|
-
|
769
|
-
|
770
|
-
Post.not_trashed # => where.not(status: :trashed)
|
1076
|
+
* Added delegated type as an alternative to single-table inheritance for representing class hierarchies.
|
1077
|
+
See ActiveRecord::DelegatedType for the full description.
|
771
1078
|
|
772
1079
|
*DHH*
|
773
1080
|
|
774
|
-
*
|
1081
|
+
* Deprecate aggregations with group by duplicated fields.
|
775
1082
|
|
776
|
-
|
1083
|
+
To migrate to Rails 7.0's behavior, use `uniq!(:group)` to deduplicate group fields.
|
777
1084
|
|
778
|
-
|
1085
|
+
```ruby
|
1086
|
+
accounts = Account.group(:firm_id)
|
1087
|
+
|
1088
|
+
# duplicated group fields, deprecated.
|
1089
|
+
accounts.merge(accounts.where.not(credit_limit: nil)).sum(:credit_limit)
|
1090
|
+
# => {
|
1091
|
+
# [1, 1] => 50,
|
1092
|
+
# [2, 2] => 60
|
1093
|
+
# }
|
1094
|
+
|
1095
|
+
# use `uniq!(:group)` to deduplicate group fields.
|
1096
|
+
accounts.merge(accounts.where.not(credit_limit: nil)).uniq!(:group).sum(:credit_limit)
|
1097
|
+
# => {
|
1098
|
+
# 1 => 50,
|
1099
|
+
# 2 => 60
|
1100
|
+
# }
|
1101
|
+
```
|
779
1102
|
|
1103
|
+
*Ryuta Kamizono*
|
780
1104
|
|
781
|
-
|
1105
|
+
* Deprecate duplicated query annotations.
|
782
1106
|
|
783
|
-
|
1107
|
+
To migrate to Rails 7.0's behavior, use `uniq!(:annotate)` to deduplicate query annotations.
|
784
1108
|
|
1109
|
+
```ruby
|
1110
|
+
accounts = Account.where(id: [1, 2]).annotate("david and mary")
|
785
1111
|
|
786
|
-
|
1112
|
+
# duplicated annotations, deprecated.
|
1113
|
+
accounts.merge(accounts.rewhere(id: 3))
|
1114
|
+
# SELECT accounts.* FROM accounts WHERE accounts.id = 3 /* david and mary */ /* david and mary */
|
787
1115
|
|
788
|
-
|
1116
|
+
# use `uniq!(:annotate)` to deduplicate annotations.
|
1117
|
+
accounts.merge(accounts.rewhere(id: 3)).uniq!(:annotate)
|
1118
|
+
# SELECT accounts.* FROM accounts WHERE accounts.id = 3 /* david and mary */
|
1119
|
+
```
|
789
1120
|
|
790
1121
|
*Ryuta Kamizono*
|
791
1122
|
|
792
|
-
*
|
1123
|
+
* Resolve conflict between counter cache and optimistic locking.
|
793
1124
|
|
794
|
-
|
1125
|
+
Bump an Active Record instance's lock version after updating its counter
|
1126
|
+
cache. This avoids raising an unnecessary `ActiveRecord::StaleObjectError`
|
1127
|
+
upon subsequent transactions by maintaining parity with the corresponding
|
1128
|
+
database record's `lock_version` column.
|
795
1129
|
|
796
|
-
|
1130
|
+
Fixes #16449.
|
797
1131
|
|
798
|
-
*
|
1132
|
+
*Aaron Lipman*
|
799
1133
|
|
800
|
-
*
|
1134
|
+
* Support merging option `:rewhere` to allow mergee side condition to be replaced exactly.
|
801
1135
|
|
802
|
-
|
803
|
-
|
1136
|
+
```ruby
|
1137
|
+
david_and_mary = Author.where(id: david.id..mary.id)
|
804
1138
|
|
805
|
-
|
1139
|
+
# both conflict conditions exists
|
1140
|
+
david_and_mary.merge(Author.where(id: bob)) # => []
|
806
1141
|
|
807
|
-
|
808
|
-
|
1142
|
+
# mergee side condition is replaced by rewhere
|
1143
|
+
david_and_mary.merge(Author.rewhere(id: bob)) # => [bob]
|
809
1144
|
|
810
|
-
|
811
|
-
|
1145
|
+
# mergee side condition is replaced by rewhere option
|
1146
|
+
david_and_mary.merge(Author.where(id: bob), rewhere: true) # => [bob]
|
1147
|
+
```
|
812
1148
|
|
813
|
-
|
814
|
-
`delete_all` on the matched records.
|
1149
|
+
*Ryuta Kamizono*
|
815
1150
|
|
816
|
-
|
1151
|
+
* Add support for finding records based on signed ids, which are tamper-proof, verified ids that can be
|
1152
|
+
set to expire and scoped with a purpose. This is particularly useful for things like password reset
|
1153
|
+
or email verification, where you want the bearer of the signed id to be able to interact with the
|
1154
|
+
underlying record, but usually only within a certain time period.
|
817
1155
|
|
818
|
-
|
819
|
-
|
1156
|
+
```ruby
|
1157
|
+
signed_id = User.first.signed_id expires_in: 15.minutes, purpose: :password_reset
|
820
1158
|
|
821
|
-
|
822
|
-
david.posts.delete_by(id: [1, 2, 3])
|
1159
|
+
User.find_signed signed_id # => nil, since the purpose does not match
|
823
1160
|
|
824
|
-
|
1161
|
+
travel 16.minutes
|
1162
|
+
User.find_signed signed_id, purpose: :password_reset # => nil, since the signed id has expired
|
825
1163
|
|
826
|
-
|
1164
|
+
travel_back
|
1165
|
+
User.find_signed signed_id, purpose: :password_reset # => User.first
|
827
1166
|
|
828
|
-
|
1167
|
+
User.find_signed! "bad data" # => ActiveSupport::MessageVerifier::InvalidSignature
|
1168
|
+
```
|
829
1169
|
|
830
|
-
*
|
1170
|
+
*DHH*
|
831
1171
|
|
832
|
-
*
|
1172
|
+
* Support `ALGORITHM = INSTANT` DDL option for index operations on MySQL.
|
833
1173
|
|
834
1174
|
*Ryuta Kamizono*
|
835
1175
|
|
836
|
-
*
|
837
|
-
regarded as leaked. Use `klass.unscoped` to avoid the leaking scope.
|
1176
|
+
* Fix index creation to preserve index comment in bulk change table on MySQL.
|
838
1177
|
|
839
1178
|
*Ryuta Kamizono*
|
840
1179
|
|
841
|
-
* Allow
|
1180
|
+
* Allow `unscope` to be aware of table name qualified values.
|
1181
|
+
|
1182
|
+
It is possible to unscope only the column in the specified table.
|
842
1183
|
|
843
|
-
|
844
|
-
|
845
|
-
|
1184
|
+
```ruby
|
1185
|
+
posts = Post.joins(:comments).group(:"posts.hidden")
|
1186
|
+
posts = posts.where("posts.hidden": false, "comments.hidden": false)
|
846
1187
|
|
847
|
-
|
848
|
-
|
849
|
-
Non-get requests will always write to the primary. The middleware accepts
|
850
|
-
an argument for a Resolver class and an Operations class where you are able
|
851
|
-
to change how the auto-switcher works to be most beneficial for your
|
852
|
-
application.
|
1188
|
+
posts.count
|
1189
|
+
# => { false => 10 }
|
853
1190
|
|
854
|
-
|
855
|
-
|
1191
|
+
# unscope both hidden columns
|
1192
|
+
posts.unscope(where: :hidden).count
|
1193
|
+
# => { false => 11, true => 1 }
|
856
1194
|
|
1195
|
+
# unscope only comments.hidden column
|
1196
|
+
posts.unscope(where: :"comments.hidden").count
|
1197
|
+
# => { false => 11 }
|
857
1198
|
```
|
858
|
-
config.active_record.database_selector = { delay: 2.seconds }
|
859
|
-
config.active_record.database_resolver = ActiveRecord::Middleware::DatabaseSelector::Resolver
|
860
|
-
config.active_record.database_resolver_context = ActiveRecord::Middleware::DatabaseSelector::Resolver::Session
|
861
|
-
```
|
862
1199
|
|
863
|
-
|
864
|
-
|
1200
|
+
*Ryuta Kamizono*, *Slava Korolev*
|
1201
|
+
|
1202
|
+
* Fix `rewhere` to truly overwrite collided where clause by new where clause.
|
1203
|
+
|
1204
|
+
```ruby
|
1205
|
+
steve = Person.find_by(name: "Steve")
|
1206
|
+
david = Author.find_by(name: "David")
|
1207
|
+
|
1208
|
+
relation = Essay.where(writer: steve)
|
1209
|
+
|
1210
|
+
# Before
|
1211
|
+
relation.rewhere(writer: david).to_a # => []
|
865
1212
|
|
1213
|
+
# After
|
1214
|
+
relation.rewhere(writer: david).to_a # => [david]
|
866
1215
|
```
|
867
|
-
|
868
|
-
|
869
|
-
|
1216
|
+
|
1217
|
+
*Ryuta Kamizono*
|
1218
|
+
|
1219
|
+
* Inspect time attributes with subsec and time zone offset.
|
1220
|
+
|
1221
|
+
```ruby
|
1222
|
+
p Knot.create
|
1223
|
+
=> #<Knot id: 1, created_at: "2016-05-05 01:29:47.116928000 +0000">
|
870
1224
|
```
|
871
1225
|
|
872
|
-
*
|
1226
|
+
*akinomaeni*, *Jonathan Hefner*
|
873
1227
|
|
874
|
-
*
|
1228
|
+
* Deprecate passing a column to `type_cast`.
|
875
1229
|
|
876
1230
|
*Ryuta Kamizono*
|
877
1231
|
|
878
|
-
*
|
1232
|
+
* Deprecate `in_clause_length` and `allowed_index_name_length` in `DatabaseLimits`.
|
879
1233
|
|
880
1234
|
*Ryuta Kamizono*
|
881
1235
|
|
1236
|
+
* Support bulk insert/upsert on relation to preserve scope values.
|
882
1237
|
|
883
|
-
|
1238
|
+
*Josef Šimánek*, *Ryuta Kamizono*
|
884
1239
|
|
885
|
-
*
|
1240
|
+
* Preserve column comment value on changing column name on MySQL.
|
886
1241
|
|
887
|
-
*
|
1242
|
+
*Islam Taha*
|
888
1243
|
|
889
|
-
*
|
1244
|
+
* Add support for `if_exists` option for removing an index.
|
890
1245
|
|
891
|
-
|
1246
|
+
The `remove_index` method can take an `if_exists` option. If this is set to true an error won't be raised if the index doesn't exist.
|
892
1247
|
|
893
|
-
*
|
1248
|
+
*Eileen M. Uchitelle*
|
894
1249
|
|
895
|
-
|
1250
|
+
* Remove ibm_db, informix, mssql, oracle, and oracle12 Arel visitors which are not used in the code base.
|
896
1251
|
|
897
|
-
*
|
1252
|
+
*Ryuta Kamizono*
|
898
1253
|
|
899
|
-
|
1254
|
+
* Prevent `build_association` from `touching` a parent record if the record isn't persisted for `has_one` associations.
|
900
1255
|
|
901
|
-
|
1256
|
+
Fixes #38219.
|
902
1257
|
|
903
|
-
*
|
1258
|
+
*Josh Brody*
|
904
1259
|
|
905
|
-
*
|
1260
|
+
* Add support for `if_not_exists` option for adding index.
|
906
1261
|
|
907
|
-
|
1262
|
+
The `add_index` method respects `if_not_exists` option. If it is set to true
|
1263
|
+
index won't be added.
|
908
1264
|
|
909
|
-
|
1265
|
+
Usage:
|
910
1266
|
|
911
|
-
|
1267
|
+
```ruby
|
1268
|
+
add_index :users, :account_id, if_not_exists: true
|
1269
|
+
```
|
912
1270
|
|
913
|
-
|
1271
|
+
The `if_not_exists` option passed to `create_table` also gets propagated to indexes
|
1272
|
+
created within that migration so that if table and its indexes exist then there is no
|
1273
|
+
attempt to create them again.
|
914
1274
|
|
915
|
-
*
|
1275
|
+
*Prathamesh Sonpatki*
|
916
1276
|
|
917
|
-
*
|
1277
|
+
* Add `ActiveRecord::Base#previously_new_record?` to show if a record was new before the last save.
|
918
1278
|
|
919
|
-
*
|
1279
|
+
*Tom Ward*
|
920
1280
|
|
921
|
-
*
|
1281
|
+
* Support descending order for `find_each`, `find_in_batches`, and `in_batches`.
|
922
1282
|
|
923
|
-
|
1283
|
+
Batch processing methods allow you to work with the records in batches, greatly reducing memory consumption, but records are always batched from oldest id to newest.
|
924
1284
|
|
925
|
-
|
1285
|
+
This change allows reversing the order, batching from newest to oldest. This is useful when you need to process newer batches of records first.
|
926
1286
|
|
927
|
-
|
1287
|
+
Pass `order: :desc` to yield batches in descending order. The default remains `order: :asc`.
|
928
1288
|
|
929
|
-
|
1289
|
+
```ruby
|
1290
|
+
Person.find_each(order: :desc) do |person|
|
1291
|
+
person.party_all_night!
|
1292
|
+
end
|
1293
|
+
```
|
930
1294
|
|
931
|
-
*
|
1295
|
+
*Alexey Vasiliev*
|
932
1296
|
|
933
|
-
*
|
1297
|
+
* Fix `insert_all` with enum values.
|
934
1298
|
|
935
|
-
|
1299
|
+
Fixes #38716.
|
936
1300
|
|
937
|
-
*
|
1301
|
+
*Joel Blum*
|
938
1302
|
|
939
|
-
|
1303
|
+
* Add support for `db:rollback:name` for multiple database applications.
|
940
1304
|
|
941
|
-
|
1305
|
+
Multiple database applications will now raise if `db:rollback` is call and recommend using the `db:rollback:[NAME]` to rollback migrations.
|
942
1306
|
|
943
|
-
*
|
1307
|
+
*Eileen M. Uchitelle*
|
944
1308
|
|
945
|
-
|
1309
|
+
* `Relation#pick` now uses already loaded results instead of making another query.
|
946
1310
|
|
947
|
-
*
|
1311
|
+
*Eugene Kenny*
|
948
1312
|
|
949
|
-
|
1313
|
+
* Deprecate using `return`, `break` or `throw` to exit a transaction block after writes.
|
950
1314
|
|
951
|
-
*
|
1315
|
+
*Dylan Thacker-Smith*
|
952
1316
|
|
953
|
-
|
1317
|
+
* Dump the schema or structure of a database when calling `db:migrate:name`.
|
954
1318
|
|
955
|
-
|
1319
|
+
In previous versions of Rails, `rails db:migrate` would dump the schema of the database. In Rails 6, that holds true (`rails db:migrate` dumps all databases' schemas), but `rails db:migrate:name` does not share that behavior.
|
956
1320
|
|
957
|
-
|
958
|
-
format for InnoDB tables. The default setting is `DYNAMIC`.
|
959
|
-
The row format is required for indexing on `varchar(255)` with `utf8mb4` columns.
|
1321
|
+
Going forward, calls to `rails db:migrate:name` will dump the schema (or structure) of the database being migrated.
|
960
1322
|
|
961
|
-
*
|
1323
|
+
*Kyle Thompson*
|
962
1324
|
|
963
|
-
*
|
1325
|
+
* Reset the `ActiveRecord::Base` connection after `rails db:migrate:name`.
|
964
1326
|
|
965
|
-
|
1327
|
+
When `rails db:migrate` has finished, it ensures the `ActiveRecord::Base` connection is reset to its original configuration. Going forward, `rails db:migrate:name` will have the same behavior.
|
966
1328
|
|
967
|
-
*
|
1329
|
+
*Kyle Thompson*
|
968
1330
|
|
969
|
-
|
1331
|
+
* Disallow calling `connected_to` on subclasses of `ActiveRecord::Base`.
|
970
1332
|
|
971
|
-
|
1333
|
+
Behavior has not changed here but the previous API could be misleading to people who thought it would switch connections for only that class. `connected_to` switches the context from which we are getting connections, not the connections themselves.
|
972
1334
|
|
973
|
-
*
|
1335
|
+
*Eileen M. Uchitelle*, *John Crepezzi*
|
974
1336
|
|
975
|
-
*
|
1337
|
+
* Add support for horizontal sharding to `connects_to` and `connected_to`.
|
976
1338
|
|
977
|
-
|
1339
|
+
Applications can now connect to multiple shards and switch between their shards in an application. Note that the shard swapping is still a manual process as this change does not include an API for automatic shard swapping.
|
978
1340
|
|
979
|
-
|
1341
|
+
Usage:
|
980
1342
|
|
981
|
-
|
982
|
-
you're building out multiple databases and want to make sure you're not sending
|
983
|
-
writes when you want a read.
|
1343
|
+
Given the following configuration:
|
984
1344
|
|
985
|
-
|
986
|
-
|
987
|
-
|
1345
|
+
```yaml
|
1346
|
+
# config/database.yml
|
1347
|
+
production:
|
1348
|
+
primary:
|
1349
|
+
database: my_database
|
1350
|
+
primary_shard_one:
|
1351
|
+
database: my_database_shard_one
|
1352
|
+
```
|
988
1353
|
|
989
|
-
|
990
|
-
read-only queries without opening a second connection. One purpose of this is to
|
991
|
-
catch accidental writes, not all writes.
|
1354
|
+
Connect to multiple shards:
|
992
1355
|
|
993
|
-
|
1356
|
+
```ruby
|
1357
|
+
class ApplicationRecord < ActiveRecord::Base
|
1358
|
+
self.abstract_class = true
|
994
1359
|
|
995
|
-
|
1360
|
+
connects_to shards: {
|
1361
|
+
default: { writing: :primary },
|
1362
|
+
shard_one: { writing: :primary_shard_one }
|
1363
|
+
}
|
1364
|
+
```
|
996
1365
|
|
997
|
-
|
1366
|
+
Swap between shards in your controller / model code:
|
998
1367
|
|
999
|
-
|
1368
|
+
```ruby
|
1369
|
+
ActiveRecord::Base.connected_to(shard: :shard_one) do
|
1370
|
+
# Read from shard one
|
1371
|
+
end
|
1372
|
+
```
|
1000
1373
|
|
1001
|
-
|
1374
|
+
The horizontal sharding API also supports read replicas. See guides for more details.
|
1002
1375
|
|
1003
|
-
*
|
1376
|
+
*Eileen M. Uchitelle*, *John Crepezzi*
|
1377
|
+
|
1378
|
+
* Deprecate `spec_name` in favor of `name` on database configurations.
|
1004
1379
|
|
1005
|
-
|
1380
|
+
The accessors for `spec_name` on `configs_for` and `DatabaseConfig` are deprecated. Please use `name` instead.
|
1006
1381
|
|
1007
|
-
|
1008
|
-
was passing for SQLite and MySQL, but failed for PostgreSQL:
|
1382
|
+
Deprecated behavior:
|
1009
1383
|
|
1010
1384
|
```ruby
|
1011
|
-
|
1012
|
-
|
1013
|
-
|
1014
|
-
end
|
1015
|
-
end
|
1385
|
+
db_config = ActiveRecord::Base.configurations.configs_for(env_name: "development", spec_name: "primary")
|
1386
|
+
db_config.spec_name
|
1387
|
+
```
|
1016
1388
|
|
1017
|
-
|
1018
|
-
self.table_name = "developers"
|
1389
|
+
New behavior:
|
1019
1390
|
|
1020
|
-
|
1391
|
+
```ruby
|
1392
|
+
db_config = ActiveRecord::Base.configurations.configs_for(env_name: "development", name: "primary")
|
1393
|
+
db_config.name
|
1394
|
+
```
|
1021
1395
|
|
1022
|
-
|
1023
|
-
|
1396
|
+
*Eileen M. Uchitelle*
|
1397
|
+
|
1398
|
+
* Add additional database-specific rake tasks for multi-database users.
|
1024
1399
|
|
1025
|
-
|
1026
|
-
|
1400
|
+
Previously, `rails db:create`, `rails db:drop`, and `rails db:migrate` were the only rails tasks that could operate on a single
|
1401
|
+
database. For example:
|
1027
1402
|
|
1028
|
-
|
1029
|
-
|
1403
|
+
```
|
1404
|
+
rails db:create
|
1405
|
+
rails db:create:primary
|
1406
|
+
rails db:create:animals
|
1407
|
+
rails db:drop
|
1408
|
+
rails db:drop:primary
|
1409
|
+
rails db:drop:animals
|
1410
|
+
rails db:migrate
|
1411
|
+
rails db:migrate:primary
|
1412
|
+
rails db:migrate:animals
|
1030
1413
|
```
|
1031
1414
|
|
1032
|
-
|
1415
|
+
With these changes, `rails db:schema:dump`, `rails db:schema:load`, `rails db:structure:dump`, `rails db:structure:load` and
|
1416
|
+
`rails db:test:prepare` can additionally operate on a single database. For example:
|
1033
1417
|
|
1034
|
-
|
1418
|
+
```
|
1419
|
+
rails db:schema:dump
|
1420
|
+
rails db:schema:dump:primary
|
1421
|
+
rails db:schema:dump:animals
|
1422
|
+
rails db:schema:load
|
1423
|
+
rails db:schema:load:primary
|
1424
|
+
rails db:schema:load:animals
|
1425
|
+
rails db:structure:dump
|
1426
|
+
rails db:structure:dump:primary
|
1427
|
+
rails db:structure:dump:animals
|
1428
|
+
rails db:structure:load
|
1429
|
+
rails db:structure:load:primary
|
1430
|
+
rails db:structure:load:animals
|
1431
|
+
rails db:test:prepare
|
1432
|
+
rails db:test:prepare:primary
|
1433
|
+
rails db:test:prepare:animals
|
1434
|
+
```
|
1035
1435
|
|
1036
|
-
|
1037
|
-
explicit order clause, ActiveRecord sorts records by primary key. This can
|
1038
|
-
result in unpredictable and surprising behaviour when the primary key is
|
1039
|
-
not an auto-incrementing integer, for example when it's a UUID. This change
|
1040
|
-
makes it possible to override the column used for implicit ordering such
|
1041
|
-
that `first` and `last` will return more predictable results.
|
1436
|
+
*Kyle Thompson*
|
1042
1437
|
|
1043
|
-
|
1438
|
+
* Add support for `strict_loading` mode on association declarations.
|
1044
1439
|
|
1045
|
-
|
1046
|
-
self.implicit_order_column = "created_at"
|
1047
|
-
end
|
1440
|
+
Raise an error if attempting to load a record from an association that has been marked as `strict_loading` unless it was explicitly eager loaded.
|
1048
1441
|
|
1049
|
-
|
1442
|
+
Usage:
|
1050
1443
|
|
1051
|
-
|
1444
|
+
```ruby
|
1445
|
+
class Developer < ApplicationRecord
|
1446
|
+
has_many :projects, strict_loading: true
|
1447
|
+
end
|
1052
1448
|
|
1053
|
-
|
1449
|
+
dev = Developer.first
|
1450
|
+
dev.projects.first
|
1451
|
+
# => ActiveRecord::StrictLoadingViolationError: The projects association is marked as strict_loading and cannot be lazily loaded.
|
1452
|
+
```
|
1054
1453
|
|
1055
|
-
*
|
1454
|
+
*Kevin Deisz*
|
1056
1455
|
|
1057
|
-
|
1456
|
+
* Add support for `strict_loading` mode to prevent lazy loading of records.
|
1058
1457
|
|
1059
|
-
|
1458
|
+
Raise an error if a parent record is marked as `strict_loading` and attempts to lazily load its associations. This is useful for finding places you may want to preload an association and avoid additional queries.
|
1060
1459
|
|
1061
|
-
|
1460
|
+
Usage:
|
1461
|
+
|
1462
|
+
```ruby
|
1463
|
+
dev = Developer.strict_loading.first
|
1464
|
+
dev.audit_logs.to_a
|
1465
|
+
# => ActiveRecord::StrictLoadingViolationError: Developer is marked as strict_loading and AuditLog cannot be lazily loaded.
|
1466
|
+
```
|
1062
1467
|
|
1063
|
-
|
1468
|
+
*Eileen M. Uchitelle*, *Aaron Patterson*
|
1064
1469
|
|
1065
|
-
|
1470
|
+
* Add support for PostgreSQL 11+ partitioned indexes when using `upsert_all`.
|
1066
1471
|
|
1067
|
-
|
1472
|
+
*Sebastián Palma*
|
1473
|
+
|
1474
|
+
* Adds support for `if_not_exists` to `add_column` and `if_exists` to `remove_column`.
|
1475
|
+
|
1476
|
+
Applications can set their migrations to ignore exceptions raised when adding a column that already exists or when removing a column that does not exist.
|
1068
1477
|
|
1478
|
+
Example Usage:
|
1479
|
+
|
1480
|
+
```ruby
|
1481
|
+
class AddColumnTitle < ActiveRecord::Migration[6.1]
|
1482
|
+
def change
|
1483
|
+
add_column :posts, :title, :string, if_not_exists: true
|
1484
|
+
end
|
1485
|
+
end
|
1069
1486
|
```
|
1070
|
-
|
1071
|
-
|
1072
|
-
|
1487
|
+
|
1488
|
+
```ruby
|
1489
|
+
class RemoveColumnTitle < ActiveRecord::Migration[6.1]
|
1490
|
+
def change
|
1491
|
+
remove_column :posts, :title, if_exists: true
|
1073
1492
|
end
|
1074
1493
|
end
|
1075
1494
|
```
|
1076
1495
|
|
1077
|
-
*
|
1496
|
+
*Eileen M. Uchitelle*
|
1078
1497
|
|
1079
|
-
*
|
1498
|
+
* Regexp-escape table name for MS SQL Server.
|
1080
1499
|
|
1081
|
-
|
1500
|
+
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.
|
1082
1501
|
|
1083
|
-
|
1084
|
-
t.string :title
|
1085
|
-
end
|
1502
|
+
*Larry Reid*
|
1086
1503
|
|
1087
|
-
|
1504
|
+
* Store advisory locks on their own named connection.
|
1088
1505
|
|
1089
|
-
|
1090
|
-
...
|
1091
|
-
)
|
1506
|
+
Previously advisory locks were taken out against a connection when a migration started. This works fine in single database applications but doesn't work well when migrations need to open new connections which results in the lock getting dropped.
|
1092
1507
|
|
1093
|
-
|
1094
|
-
exception whereas `if_not_exists: true` does nothing.
|
1508
|
+
In order to fix this we are storing the advisory lock on a new connection with the connection specification name `AdvisoryLockBase`. The caveat is that we need to maintain at least 2 connections to a database while migrations are running in order to do this.
|
1095
1509
|
|
1096
|
-
*
|
1510
|
+
*Eileen M. Uchitelle*, *John Crepezzi*
|
1097
1511
|
|
1098
|
-
*
|
1512
|
+
* Allow schema cache path to be defined in the database configuration file.
|
1099
1513
|
|
1100
|
-
|
1514
|
+
For example:
|
1101
1515
|
|
1102
|
-
|
1516
|
+
```yaml
|
1517
|
+
development:
|
1518
|
+
adapter: postgresql
|
1519
|
+
database: blog_development
|
1520
|
+
pool: 5
|
1521
|
+
schema_cache_path: tmp/schema/main.yml
|
1522
|
+
```
|
1103
1523
|
|
1104
|
-
*
|
1524
|
+
*Katrina Owen*
|
1105
1525
|
|
1106
|
-
* `
|
1107
|
-
if the attribute does not exist.
|
1526
|
+
* Deprecate `#remove_connection` in favor of `#remove_connection_pool` when called on the handler.
|
1108
1527
|
|
1109
|
-
|
1528
|
+
`#remove_connection` is deprecated in order to support returning a `DatabaseConfig` object instead of a `Hash`. Use `#remove_connection_pool`, `#remove_connection` will be removed in Rails 7.0.
|
1110
1529
|
|
1111
|
-
*
|
1530
|
+
*Eileen M. Uchitelle*, *John Crepezzi*
|
1112
1531
|
|
1113
|
-
|
1114
|
-
User.connected_to(database: { writing: "postgres://foo" }) do
|
1115
|
-
User.create!(name: "Gannon")
|
1116
|
-
end
|
1532
|
+
* Deprecate `#default_hash` and it's alias `#[]` on database configurations.
|
1117
1533
|
|
1118
|
-
|
1119
|
-
User.connected_to(database: { reading: config }) do
|
1120
|
-
User.count
|
1121
|
-
end
|
1122
|
-
````
|
1534
|
+
Applications should use `configs_for`. `#default_hash` and `#[]` will be removed in Rails 7.0.
|
1123
1535
|
|
1124
|
-
*
|
1536
|
+
*Eileen M. Uchitelle*, *John Crepezzi*
|
1125
1537
|
|
1126
|
-
*
|
1538
|
+
* Add scale support to `ActiveRecord::Validations::NumericalityValidator`.
|
1127
1539
|
|
1128
|
-
|
1540
|
+
*Gannon McGibbon*
|
1129
1541
|
|
1130
|
-
|
1542
|
+
* Find orphans by looking for missing relations through chaining `where.missing`:
|
1131
1543
|
|
1132
|
-
|
1544
|
+
Before:
|
1133
1545
|
|
1134
|
-
|
1546
|
+
```ruby
|
1547
|
+
Post.left_joins(:author).where(authors: { id: nil })
|
1548
|
+
```
|
1135
1549
|
|
1136
|
-
|
1137
|
-
expression values rather than column or column prefix values.
|
1550
|
+
After:
|
1138
1551
|
|
1139
|
-
|
1552
|
+
```ruby
|
1553
|
+
Post.where.missing(:author)
|
1554
|
+
```
|
1140
1555
|
|
1141
|
-
*
|
1556
|
+
*Tom Rossi*
|
1142
1557
|
|
1143
|
-
*
|
1558
|
+
* Ensure `:reading` connections always raise if a write is attempted.
|
1144
1559
|
|
1145
|
-
|
1560
|
+
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`.
|
1146
1561
|
|
1147
|
-
*
|
1562
|
+
*Eileen M. Uchitelle*
|
1148
1563
|
|
1149
|
-
*
|
1564
|
+
* Deprecate `"primary"` as the `connection_specification_name` for `ActiveRecord::Base`.
|
1150
1565
|
|
1151
|
-
|
1566
|
+
`"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"`.
|
1152
1567
|
|
1153
|
-
|
1154
|
-
class AnimalsModel < ApplicationRecord
|
1155
|
-
self.abstract_class = true
|
1568
|
+
*Eileen M. Uchitelle*, *John Crepezzi*
|
1156
1569
|
|
1157
|
-
|
1158
|
-
|
1570
|
+
* Add `ActiveRecord::Validations::NumericalityValidator` with
|
1571
|
+
support for casting floats using a database columns' precision value.
|
1159
1572
|
|
1160
|
-
|
1161
|
-
# connected to both the animals_primary db for writing and the animals_replica for reading
|
1162
|
-
end
|
1163
|
-
```
|
1573
|
+
*Gannon McGibbon*
|
1164
1574
|
|
1165
|
-
|
1166
|
-
|
1167
|
-
|
1168
|
-
|
1575
|
+
* Enforce fresh ETag header after a collection's contents change by adding
|
1576
|
+
ActiveRecord::Relation#cache_key_with_version. This method will be used by
|
1577
|
+
ActionController::ConditionalGet to ensure that when collection cache versioning
|
1578
|
+
is enabled, requests using ConditionalGet don't return the same ETag header
|
1579
|
+
after a collection is modified.
|
1169
1580
|
|
1170
|
-
|
1171
|
-
ActiveRecord::Base.connected_to(role: :reading) do
|
1172
|
-
Dog.first # finds dog from replica connected to AnimalsBase
|
1173
|
-
Book.first # doesn't have a reading connection, will raise an error
|
1174
|
-
end
|
1175
|
-
```
|
1581
|
+
Fixes #38078.
|
1176
1582
|
|
1177
|
-
|
1178
|
-
ActiveRecord::Base.connected_to(database: :slow_replica) do
|
1179
|
-
SlowReplicaModel.first # if the db config has a slow_replica configuration this will be used to do the lookup, otherwise this will throw an exception
|
1180
|
-
end
|
1181
|
-
```
|
1182
|
-
|
1183
|
-
*Eileen M. Uchitelle*
|
1583
|
+
*Aaron Lipman*
|
1184
1584
|
|
1185
|
-
*
|
1585
|
+
* Skip test database when running `db:create` or `db:drop` in development
|
1586
|
+
with `DATABASE_URL` set.
|
1186
1587
|
|
1187
|
-
|
1188
|
-
commit checks that only valid definition values are provided, those can
|
1189
|
-
be a Hash, an array of Symbols or an array of Strings. Otherwise it
|
1190
|
-
raises an `ArgumentError`.
|
1588
|
+
*Brian Buchalter*
|
1191
1589
|
|
1192
|
-
|
1590
|
+
* Don't allow mutations on the database configurations hash.
|
1193
1591
|
|
1194
|
-
|
1592
|
+
Freeze the configurations hash to disallow directly changing it. If applications need to change the hash, for example to create databases for parallelization, they should use the `DatabaseConfig` object directly.
|
1195
1593
|
|
1196
|
-
|
1594
|
+
Before:
|
1197
1595
|
|
1596
|
+
```ruby
|
1597
|
+
@db_config = ActiveRecord::Base.configurations.configs_for(env_name: "test", spec_name: "primary")
|
1598
|
+
@db_config.configuration_hash.merge!(idle_timeout: "0.02")
|
1198
1599
|
```
|
1199
|
-
class Post < ActiveRecord::Base
|
1200
|
-
has_one :category
|
1201
|
-
belongs_to :author
|
1202
|
-
has_many :comments
|
1203
|
-
end
|
1204
1600
|
|
1205
|
-
|
1206
|
-
|
1207
|
-
|
1208
|
-
|
1601
|
+
After:
|
1602
|
+
|
1603
|
+
```ruby
|
1604
|
+
@db_config = ActiveRecord::Base.configurations.configs_for(env_name: "test", spec_name: "primary")
|
1605
|
+
config = @db_config.configuration_hash.merge(idle_timeout: "0.02")
|
1606
|
+
db_config = ActiveRecord::DatabaseConfigurations::HashConfig.new(@db_config.env_name, @db_config.spec_name, config)
|
1209
1607
|
```
|
1210
1608
|
|
1211
|
-
*
|
1609
|
+
*Eileen M. Uchitelle*, *John Crepezzi*
|
1212
1610
|
|
1213
|
-
*
|
1214
|
-
With this change you can create indexes while adding new
|
1215
|
-
columns into the existing tables.
|
1611
|
+
* Remove `:connection_id` from the `sql.active_record` notification.
|
1216
1612
|
|
1217
|
-
|
1613
|
+
*Aaron Patterson*, *Rafael Mendonça França*
|
1218
1614
|
|
1219
|
-
|
1220
|
-
t.string :country_code, index: true
|
1221
|
-
end
|
1615
|
+
* The `:name` key will no longer be returned as part of `DatabaseConfig#configuration_hash`. Please use `DatabaseConfig#owner_name` instead.
|
1222
1616
|
|
1223
|
-
*
|
1617
|
+
*Eileen M. Uchitelle*, *John Crepezzi*
|
1224
1618
|
|
1225
|
-
*
|
1619
|
+
* ActiveRecord's `belongs_to_required_by_default` flag can now be set per model.
|
1226
1620
|
|
1227
|
-
|
1228
|
-
|
1621
|
+
You can now opt-out/opt-in specific models from having their associations required
|
1622
|
+
by default.
|
1229
1623
|
|
1230
|
-
|
1624
|
+
This change is meant to ease the process of migrating all your models to have
|
1625
|
+
their association required.
|
1231
1626
|
|
1232
|
-
*
|
1627
|
+
*Edouard Chin*
|
1233
1628
|
|
1234
|
-
|
1629
|
+
* The `connection_config` method has been deprecated, please use `connection_db_config` instead which will return a `DatabaseConfigurations::DatabaseConfig` instead of a `Hash`.
|
1235
1630
|
|
1236
|
-
*
|
1631
|
+
*Eileen M. Uchitelle*, *John Crepezzi*
|
1237
1632
|
|
1238
|
-
|
1633
|
+
* Retain explicit selections on the base model after applying `includes` and `joins`.
|
1239
1634
|
|
1240
|
-
|
1635
|
+
Resolves #34889.
|
1241
1636
|
|
1242
|
-
|
1637
|
+
*Patrick Rebsch*
|
1243
1638
|
|
1244
|
-
|
1639
|
+
* The `database` kwarg is deprecated without replacement because it can't be used for sharding and creates an issue if it's used during a request. Applications that need to create new connections should use `connects_to` instead.
|
1245
1640
|
|
1246
|
-
*
|
1641
|
+
*Eileen M. Uchitelle*, *John Crepezzi*
|
1247
1642
|
|
1248
|
-
|
1643
|
+
* Allow attributes to be fetched from Arel node groupings.
|
1249
1644
|
|
1250
|
-
*
|
1645
|
+
*Jeff Emminger*, *Gannon McGibbon*
|
1251
1646
|
|
1252
|
-
|
1253
|
-
create_table :users do |t|
|
1254
|
-
t.string :email
|
1255
|
-
end
|
1647
|
+
* A database URL can now contain a querystring value that contains an equal sign. This is needed to support passing PostgreSQL `options`.
|
1256
1648
|
|
1257
|
-
|
1258
|
-
```
|
1649
|
+
*Joshua Flanagan*
|
1259
1650
|
|
1260
|
-
|
1651
|
+
* Calling methods like `establish_connection` with a `Hash` which is invalid (eg: no `adapter`) will now raise an error the same way as connections defined in `config/database.yml`.
|
1261
1652
|
|
1262
|
-
*
|
1653
|
+
*John Crepezzi*
|
1263
1654
|
|
1264
|
-
|
1655
|
+
* Specifying `implicit_order_column` now subsorts the records by primary key if available to ensure deterministic results.
|
1265
1656
|
|
1266
|
-
*
|
1657
|
+
*Paweł Urbanek*
|
1267
1658
|
|
1268
|
-
*
|
1659
|
+
* `where(attr => [])` now loads an empty result without making a query.
|
1269
1660
|
|
1270
|
-
*
|
1661
|
+
*John Hawthorn*
|
1271
1662
|
|
1272
|
-
*
|
1663
|
+
* Fixed the performance regression for `primary_keys` introduced MySQL 8.0.
|
1273
1664
|
|
1274
|
-
|
1275
|
-
The previous default 3-Byte encoding character set `utf8` is not enough to support them.
|
1665
|
+
*Hiroyuki Ishii*
|
1276
1666
|
|
1277
|
-
|
1667
|
+
* Add support for `belongs_to` to `has_many` inversing.
|
1278
1668
|
|
1279
|
-
*
|
1669
|
+
*Gannon McGibbon*
|
1280
1670
|
|
1281
|
-
|
1671
|
+
* Allow length configuration for `has_secure_token` method. The minimum length
|
1672
|
+
is set at 24 characters.
|
1282
1673
|
|
1283
|
-
|
1284
|
-
sensitive values of database columns when calling `#inspect`.
|
1285
|
-
We also added `ActiveRecord::Base::filter_attributes`/`=` in order to
|
1286
|
-
specify sensitive attributes to specific model.
|
1674
|
+
Before:
|
1287
1675
|
|
1676
|
+
```ruby
|
1677
|
+
has_secure_token :auth_token
|
1288
1678
|
```
|
1289
|
-
|
1290
|
-
|
1291
|
-
|
1292
|
-
|
1679
|
+
|
1680
|
+
After:
|
1681
|
+
|
1682
|
+
```ruby
|
1683
|
+
has_secure_token :default_token # 24 characters
|
1684
|
+
has_secure_token :auth_token, length: 36 # 36 characters
|
1685
|
+
has_secure_token :invalid_token, length: 12 # => ActiveRecord::SecureToken::MinimumLengthError
|
1293
1686
|
```
|
1294
1687
|
|
1295
|
-
*
|
1688
|
+
*Bernardo de Araujo*
|
1296
1689
|
|
1297
|
-
* Deprecate `
|
1298
|
-
`indexes_per_table`, `columns_per_multicolumn_index`, `sql_query_length`,
|
1299
|
-
and `joins_per_query` methods in `DatabaseLimits`.
|
1690
|
+
* Deprecate `DatabaseConfigurations#to_h`. These connection hashes are still available via `ActiveRecord::Base.configurations.configs_for`.
|
1300
1691
|
|
1301
|
-
*
|
1692
|
+
*Eileen Uchitelle*, *John Crepezzi*
|
1302
1693
|
|
1303
|
-
* `
|
1694
|
+
* Add `DatabaseConfig#configuration_hash` to return database configuration hashes with symbol keys, and use all symbol-key configuration hashes internally. Deprecate `DatabaseConfig#config` which returns a String-keyed `Hash` with the same values.
|
1304
1695
|
|
1305
|
-
|
1306
|
-
is an inflexible data model. In order to improve multiple-database
|
1307
|
-
handling in Rails, we've changed this to return an object. Some methods
|
1308
|
-
are provided to make the object behave hash-like in order to ease the
|
1309
|
-
transition process. Since most applications don't manipulate the hash
|
1310
|
-
we've decided to add backwards-compatible functionality that will throw
|
1311
|
-
a deprecation warning if used, however calling `ActiveRecord::Base.configurations`
|
1312
|
-
will use the new version internally and externally.
|
1696
|
+
*John Crepezzi*, *Eileen Uchitelle*
|
1313
1697
|
|
1314
|
-
|
1698
|
+
* Allow column names to be passed to `remove_index` positionally along with other options.
|
1315
1699
|
|
1316
|
-
|
1317
|
-
development:
|
1318
|
-
adapter: sqlite3
|
1319
|
-
database: db/development.sqlite3
|
1320
|
-
```
|
1700
|
+
Passing other options can be necessary to make `remove_index` correctly reversible.
|
1321
1701
|
|
1322
|
-
|
1702
|
+
Before:
|
1323
1703
|
|
1324
|
-
|
1325
|
-
|
1326
|
-
|
1704
|
+
add_index :reports, :report_id # => works
|
1705
|
+
add_index :reports, :report_id, unique: true # => works
|
1706
|
+
remove_index :reports, :report_id # => works
|
1707
|
+
remove_index :reports, :report_id, unique: true # => ArgumentError
|
1327
1708
|
|
1328
|
-
|
1709
|
+
After:
|
1329
1710
|
|
1330
|
-
|
1331
|
-
#<ActiveRecord::DatabaseConfigurations:0x00007fd1acbdf800 @configurations=[
|
1332
|
-
#<ActiveRecord::DatabaseConfigurations::HashConfig:0x00007fd1acbded10 @env_name="development",
|
1333
|
-
@spec_name="primary", @config={"adapter"=>"sqlite3", "database"=>"db/development.sqlite3"}>
|
1334
|
-
]
|
1335
|
-
```
|
1711
|
+
remove_index :reports, :report_id, unique: true # => works
|
1336
1712
|
|
1337
|
-
|
1338
|
-
calling hash methods on the `configurations` hash directly, a new method `configs_for` has
|
1339
|
-
been provided that allows you to select the correct configuration. `env_name` and
|
1340
|
-
`spec_name` arguments are optional. For example, these return an array of
|
1341
|
-
database config objects for the requested environment and a single database config object
|
1342
|
-
will be returned for the requested environment and specification name respectively.
|
1713
|
+
*Eugene Kenny*
|
1343
1714
|
|
1344
|
-
|
1345
|
-
ActiveRecord::Base.configurations.configs_for(env_name: "development")
|
1346
|
-
ActiveRecord::Base.configurations.configs_for(env_name: "development", spec_name: "primary")
|
1347
|
-
```
|
1715
|
+
* Allow bulk `ALTER` statements to drop and recreate indexes with the same name.
|
1348
1716
|
|
1349
|
-
*
|
1717
|
+
*Eugene Kenny*
|
1350
1718
|
|
1351
|
-
*
|
1719
|
+
* `insert`, `insert_all`, `upsert`, and `upsert_all` now clear the query cache.
|
1352
1720
|
|
1353
|
-
|
1354
|
-
production:
|
1355
|
-
adapter: postgresql
|
1356
|
-
advisory_locks: false
|
1357
|
-
```
|
1721
|
+
*Eugene Kenny*
|
1358
1722
|
|
1359
|
-
|
1723
|
+
* Call `while_preventing_writes` directly from `connected_to`.
|
1360
1724
|
|
1361
|
-
|
1725
|
+
In some cases application authors want to use the database switching middleware and make explicit calls with `connected_to`. It's possible for an app to turn off writes and not turn them back on by the time we call `connected_to(role: :writing)`.
|
1362
1726
|
|
1363
|
-
|
1727
|
+
This change allows apps to fix this by assuming if a role is writing we want to allow writes, except in the case it's explicitly turned off.
|
1364
1728
|
|
1365
|
-
*
|
1729
|
+
*Eileen M. Uchitelle*
|
1366
1730
|
|
1367
|
-
|
1731
|
+
* Improve detection of ActiveRecord::StatementTimeout with mysql2 adapter in the edge case when the query is terminated during filesort.
|
1368
1732
|
|
1369
|
-
|
1733
|
+
*Kir Shatrov*
|
1734
|
+
|
1735
|
+
* Stop trying to read yaml file fixtures when loading Active Record fixtures.
|
1370
1736
|
|
1371
|
-
*
|
1737
|
+
*Gannon McGibbon*
|
1372
1738
|
|
1373
|
-
*
|
1374
|
-
seed load in environments without Rails and custom DB configuration
|
1739
|
+
* Deprecate `.reorder(nil)` with `.first` / `.first!` taking non-deterministic result.
|
1375
1740
|
|
1376
|
-
|
1741
|
+
To continue taking non-deterministic result, use `.take` / `.take!` instead.
|
1377
1742
|
|
1378
|
-
*
|
1743
|
+
*Ryuta Kamizono*
|
1379
1744
|
|
1380
|
-
|
1745
|
+
* Preserve user supplied joins order as much as possible.
|
1381
1746
|
|
1382
|
-
|
1747
|
+
Fixes #36761, #34328, #24281, #12953.
|
1383
1748
|
|
1384
1749
|
*Ryuta Kamizono*
|
1385
1750
|
|
1386
|
-
*
|
1751
|
+
* Allow `matches_regex` and `does_not_match_regexp` on the MySQL Arel visitor.
|
1387
1752
|
|
1388
|
-
|
1753
|
+
*James Pearson*
|
1754
|
+
|
1755
|
+
* Allow specifying fixtures to be ignored by setting `ignore` in YAML file's '_fixture' section.
|
1756
|
+
|
1757
|
+
*Tongfei Gao*
|
1758
|
+
|
1759
|
+
* Make the DATABASE_URL env variable only affect the primary connection. Add new env variables for multiple databases.
|
1760
|
+
|
1761
|
+
*John Crepezzi*, *Eileen Uchitelle*
|
1389
1762
|
|
1390
|
-
|
1763
|
+
* Add a warning for enum elements with 'not_' prefix.
|
1391
1764
|
|
1392
|
-
|
1765
|
+
class Foo
|
1766
|
+
enum status: [:sent, :not_sent]
|
1767
|
+
end
|
1393
1768
|
|
1394
|
-
*
|
1769
|
+
*Edu Depetris*
|
1395
1770
|
|
1396
|
-
*
|
1771
|
+
* Make currency symbols optional for money column type in PostgreSQL.
|
1397
1772
|
|
1398
|
-
|
1773
|
+
*Joel Schneider*
|
1399
1774
|
|
1400
|
-
|
1775
|
+
* Add support for beginless ranges, introduced in Ruby 2.7.
|
1401
1776
|
|
1402
|
-
*
|
1777
|
+
*Josh Goodall*
|
1403
1778
|
|
1404
|
-
|
1779
|
+
* Add `database_exists?` method to connection adapters to check if a database exists.
|
1405
1780
|
|
1406
|
-
*
|
1407
|
-
use loaded association ids if present.
|
1781
|
+
*Guilherme Mansur*
|
1408
1782
|
|
1409
|
-
|
1783
|
+
* Loading the schema for a model that has no `table_name` raises a `TableNotSpecified` error.
|
1410
1784
|
|
1411
|
-
*
|
1785
|
+
*Guilherme Mansur*, *Eugene Kenny*
|
1412
1786
|
|
1413
|
-
|
1787
|
+
* PostgreSQL: Fix GROUP BY with ORDER BY virtual count attribute.
|
1414
1788
|
|
1415
|
-
|
1789
|
+
Fixes #36022.
|
1416
1790
|
|
1417
|
-
|
1791
|
+
*Ryuta Kamizono*
|
1418
1792
|
|
1419
|
-
|
1793
|
+
* Make ActiveRecord `ConnectionPool.connections` method thread-safe.
|
1420
1794
|
|
1421
|
-
|
1795
|
+
Fixes #36465.
|
1422
1796
|
|
1423
|
-
*
|
1797
|
+
*Jeff Doering*
|
1424
1798
|
|
1425
|
-
|
1799
|
+
* Add support for multiple databases to `rails db:abort_if_pending_migrations`.
|
1426
1800
|
|
1427
|
-
*
|
1801
|
+
*Mark Lee*
|
1428
1802
|
|
1429
|
-
|
1803
|
+
* Fix sqlite3 collation parsing when using decimal columns.
|
1430
1804
|
|
1431
|
-
*
|
1805
|
+
*Martin R. Schuster*
|
1432
1806
|
|
1433
|
-
|
1807
|
+
* Fix invalid schema when primary key column has a comment.
|
1434
1808
|
|
1435
|
-
|
1809
|
+
Fixes #29966.
|
1436
1810
|
|
1437
|
-
*
|
1811
|
+
*Guilherme Goettems Schneider*
|
1438
1812
|
|
1439
|
-
*
|
1440
|
-
`ActiveRecord::Base.find_or_create_by`/`!` by leaning on unique constraints in the database.
|
1813
|
+
* Fix table comment also being applied to the primary key column.
|
1441
1814
|
|
1442
|
-
*
|
1815
|
+
*Guilherme Goettems Schneider*
|
1443
1816
|
|
1444
|
-
*
|
1817
|
+
* Allow generated `create_table` migrations to include or skip timestamps.
|
1445
1818
|
|
1446
|
-
*
|
1819
|
+
*Michael Duchemin*
|
1447
1820
|
|
1448
1821
|
|
1449
|
-
Please check [
|
1822
|
+
Please check [6-0-stable](https://github.com/rails/rails/blob/6-0-stable/activerecord/CHANGELOG.md) for previous changes.
|