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