activerecord 6.0.3 → 6.1.3
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of activerecord might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/CHANGELOG.md +968 -682
- data/MIT-LICENSE +1 -1
- data/README.rdoc +3 -3
- data/lib/active_record.rb +7 -14
- data/lib/active_record/aggregations.rb +5 -5
- data/lib/active_record/association_relation.rb +30 -12
- data/lib/active_record/associations.rb +118 -11
- data/lib/active_record/associations/alias_tracker.rb +19 -15
- data/lib/active_record/associations/association.rb +44 -28
- data/lib/active_record/associations/association_scope.rb +19 -15
- data/lib/active_record/associations/belongs_to_association.rb +22 -8
- 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 +19 -6
- data/lib/active_record/associations/collection_proxy.rb +13 -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.rb +72 -50
- data/lib/active_record/associations/join_dependency/join_association.rb +39 -16
- data/lib/active_record/associations/join_dependency/join_part.rb +3 -3
- data/lib/active_record/associations/preloader.rb +11 -5
- data/lib/active_record/associations/preloader/association.rb +51 -25
- data/lib/active_record/associations/preloader/through_association.rb +2 -2
- data/lib/active_record/associations/singular_association.rb +1 -1
- data/lib/active_record/associations/through_association.rb +1 -1
- data/lib/active_record/attribute_assignment.rb +10 -8
- data/lib/active_record/attribute_methods.rb +64 -54
- 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/attributes.rb +33 -8
- data/lib/active_record/autosave_association.rb +57 -40
- 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.rb +50 -0
- data/lib/active_record/connection_adapters/abstract/connection_pool.rb +191 -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 +116 -27
- 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 +80 -32
- data/lib/active_record/connection_adapters/abstract_adapter.rb +54 -72
- data/lib/active_record/connection_adapters/abstract_mysql_adapter.rb +129 -88
- 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 +31 -0
- data/lib/active_record/connection_adapters/mysql/database_statements.rb +23 -25
- 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 +11 -7
- 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 +43 -0
- data/lib/active_record/connection_adapters/postgresql/column.rb +24 -1
- data/lib/active_record/connection_adapters/postgresql/database_statements.rb +13 -54
- data/lib/active_record/connection_adapters/postgresql/oid.rb +2 -0
- 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 +10 -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/money.rb +2 -2
- data/lib/active_record/connection_adapters/postgresql/oid/point.rb +2 -2
- data/lib/active_record/connection_adapters/postgresql/oid/range.rb +24 -5
- data/lib/active_record/connection_adapters/postgresql/oid/uuid.rb +11 -1
- data/lib/active_record/connection_adapters/postgresql/quoting.rb +4 -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 +74 -63
- data/lib/active_record/connection_adapters/schema_cache.rb +98 -15
- data/lib/active_record/connection_adapters/sql_type_metadata.rb +10 -0
- data/lib/active_record/connection_adapters/sqlite3/database_statements.rb +31 -6
- 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 +37 -4
- data/lib/active_record/connection_adapters/sqlite3_adapter.rb +49 -50
- data/lib/active_record/connection_handling.rb +218 -71
- data/lib/active_record/core.rb +245 -61
- data/lib/active_record/database_configurations.rb +124 -85
- data/lib/active_record/database_configurations/connection_url_resolver.rb +98 -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/delegated_type.rb +209 -0
- data/lib/active_record/destroy_association_async_job.rb +36 -0
- data/lib/active_record/enum.rb +82 -38
- 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 +1 -1
- data/lib/active_record/inheritance.rb +40 -18
- data/lib/active_record/insert_all.rb +35 -6
- data/lib/active_record/integration.rb +3 -5
- data/lib/active_record/internal_metadata.rb +16 -7
- data/lib/active_record/legacy_yaml_adapter.rb +7 -3
- data/lib/active_record/locking/optimistic.rb +33 -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.rb +4 -1
- data/lib/active_record/middleware/database_selector/resolver.rb +5 -0
- data/lib/active_record/middleware/database_selector/resolver/session.rb +3 -0
- data/lib/active_record/migration.rb +114 -84
- data/lib/active_record/migration/command_recorder.rb +47 -27
- data/lib/active_record/migration/compatibility.rb +68 -17
- data/lib/active_record/model_schema.rb +117 -13
- 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 +276 -99
- data/lib/active_record/readonly_attributes.rb +4 -0
- data/lib/active_record/reflection.rb +71 -57
- data/lib/active_record/relation.rb +95 -67
- data/lib/active_record/relation/batches.rb +38 -31
- data/lib/active_record/relation/batches/batch_enumerator.rb +25 -9
- data/lib/active_record/relation/calculations.rb +101 -44
- data/lib/active_record/relation/delegation.rb +2 -1
- data/lib/active_record/relation/finder_methods.rb +45 -15
- data/lib/active_record/relation/from_clause.rb +1 -1
- data/lib/active_record/relation/merger.rb +27 -25
- data/lib/active_record/relation/predicate_builder.rb +61 -38
- 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/query_methods.rb +333 -195
- 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 +107 -60
- 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/named.rb +6 -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 +2 -2
- 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 +37 -16
- 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.rb +8 -1
- data/lib/active_record/type/serialized.rb +6 -2
- data/lib/active_record/type/time.rb +10 -0
- 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.rb +1 -0
- data/lib/active_record/validations/numericality.rb +35 -0
- data/lib/active_record/validations/uniqueness.rb +24 -4
- data/lib/arel.rb +5 -13
- 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.rb +3 -1
- 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 +72 -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/predications.rb +12 -18
- data/lib/arel/select_manager.rb +1 -2
- data/lib/arel/table.rb +13 -5
- data/lib/arel/visitors.rb +0 -7
- 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/rails/generators/active_record/migration.rb +6 -1
- 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/model/model_generator.rb +39 -2
- data/lib/rails/generators/active_record/model/templates/abstract_base_class.rb.tt +7 -0
- metadata +28 -29
- 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
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6cdd6094f92ff2d3eef67e5ab7f2a8e2a327fbdffaa1f20182fb5bdb7c803685
|
4
|
+
data.tar.gz: 197e68aa68f0946e9fcd55c7f0c2f41c237777c893b20a3a00affddbcaa1f367
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4b9b18c89048afe658359cd16b4c13c3a1eb87c8dacae3beeaf99338e2e441f64fd96bf569697cd581ea35f3068f33ee7872f733570f621a774c92b04253dc5e
|
7
|
+
data.tar.gz: 4d47d251881e21878596707b1d759f40b8b83a02e759cb1af79d8293498251a6ff3f5b11e4ecdc004ac282c6fc84437bcc60469bf0ed0a880aae1e820e20d4a1
|
data/CHANGELOG.md
CHANGED
@@ -1,1197 +1,1483 @@
|
|
1
|
-
## Rails 6.
|
1
|
+
## Rails 6.1.3 (February 17, 2021) ##
|
2
2
|
|
3
|
-
*
|
3
|
+
* Fix the MySQL adapter to always set the right collation and charset
|
4
|
+
to the connection session.
|
4
5
|
|
5
|
-
|
6
|
+
*Rafael Mendonça França*
|
6
7
|
|
7
|
-
|
8
|
+
* Fix MySQL adapter handling of time objects when prepared statements
|
9
|
+
are enabled.
|
8
10
|
|
9
|
-
*
|
11
|
+
*Rafael Mendonça França*
|
10
12
|
|
11
|
-
|
13
|
+
* Fix scoping in enum fields using conditions that would generate
|
14
|
+
an `IN` clause.
|
12
15
|
|
13
|
-
*
|
16
|
+
*Ryuta Kamizono*
|
14
17
|
|
15
|
-
|
18
|
+
* Skip optimised #exist? query when #include? is called on a relation
|
19
|
+
with a having clause
|
16
20
|
|
17
|
-
|
21
|
+
Relations that have aliased select values AND a having clause that
|
22
|
+
references an aliased select value would generate an error when
|
23
|
+
#include? was called, due to an optimisation that would generate
|
24
|
+
call #exists? on the relation instead, which effectively alters
|
25
|
+
the select values of the query (and thus removes the aliased select
|
26
|
+
values), but leaves the having clause intact. Because the having
|
27
|
+
clause is then referencing an aliased column that is no longer
|
28
|
+
present in the simplified query, an ActiveRecord::InvalidStatement
|
29
|
+
error was raised.
|
18
30
|
|
19
|
-
|
31
|
+
An sample query affected by this problem:
|
20
32
|
|
21
|
-
|
33
|
+
```ruby
|
34
|
+
Author.select('COUNT(*) as total_posts', 'authors.*')
|
35
|
+
.joins(:posts)
|
36
|
+
.group(:id)
|
37
|
+
.having('total_posts > 2')
|
38
|
+
.include?(Author.first)
|
39
|
+
```
|
22
40
|
|
23
|
-
|
41
|
+
This change adds an addition check to the condition that skips the
|
42
|
+
simplified #exists? query, which simply checks for the presence of
|
43
|
+
a having clause.
|
24
44
|
|
25
|
-
|
45
|
+
Fixes #41417
|
26
46
|
|
27
|
-
*
|
47
|
+
*Michael Smart*
|
28
48
|
|
29
|
-
*
|
49
|
+
* Increment postgres prepared statement counter before making a prepared statement, so if the statement is aborted
|
50
|
+
without Rails knowledge (e.g., if app gets kill -9d during long-running query or due to Rack::Timeout), app won't end
|
51
|
+
up in perpetual crash state for being inconsistent with Postgres.
|
30
52
|
|
31
|
-
|
53
|
+
*wbharding*, *Martin Tepper*
|
32
54
|
|
33
|
-
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.
|
34
55
|
|
35
|
-
|
56
|
+
## Rails 6.1.2.1 (February 10, 2021) ##
|
36
57
|
|
37
|
-
*
|
58
|
+
* Fix possible DoS vector in PostgreSQL money type
|
38
59
|
|
39
|
-
|
60
|
+
Carefully crafted input can cause a DoS via the regular expressions used
|
61
|
+
for validating the money format in the PostgreSQL adapter. This patch
|
62
|
+
fixes the regexp.
|
40
63
|
|
41
|
-
|
64
|
+
Thanks to @dee-see from Hackerone for this patch!
|
42
65
|
|
43
|
-
|
44
|
-
ActiveRecord::Relation#cache_key_with_version. This method will be used by
|
45
|
-
ActionController::ConditionalGet to ensure that when collection cache versioning
|
46
|
-
is enabled, requests using ConditionalGet don't return the same ETag header
|
47
|
-
after a collection is modified. Fixes #38078.
|
66
|
+
[CVE-2021-22880]
|
48
67
|
|
49
|
-
*Aaron
|
68
|
+
*Aaron Patterson*
|
50
69
|
|
51
|
-
* A database URL can now contain a querystring value that contains an equal sign. This is needed to support passing PostgresSQL `options`.
|
52
70
|
|
53
|
-
|
71
|
+
## Rails 6.1.2 (February 09, 2021) ##
|
54
72
|
|
55
|
-
*
|
73
|
+
* Fix timestamp type for sqlite3.
|
56
74
|
|
57
|
-
|
75
|
+
*Eileen M. Uchitelle*
|
58
76
|
|
59
|
-
|
77
|
+
* Make destroy async transactional.
|
60
78
|
|
79
|
+
An active record rollback could occur while enqueuing a job. In this
|
80
|
+
case the job would enqueue even though the database deletion
|
81
|
+
rolledback putting things in a funky state.
|
61
82
|
|
62
|
-
|
83
|
+
Now the jobs are only enqueued until after the db transaction has been committed.
|
63
84
|
|
64
|
-
*
|
85
|
+
*Cory Gwin*
|
65
86
|
|
87
|
+
* Fix malformed packet error in MySQL statement for connection configuration.
|
66
88
|
|
67
|
-
|
89
|
+
*robinroestenburg*
|
68
90
|
|
69
|
-
*
|
91
|
+
* Connection specification now passes the "url" key as a configuration for the
|
92
|
+
adapter if the "url" protocol is "jdbc", "http", or "https". Previously only
|
93
|
+
urls with the "jdbc" prefix were passed to the Active Record Adapter, others
|
94
|
+
are assumed to be adapter specification urls.
|
70
95
|
|
96
|
+
Fixes #41137.
|
71
97
|
|
72
|
-
|
98
|
+
*Jonathan Bracy*
|
73
99
|
|
74
|
-
*
|
75
|
-
transactional tests for the same database.
|
100
|
+
* Fix granular connection swapping when there are multiple abstract classes.
|
76
101
|
|
77
|
-
*
|
102
|
+
*Eileen M. Uchitelle*
|
78
103
|
|
79
|
-
* Fix
|
80
|
-
but not the entire collection.
|
104
|
+
* Fix `find_by` with custom primary key for belongs_to association.
|
81
105
|
|
82
|
-
*
|
106
|
+
*Ryuta Kamizono*
|
83
107
|
|
84
|
-
*
|
108
|
+
* Add support for `rails console --sandbox` for multiple database applications.
|
85
109
|
|
86
|
-
*
|
110
|
+
*alpaca-tc*
|
87
111
|
|
88
|
-
*
|
112
|
+
* Fix `where` on polymorphic association with empty array.
|
89
113
|
|
90
|
-
|
91
|
-
doing a relation query like `where.not(relation: { ... })`
|
92
|
-
wouldn't be properly deprecated and `where.not` would work as
|
93
|
-
NAND instead.
|
114
|
+
*Ryuta Kamizono*
|
94
115
|
|
95
|
-
|
116
|
+
* Fix preventing writes for `ApplicationRecord`.
|
117
|
+
|
118
|
+
*Eileen M. Uchitelle*
|
96
119
|
|
97
|
-
* Fix `db:migrate` task with multiple databases to restore the connection
|
98
|
-
to the previous database.
|
99
120
|
|
100
|
-
|
101
|
-
resulting in the last one to be used by subsequent rake tasks.
|
102
|
-
We should reestablish a connection to the connection that was
|
103
|
-
established before the migrate tasks was run
|
121
|
+
## Rails 6.1.1 (January 07, 2021) ##
|
104
122
|
|
105
|
-
|
123
|
+
* Fix fixtures loading when strict loading is enabled for the association.
|
106
124
|
|
107
|
-
*
|
125
|
+
*Alex Ghiculescu*
|
126
|
+
|
127
|
+
* Fix `where` with custom primary key for belongs_to association.
|
108
128
|
|
109
129
|
*Ryuta Kamizono*
|
110
130
|
|
131
|
+
* Fix `where` with aliased associations.
|
111
132
|
|
112
|
-
|
133
|
+
*Ryuta Kamizono*
|
113
134
|
|
114
|
-
*
|
135
|
+
* Fix `composed_of` with symbol mapping.
|
115
136
|
|
116
|
-
|
137
|
+
*Ryuta Kamizono*
|
117
138
|
|
118
|
-
*
|
139
|
+
* Don't skip money's type cast for pluck and calculations.
|
119
140
|
|
120
|
-
|
141
|
+
*Ryuta Kamizono*
|
121
142
|
|
122
|
-
*
|
143
|
+
* Fix `where` on polymorphic association with non Active Record object.
|
123
144
|
|
124
|
-
|
145
|
+
*Ryuta Kamizono*
|
125
146
|
|
126
|
-
*
|
127
|
-
context is used.
|
147
|
+
* Make sure `db:prepare` works even the schema file doesn't exist.
|
128
148
|
|
129
|
-
|
149
|
+
*Rafael Mendonça França*
|
130
150
|
|
131
|
-
*
|
132
|
-
their payloads.
|
151
|
+
* Fix complicated `has_many :through` with nested where condition.
|
133
152
|
|
134
|
-
|
153
|
+
*Ryuta Kamizono*
|
135
154
|
|
136
|
-
*
|
137
|
-
previously-committed record state.
|
155
|
+
* Handle STI models for `has_many dependent: :destroy_async`.
|
138
156
|
|
139
|
-
|
157
|
+
*Muhammad Usman*
|
140
158
|
|
141
|
-
*
|
159
|
+
* Restore possibility of passing `false` to :polymorphic option of `belongs_to`.
|
142
160
|
|
143
|
-
|
161
|
+
Previously, passing `false` would trigger the option validation logic
|
162
|
+
to throw an error saying :polymorphic would not be a valid option.
|
144
163
|
|
145
|
-
*
|
164
|
+
*glaszig*
|
146
165
|
|
147
|
-
|
166
|
+
* Allow adding nonnamed expression indexes to be revertible.
|
148
167
|
|
149
|
-
|
168
|
+
Fixes #40732.
|
150
169
|
|
151
|
-
|
170
|
+
Previously, the following code would raise an error, when executed while rolling back,
|
171
|
+
and the index name should be specified explicitly. Now, the index name is inferred
|
172
|
+
automatically.
|
152
173
|
|
153
|
-
|
154
|
-
|
174
|
+
```ruby
|
175
|
+
add_index(:items, "to_tsvector('english', description)")
|
176
|
+
```
|
155
177
|
|
156
|
-
*
|
178
|
+
*fatkodima*
|
157
179
|
|
158
|
-
* The memoized result of `ActiveRecord::Relation#take` is properly cleared
|
159
|
-
when `ActiveRecord::Relation#reset` or `ActiveRecord::Relation#reload`
|
160
|
-
is called.
|
161
180
|
|
162
|
-
|
181
|
+
## Rails 6.1.0 (December 09, 2020) ##
|
163
182
|
|
164
|
-
*
|
183
|
+
* Only warn about negative enums if a positive form that would cause conflicts exists.
|
165
184
|
|
166
|
-
|
185
|
+
Fixes #39065.
|
167
186
|
|
168
|
-
*
|
187
|
+
*Alex Ghiculescu*
|
169
188
|
|
170
|
-
|
189
|
+
* Change `attribute_for_inspect` to take `filter_attributes` in consideration.
|
171
190
|
|
172
|
-
*
|
191
|
+
*Rafael Mendonça França*
|
173
192
|
|
174
|
-
|
193
|
+
* Fix odd behavior of inverse_of with multiple belongs_to to same class.
|
175
194
|
|
176
|
-
|
195
|
+
Fixes #35204.
|
177
196
|
|
178
|
-
*
|
197
|
+
*Tomoyuki Kai*
|
179
198
|
|
180
|
-
*
|
199
|
+
* Build predicate conditions with objects that delegate `#id` and primary key:
|
181
200
|
|
182
|
-
|
201
|
+
```ruby
|
202
|
+
class AdminAuthor
|
203
|
+
delegate_missing_to :@author
|
183
204
|
|
205
|
+
def initialize(author)
|
206
|
+
@author = author
|
207
|
+
end
|
208
|
+
end
|
184
209
|
|
185
|
-
|
210
|
+
Post.where(author: AdminAuthor.new(author))
|
211
|
+
```
|
186
212
|
|
187
|
-
*
|
213
|
+
*Sean Doyle*
|
188
214
|
|
189
|
-
|
215
|
+
* Add `connected_to_many` API.
|
190
216
|
|
191
|
-
|
217
|
+
This API allows applications to connect to multiple databases at once without switching all of them or implementing a deeply nested stack.
|
192
218
|
|
193
|
-
|
219
|
+
Before:
|
194
220
|
|
195
|
-
|
221
|
+
AnimalsRecord.connected_to(role: :reading) do
|
222
|
+
MealsRecord.connected_to(role: :reading) do
|
223
|
+
Dog.first # read from animals replica
|
224
|
+
Dinner.first # read from meals replica
|
225
|
+
Person.first # read from primary writer
|
226
|
+
end
|
227
|
+
end
|
196
228
|
|
197
|
-
|
229
|
+
After:
|
198
230
|
|
199
|
-
|
200
|
-
|
231
|
+
ActiveRecord::Base.connected_to_many([AnimalsRecord, MealsRecord], role: :reading) do
|
232
|
+
Dog.first # read from animals replica
|
233
|
+
Dinner.first # read from meals replica
|
234
|
+
Person.first # read from primary writer
|
201
235
|
end
|
202
236
|
|
203
|
-
*
|
237
|
+
*Eileen M. Uchitelle*, *John Crepezzi*
|
204
238
|
|
205
|
-
*
|
239
|
+
* Add option to raise or log for `ActiveRecord::StrictLoadingViolationError`.
|
206
240
|
|
207
|
-
|
241
|
+
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.
|
208
242
|
|
243
|
+
Set `config.active_record.action_on_strict_loading_violation` to `:log` errors instead of raising.
|
209
244
|
|
210
|
-
|
245
|
+
*Eileen M. Uchitelle*
|
211
246
|
|
212
|
-
*
|
247
|
+
* Allow the inverse of a `has_one` association that was previously autosaved to be loaded.
|
213
248
|
|
214
|
-
|
249
|
+
Fixes #34255.
|
215
250
|
|
216
|
-
*
|
251
|
+
*Steven Weber*
|
217
252
|
|
218
|
-
|
253
|
+
* Optimise the length of index names for polymorphic references by using the reference name rather than the type and id column names.
|
219
254
|
|
220
|
-
|
255
|
+
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.
|
221
256
|
|
222
|
-
|
257
|
+
This change reduces the chance of that happening by using the reference name, e.g. `index_my_table_on_my_reference`.
|
223
258
|
|
224
|
-
Fixes #
|
259
|
+
Fixes #38655.
|
225
260
|
|
226
|
-
*
|
261
|
+
*Luke Redpath*
|
227
262
|
|
228
|
-
*
|
263
|
+
* MySQL: Uniqueness validator now respects default database collation,
|
264
|
+
no longer enforce case sensitive comparison by default.
|
229
265
|
|
230
|
-
*
|
266
|
+
*Ryuta Kamizono*
|
231
267
|
|
232
|
-
*
|
268
|
+
* Remove deprecated methods from `ActiveRecord::ConnectionAdapters::DatabaseLimits`.
|
233
269
|
|
234
|
-
|
270
|
+
`column_name_length`
|
271
|
+
`table_name_length`
|
272
|
+
`columns_per_table`
|
273
|
+
`indexes_per_table`
|
274
|
+
`columns_per_multicolumn_index`
|
275
|
+
`sql_query_length`
|
276
|
+
`joins_per_query`
|
235
277
|
|
236
|
-
*
|
278
|
+
*Rafael Mendonça França*
|
237
279
|
|
238
|
-
*
|
280
|
+
* Remove deprecated `ActiveRecord::ConnectionAdapters::AbstractAdapter#supports_multi_insert?`.
|
239
281
|
|
240
|
-
*
|
282
|
+
*Rafael Mendonça França*
|
241
283
|
|
242
|
-
*
|
284
|
+
* Remove deprecated `ActiveRecord::ConnectionAdapters::AbstractAdapter#supports_foreign_keys_in_create?`.
|
243
285
|
|
244
|
-
|
286
|
+
*Rafael Mendonça França*
|
245
287
|
|
246
|
-
|
288
|
+
* Remove deprecated `ActiveRecord::ConnectionAdapters::PostgreSQLAdapter#supports_ranges?`.
|
247
289
|
|
290
|
+
*Rafael Mendonça França*
|
248
291
|
|
249
|
-
|
292
|
+
* Remove deprecated `ActiveRecord::Base#update_attributes` and `ActiveRecord::Base#update_attributes!`.
|
250
293
|
|
251
|
-
*
|
294
|
+
*Rafael Mendonça França*
|
252
295
|
|
253
|
-
|
296
|
+
* Remove deprecated `migrations_path` argument in `ActiveRecord::ConnectionAdapter::SchemaStatements#assume_migrated_upto_version`.
|
254
297
|
|
255
|
-
*
|
298
|
+
*Rafael Mendonça França*
|
256
299
|
|
257
|
-
|
258
|
-
all = [treasures(:diamond), treasures(:sapphire), cars(:honda), treasures(:sapphire)]
|
259
|
-
assert_equal all, PriceEstimate.all.map(&:estimate_of)
|
260
|
-
```
|
300
|
+
* Remove deprecated `config.active_record.sqlite3.represent_boolean_as_integer`.
|
261
301
|
|
262
|
-
|
302
|
+
*Rafael Mendonça França*
|
263
303
|
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
nor = all.reject { |e|
|
268
|
-
e.estimate_of_type == sapphire.class.polymorphic_name
|
269
|
-
}.reject { |e|
|
270
|
-
e.estimate_of_id == sapphire.id
|
271
|
-
}
|
272
|
-
assert_equal [cars(:honda)], nor
|
273
|
-
|
274
|
-
without_sapphire = PriceEstimate.where.not(
|
275
|
-
estimate_of_type: sapphire.class.polymorphic_name, estimate_of_id: sapphire.id
|
276
|
-
)
|
277
|
-
assert_equal nor, without_sapphire.map(&:estimate_of)
|
278
|
-
```
|
304
|
+
* `relation.create` does no longer leak scope to class level querying methods
|
305
|
+
in initialization block and callbacks.
|
279
306
|
|
280
|
-
|
307
|
+
Before:
|
281
308
|
|
282
|
-
|
283
|
-
|
309
|
+
User.where(name: "John").create do |john|
|
310
|
+
User.find_by(name: "David") # => nil
|
311
|
+
end
|
284
312
|
|
285
|
-
|
286
|
-
assert_equal [treasures(:diamond), cars(:honda)], nand
|
313
|
+
After:
|
287
314
|
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
assert_equal nand, without_sapphire.map(&:estimate_of)
|
292
|
-
```
|
315
|
+
User.where(name: "John").create do |john|
|
316
|
+
User.find_by(name: "David") # => #<User name: "David", ...>
|
317
|
+
end
|
293
318
|
|
294
319
|
*Ryuta Kamizono*
|
295
320
|
|
296
|
-
*
|
321
|
+
* Named scope chain does no longer leak scope to class level querying methods.
|
297
322
|
|
298
|
-
|
323
|
+
class User < ActiveRecord::Base
|
324
|
+
scope :david, -> { User.where(name: "David") }
|
325
|
+
end
|
326
|
+
|
327
|
+
Before:
|
328
|
+
|
329
|
+
User.where(name: "John").david
|
330
|
+
# SELECT * FROM users WHERE name = 'John' AND name = 'David'
|
331
|
+
|
332
|
+
After:
|
333
|
+
|
334
|
+
User.where(name: "John").david
|
335
|
+
# SELECT * FROM users WHERE name = 'David'
|
299
336
|
|
300
337
|
*Ryuta Kamizono*
|
301
338
|
|
302
|
-
*
|
303
|
-
the versioned entries in `ActiveSupport::Cache`. This also means that
|
304
|
-
`ActiveRecord::Relation#cache_key` will now return a stable key that does not
|
305
|
-
include the max timestamp or count any more.
|
339
|
+
* Remove deprecated methods from `ActiveRecord::DatabaseConfigurations`.
|
306
340
|
|
307
|
-
|
308
|
-
|
309
|
-
|
341
|
+
`fetch`
|
342
|
+
`each`
|
343
|
+
`first`
|
344
|
+
`values`
|
345
|
+
`[]=`
|
310
346
|
|
311
|
-
*
|
347
|
+
*Rafael Mendonça França*
|
312
348
|
|
313
|
-
*
|
349
|
+
* `where.not` now generates NAND predicates instead of NOR.
|
314
350
|
|
315
|
-
|
351
|
+
Before:
|
316
352
|
|
317
|
-
|
353
|
+
User.where.not(name: "Jon", role: "admin")
|
354
|
+
# SELECT * FROM users WHERE name != 'Jon' AND role != 'admin'
|
318
355
|
|
319
|
-
|
320
|
-
`to` and `from` options are specified.
|
356
|
+
After:
|
321
357
|
|
322
|
-
|
358
|
+
User.where.not(name: "Jon", role: "admin")
|
359
|
+
# SELECT * FROM users WHERE NOT (name == 'Jon' AND role == 'admin')
|
323
360
|
|
324
|
-
*
|
361
|
+
*Rafael Mendonça França*
|
325
362
|
|
326
|
-
|
363
|
+
* Remove deprecated `ActiveRecord::Result#to_hash` method.
|
327
364
|
|
328
|
-
*
|
365
|
+
*Rafael Mendonça França*
|
329
366
|
|
330
|
-
*
|
367
|
+
* Deprecate `ActiveRecord::Base.allow_unsafe_raw_sql`.
|
331
368
|
|
332
|
-
|
333
|
-
associations, the callback for a `has_many` association was run while
|
334
|
-
another instance of the same callback on the same association hadn't
|
335
|
-
finished running. When control returned to the first instance of the
|
336
|
-
callback, the instance variable had changed, and subsequent associated
|
337
|
-
records weren't saved correctly. Specifically, the ID field for the
|
338
|
-
`belongs_to` corresponding to the `has_many` was `nil`.
|
369
|
+
*Rafael Mendonça França*
|
339
370
|
|
340
|
-
|
371
|
+
* Remove deprecated support for using unsafe raw SQL in `ActiveRecord::Relation` methods.
|
341
372
|
|
342
|
-
*
|
373
|
+
*Rafael Mendonça França*
|
343
374
|
|
344
|
-
*
|
375
|
+
* Allow users to silence the "Rails couldn't infer whether you are using multiple databases..."
|
376
|
+
message using `config.active_record.suppress_multiple_database_warning`.
|
345
377
|
|
346
|
-
|
378
|
+
*Omri Gabay*
|
379
|
+
|
380
|
+
* Connections can be granularly switched for abstract classes when `connected_to` is called.
|
381
|
+
|
382
|
+
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.
|
383
|
+
|
384
|
+
Example usage:
|
385
|
+
|
386
|
+
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`.
|
347
387
|
|
348
388
|
```ruby
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
389
|
+
ActiveRecord::Base.connected_to(role: :reading) do
|
390
|
+
User.first # reads from default replica
|
391
|
+
Dog.first # reads from default replica
|
392
|
+
|
393
|
+
AnimalsRecord.connected_to(role: :writing, shard: :one) do
|
394
|
+
User.first # reads from default replica
|
395
|
+
Dog.first # reads from shard one primary
|
396
|
+
end
|
397
|
+
|
398
|
+
User.first # reads from default replica
|
399
|
+
Dog.first # reads from default replica
|
400
|
+
|
401
|
+
ApplicationRecord.connected_to(role: :writing, shard: :two) do
|
402
|
+
User.first # reads from shard two primary
|
403
|
+
Dog.first # reads from default replica
|
404
|
+
end
|
405
|
+
end
|
353
406
|
```
|
354
407
|
|
355
|
-
|
408
|
+
*Eileen M. Uchitelle*, *John Crepezzi*
|
409
|
+
|
410
|
+
* Allow double-dash comment syntax when querying read-only databases
|
411
|
+
|
412
|
+
*James Adam*
|
413
|
+
|
414
|
+
* Add `values_at` method.
|
415
|
+
|
416
|
+
Returns an array containing the values associated with the given methods.
|
356
417
|
|
357
418
|
```ruby
|
358
|
-
|
359
|
-
|
360
|
-
|
361
|
-
add_column :items, :attr4, :datetime, precision: 10 # => ArgumentError
|
419
|
+
topic = Topic.first
|
420
|
+
topic.values_at(:title, :author_name)
|
421
|
+
# => ["Budget", "Jason"]
|
362
422
|
```
|
363
423
|
|
364
|
-
|
424
|
+
Similar to `Hash#values_at` but on an Active Record instance.
|
365
425
|
|
366
|
-
*
|
367
|
-
whether preloaded / eager loaded or not, with the exception of `unscoped`.
|
426
|
+
*Guillaume Briday*
|
368
427
|
|
369
|
-
|
428
|
+
* Fix `read_attribute_before_type_cast` to consider attribute aliases.
|
429
|
+
|
430
|
+
*Marcelo Lauxen*
|
431
|
+
|
432
|
+
* Support passing record to uniqueness validator `:conditions` callable:
|
370
433
|
|
371
434
|
```ruby
|
372
|
-
|
373
|
-
|
374
|
-
|
375
|
-
|
435
|
+
class Article < ApplicationRecord
|
436
|
+
validates_uniqueness_of :title, conditions: ->(article) {
|
437
|
+
published_at = article.published_at
|
438
|
+
where(published_at: published_at.beginning_of_year..published_at.end_of_year)
|
439
|
+
}
|
376
440
|
end
|
377
441
|
```
|
378
442
|
|
379
|
-
|
443
|
+
*Eliot Sykes*
|
444
|
+
|
445
|
+
* `BatchEnumerator#update_all` and `BatchEnumerator#delete_all` now return the
|
446
|
+
total number of rows affected, just like their non-batched counterparts.
|
380
447
|
|
381
448
|
```ruby
|
382
|
-
|
383
|
-
|
384
|
-
|
385
|
-
|
449
|
+
Person.in_batches.update_all("first_name = 'Eugene'") # => 42
|
450
|
+
Person.in_batches.delete_all # => 42
|
451
|
+
```
|
452
|
+
|
453
|
+
Fixes #40287.
|
454
|
+
|
455
|
+
*Eugene Kenny*
|
456
|
+
|
457
|
+
* Add support for PostgreSQL `interval` data type with conversion to
|
458
|
+
`ActiveSupport::Duration` when loading records from database and
|
459
|
+
serialization to ISO 8601 formatted duration string on save.
|
460
|
+
Add support to define a column in migrations and get it in a schema dump.
|
461
|
+
Optional column precision is supported.
|
462
|
+
|
463
|
+
To use this in 6.1, you need to place the next string to your model file:
|
464
|
+
|
465
|
+
attribute :duration, :interval
|
466
|
+
|
467
|
+
To keep old behavior until 6.2 is released:
|
468
|
+
|
469
|
+
attribute :duration, :string
|
470
|
+
|
471
|
+
Example:
|
472
|
+
|
473
|
+
create_table :events do |t|
|
474
|
+
t.string :name
|
475
|
+
t.interval :duration
|
476
|
+
end
|
477
|
+
|
478
|
+
class Event < ApplicationRecord
|
479
|
+
attribute :duration, :interval
|
480
|
+
end
|
481
|
+
|
482
|
+
Event.create!(name: 'Rock Fest', duration: 2.days)
|
483
|
+
Event.last.duration # => 2 days
|
484
|
+
Event.last.duration.iso8601 # => "P2D"
|
485
|
+
Event.new(duration: 'P1DT12H3S').duration # => 1 day, 12 hours, and 3 seconds
|
486
|
+
Event.new(duration: '1 day') # Unknown value will be ignored and NULL will be written to database
|
487
|
+
|
488
|
+
*Andrey Novikov*
|
489
|
+
|
490
|
+
* Allow associations supporting the `dependent:` key to take `dependent: :destroy_async`.
|
491
|
+
|
492
|
+
```ruby
|
493
|
+
class Account < ActiveRecord::Base
|
494
|
+
belongs_to :supplier, dependent: :destroy_async
|
386
495
|
end
|
387
496
|
```
|
388
497
|
|
389
|
-
|
498
|
+
`:destroy_async` will enqueue a job to destroy associated records in the background.
|
390
499
|
|
391
|
-
*
|
500
|
+
*DHH*, *George Claghorn*, *Cory Gwin*, *Rafael Mendonça França*, *Adrianna Chang*
|
392
501
|
|
393
|
-
* Add `rails db:
|
502
|
+
* Add `SKIP_TEST_DATABASE` environment variable to disable modifying the test database when `rails db:create` and `rails db:drop` are called.
|
394
503
|
|
395
|
-
|
504
|
+
*Jason Schweier*
|
396
505
|
|
397
|
-
|
506
|
+
* `connects_to` can only be called on `ActiveRecord::Base` or abstract classes.
|
398
507
|
|
399
|
-
|
508
|
+
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.
|
400
509
|
|
401
|
-
*
|
510
|
+
*Eileen M. Uchitelle*, *John Crepezzi*
|
511
|
+
|
512
|
+
* All connection adapters `execute` now raises `ActiveRecord::ConnectionNotEstablished` rather than
|
513
|
+
`ActiveRecord::StatementInvalid` when they encounter a connection error.
|
514
|
+
|
515
|
+
*Jean Boussier*
|
402
516
|
|
403
|
-
*
|
404
|
-
`
|
517
|
+
* `Mysql2Adapter#quote_string` now raises `ActiveRecord::ConnectionNotEstablished` rather than
|
518
|
+
`ActiveRecord::StatementInvalid` when it can't connect to the MySQL server.
|
405
519
|
|
406
|
-
|
520
|
+
*Jean Boussier*
|
407
521
|
|
408
|
-
|
522
|
+
* Add support for check constraints that are `NOT VALID` via `validate: false` (PostgreSQL-only).
|
409
523
|
|
410
|
-
*
|
524
|
+
*Alex Robbin*
|
411
525
|
|
526
|
+
* Ensure the default configuration is considered primary or first for an environment
|
527
|
+
|
528
|
+
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.
|
529
|
+
|
530
|
+
*Eileen M. Uchitelle*
|
531
|
+
|
532
|
+
* Allow `where` references association names as joined table name aliases.
|
533
|
+
|
534
|
+
```ruby
|
535
|
+
class Comment < ActiveRecord::Base
|
536
|
+
enum label: [:default, :child]
|
537
|
+
has_many :children, class_name: "Comment", foreign_key: :parent_id
|
538
|
+
end
|
539
|
+
|
540
|
+
# ... FROM comments LEFT OUTER JOIN comments children ON ... WHERE children.label = 1
|
541
|
+
Comment.includes(:children).where("children.label": "child")
|
412
542
|
```
|
413
|
-
|
414
|
-
|
543
|
+
|
544
|
+
*Ryuta Kamizono*
|
545
|
+
|
546
|
+
* Support storing demodulized class name for polymorphic type.
|
547
|
+
|
548
|
+
Before Rails 6.1, storing demodulized class name is supported only for STI type
|
549
|
+
by `store_full_sti_class` class attribute.
|
550
|
+
|
551
|
+
Now `store_full_class_name` class attribute can handle both STI and polymorphic types.
|
552
|
+
|
553
|
+
*Ryuta Kamizono*
|
554
|
+
|
555
|
+
* Deprecate `rails db:structure:{load, dump}` tasks and extend
|
556
|
+
`rails db:schema:{load, dump}` tasks to work with either `:ruby` or `:sql` format,
|
557
|
+
depending on `config.active_record.schema_format` configuration value.
|
558
|
+
|
559
|
+
*fatkodima*
|
560
|
+
|
561
|
+
* Respect the `select` values for eager loading.
|
562
|
+
|
563
|
+
```ruby
|
564
|
+
post = Post.select("UPPER(title) AS title").first
|
565
|
+
post.title # => "WELCOME TO THE WEBLOG"
|
566
|
+
post.body # => ActiveModel::MissingAttributeError
|
567
|
+
|
568
|
+
# Rails 6.0 (ignore the `select` values)
|
569
|
+
post = Post.select("UPPER(title) AS title").eager_load(:comments).first
|
570
|
+
post.title # => "Welcome to the weblog"
|
571
|
+
post.body # => "Such a lovely day"
|
572
|
+
|
573
|
+
# Rails 6.1 (respect the `select` values)
|
574
|
+
post = Post.select("UPPER(title) AS title").eager_load(:comments).first
|
575
|
+
post.title # => "WELCOME TO THE WEBLOG"
|
576
|
+
post.body # => ActiveModel::MissingAttributeError
|
415
577
|
```
|
416
578
|
|
417
|
-
*
|
579
|
+
*Ryuta Kamizono*
|
418
580
|
|
419
|
-
*
|
581
|
+
* Allow attribute's default to be configured but keeping its own type.
|
420
582
|
|
421
|
-
|
583
|
+
```ruby
|
584
|
+
class Post < ActiveRecord::Base
|
585
|
+
attribute :written_at, default: -> { Time.now.utc }
|
586
|
+
end
|
587
|
+
|
588
|
+
# Rails 6.0
|
589
|
+
Post.type_for_attribute(:written_at) # => #<Type::Value ... precision: nil, ...>
|
422
590
|
|
591
|
+
# Rails 6.1
|
592
|
+
Post.type_for_attribute(:written_at) # => #<Type::DateTime ... precision: 6, ...>
|
423
593
|
```
|
424
|
-
|
425
|
-
|
594
|
+
|
595
|
+
*Ryuta Kamizono*
|
596
|
+
|
597
|
+
* Allow default to be configured for Enum.
|
598
|
+
|
599
|
+
```ruby
|
600
|
+
class Book < ActiveRecord::Base
|
601
|
+
enum status: [:proposed, :written, :published], _default: :published
|
602
|
+
end
|
603
|
+
|
604
|
+
Book.new.status # => "published"
|
426
605
|
```
|
427
606
|
|
428
|
-
|
607
|
+
*Ryuta Kamizono*
|
429
608
|
|
430
|
-
|
609
|
+
* Deprecate YAML loading from legacy format older than Rails 5.0.
|
431
610
|
|
432
|
-
*
|
611
|
+
*Ryuta Kamizono*
|
433
612
|
|
434
|
-
|
435
|
-
|
613
|
+
* Added the setting `ActiveRecord::Base.immutable_strings_by_default`, which
|
614
|
+
allows you to specify that all string columns should be frozen unless
|
615
|
+
otherwise specified. This will reduce memory pressure for applications which
|
616
|
+
do not generally mutate string properties of Active Record objects.
|
436
617
|
|
437
|
-
|
618
|
+
*Sean Griffin*, *Ryuta Kamizono*
|
438
619
|
|
439
|
-
|
440
|
-
# SELECT /*+ MAX_EXECUTION_TIME(50000) NO_INDEX_MERGE(topics) */ `topics`.* FROM `topics`
|
620
|
+
* Deprecate `map!` and `collect!` on `ActiveRecord::Result`.
|
441
621
|
|
442
|
-
|
622
|
+
*Ryuta Kamizono*
|
443
623
|
|
444
|
-
|
445
|
-
# SELECT /*+ SeqScan(topics) Parallel(topics 8) */ "topics".* FROM "topics"
|
624
|
+
* Support `relation.and` for intersection as Set theory.
|
446
625
|
|
447
|
-
|
626
|
+
```ruby
|
627
|
+
david_and_mary = Author.where(id: [david, mary])
|
628
|
+
mary_and_bob = Author.where(id: [mary, bob])
|
448
629
|
|
449
|
-
|
450
|
-
|
451
|
-
|
452
|
-
|
453
|
-
|
630
|
+
david_and_mary.merge(mary_and_bob) # => [mary, bob]
|
631
|
+
|
632
|
+
david_and_mary.and(mary_and_bob) # => [mary]
|
633
|
+
david_and_mary.or(mary_and_bob) # => [david, mary, bob]
|
634
|
+
```
|
454
635
|
|
455
636
|
*Ryuta Kamizono*
|
456
637
|
|
457
|
-
*
|
638
|
+
* Merging conditions on the same column no longer maintain both conditions,
|
639
|
+
and will be consistently replaced by the latter condition in Rails 6.2.
|
640
|
+
To migrate to Rails 6.2's behavior, use `relation.merge(other, rewhere: true)`.
|
641
|
+
|
642
|
+
```ruby
|
643
|
+
# Rails 6.1 (IN clause is replaced by merger side equality condition)
|
644
|
+
Author.where(id: [david.id, mary.id]).merge(Author.where(id: bob)) # => [bob]
|
645
|
+
|
646
|
+
# Rails 6.1 (both conflict conditions exists, deprecated)
|
647
|
+
Author.where(id: david.id..mary.id).merge(Author.where(id: bob)) # => []
|
458
648
|
|
459
|
-
|
649
|
+
# Rails 6.1 with rewhere to migrate to Rails 6.2's behavior
|
650
|
+
Author.where(id: david.id..mary.id).merge(Author.where(id: bob), rewhere: true) # => [bob]
|
460
651
|
|
652
|
+
# Rails 6.2 (same behavior with IN clause, mergee side condition is consistently replaced)
|
653
|
+
Author.where(id: [david.id, mary.id]).merge(Author.where(id: bob)) # => [bob]
|
654
|
+
Author.where(id: david.id..mary.id).merge(Author.where(id: bob)) # => [bob]
|
461
655
|
```
|
462
|
-
|
463
|
-
|
656
|
+
|
657
|
+
*Ryuta Kamizono*
|
658
|
+
|
659
|
+
* Do not mark Postgresql MAC address and UUID attributes as changed when the assigned value only varies by case.
|
660
|
+
|
661
|
+
*Peter Fry*
|
662
|
+
|
663
|
+
* Resolve issue with insert_all unique_by option when used with expression index.
|
664
|
+
|
665
|
+
When the `:unique_by` option of `ActiveRecord::Persistence.insert_all` and
|
666
|
+
`ActiveRecord::Persistence.upsert_all` was used with the name of an expression index, an error
|
667
|
+
was raised. Adding a guard around the formatting behavior for the `:unique_by` corrects this.
|
668
|
+
|
669
|
+
Usage:
|
670
|
+
|
671
|
+
```ruby
|
672
|
+
create_table :books, id: :integer, force: true do |t|
|
673
|
+
t.column :name, :string
|
674
|
+
t.index "lower(name)", unique: true
|
464
675
|
end
|
465
676
|
|
466
|
-
|
677
|
+
Book.insert_all [{ name: "MyTest" }], unique_by: :index_books_on_lower_name
|
467
678
|
```
|
468
679
|
|
469
|
-
|
680
|
+
Fixes #39516.
|
470
681
|
|
471
|
-
*
|
682
|
+
*Austen Madden*
|
472
683
|
|
473
|
-
|
684
|
+
* Add basic support for CHECK constraints to database migrations.
|
474
685
|
|
475
|
-
|
476
|
-
allowing bulk inserts akin to the bulk updates provided by `update_all` and
|
477
|
-
bulk deletes by `delete_all`.
|
686
|
+
Usage:
|
478
687
|
|
479
|
-
|
480
|
-
|
481
|
-
|
688
|
+
```ruby
|
689
|
+
add_check_constraint :products, "price > 0", name: "price_check"
|
690
|
+
remove_check_constraint :products, name: "price_check"
|
691
|
+
```
|
482
692
|
|
483
|
-
*
|
693
|
+
*fatkodima*
|
484
694
|
|
485
|
-
* Add `
|
486
|
-
for
|
695
|
+
* Add `ActiveRecord::Base.strict_loading_by_default` and `ActiveRecord::Base.strict_loading_by_default=`
|
696
|
+
to enable/disable strict_loading mode by default for a model. The configuration's value is
|
697
|
+
inheritable by subclasses, but they can override that value and it will not impact parent class.
|
487
698
|
|
488
|
-
|
699
|
+
Usage:
|
489
700
|
|
490
|
-
|
701
|
+
```ruby
|
702
|
+
class Developer < ApplicationRecord
|
703
|
+
self.strict_loading_by_default = true
|
491
704
|
|
492
|
-
|
705
|
+
has_many :projects
|
706
|
+
end
|
707
|
+
|
708
|
+
dev = Developer.first
|
709
|
+
dev.projects.first
|
710
|
+
# => ActiveRecord::StrictLoadingViolationError Exception: Developer is marked as strict_loading and Project cannot be lazily loaded.
|
711
|
+
```
|
493
712
|
|
494
|
-
*
|
713
|
+
*bogdanvlviv*
|
495
714
|
|
496
|
-
|
497
|
-
To continue case sensitive comparison on the case insensitive column,
|
498
|
-
pass `case_sensitive: true` option explicitly to the uniqueness validator.
|
715
|
+
* Deprecate passing an Active Record object to `quote`/`type_cast` directly.
|
499
716
|
|
500
717
|
*Ryuta Kamizono*
|
501
718
|
|
502
|
-
*
|
719
|
+
* Default engine `ENGINE=InnoDB` is no longer dumped to make schema more agnostic.
|
503
720
|
|
504
|
-
|
721
|
+
Before:
|
505
722
|
|
506
|
-
|
723
|
+
```ruby
|
724
|
+
create_table "accounts", options: "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci", force: :cascade do |t|
|
725
|
+
end
|
726
|
+
```
|
507
727
|
|
508
|
-
|
728
|
+
After:
|
509
729
|
|
510
|
-
|
730
|
+
```ruby
|
731
|
+
create_table "accounts", charset: "utf8mb4", collation: "utf8mb4_0900_ai_ci", force: :cascade do |t|
|
732
|
+
end
|
733
|
+
```
|
511
734
|
|
512
|
-
|
513
|
-
enum status: %i[ drafted active trashed ]
|
514
|
-
end
|
735
|
+
*Ryuta Kamizono*
|
515
736
|
|
516
|
-
|
517
|
-
|
518
|
-
Post.not_trashed # => where.not(status: :trashed)
|
737
|
+
* Added delegated type as an alternative to single-table inheritance for representing class hierarchies.
|
738
|
+
See ActiveRecord::DelegatedType for the full description.
|
519
739
|
|
520
740
|
*DHH*
|
521
741
|
|
522
|
-
*
|
742
|
+
* Deprecate aggregations with group by duplicated fields.
|
523
743
|
|
524
|
-
|
744
|
+
To migrate to Rails 6.2's behavior, use `uniq!(:group)` to deduplicate group fields.
|
525
745
|
|
526
|
-
|
746
|
+
```ruby
|
747
|
+
accounts = Account.group(:firm_id)
|
748
|
+
|
749
|
+
# duplicated group fields, deprecated.
|
750
|
+
accounts.merge(accounts.where.not(credit_limit: nil)).sum(:credit_limit)
|
751
|
+
# => {
|
752
|
+
# [1, 1] => 50,
|
753
|
+
# [2, 2] => 60
|
754
|
+
# }
|
755
|
+
|
756
|
+
# use `uniq!(:group)` to deduplicate group fields.
|
757
|
+
accounts.merge(accounts.where.not(credit_limit: nil)).uniq!(:group).sum(:credit_limit)
|
758
|
+
# => {
|
759
|
+
# 1 => 50,
|
760
|
+
# 2 => 60
|
761
|
+
# }
|
762
|
+
```
|
527
763
|
|
764
|
+
*Ryuta Kamizono*
|
528
765
|
|
529
|
-
|
766
|
+
* Deprecate duplicated query annotations.
|
530
767
|
|
531
|
-
|
768
|
+
To migrate to Rails 6.2's behavior, use `uniq!(:annotate)` to deduplicate query annotations.
|
532
769
|
|
770
|
+
```ruby
|
771
|
+
accounts = Account.where(id: [1, 2]).annotate("david and mary")
|
533
772
|
|
534
|
-
|
773
|
+
# duplicated annotations, deprecated.
|
774
|
+
accounts.merge(accounts.rewhere(id: 3))
|
775
|
+
# SELECT accounts.* FROM accounts WHERE accounts.id = 3 /* david and mary */ /* david and mary */
|
535
776
|
|
536
|
-
|
777
|
+
# use `uniq!(:annotate)` to deduplicate annotations.
|
778
|
+
accounts.merge(accounts.rewhere(id: 3)).uniq!(:annotate)
|
779
|
+
# SELECT accounts.* FROM accounts WHERE accounts.id = 3 /* david and mary */
|
780
|
+
```
|
537
781
|
|
538
782
|
*Ryuta Kamizono*
|
539
783
|
|
540
|
-
*
|
784
|
+
* Resolve conflict between counter cache and optimistic locking.
|
541
785
|
|
542
|
-
|
786
|
+
Bump an Active Record instance's lock version after updating its counter
|
787
|
+
cache. This avoids raising an unnecessary `ActiveRecord::StaleObjectError`
|
788
|
+
upon subsequent transactions by maintaining parity with the corresponding
|
789
|
+
database record's `lock_version` column.
|
543
790
|
|
544
|
-
|
791
|
+
Fixes #16449.
|
545
792
|
|
546
|
-
*
|
793
|
+
*Aaron Lipman*
|
547
794
|
|
548
|
-
*
|
795
|
+
* Support merging option `:rewhere` to allow mergee side condition to be replaced exactly.
|
549
796
|
|
550
|
-
|
551
|
-
|
797
|
+
```ruby
|
798
|
+
david_and_mary = Author.where(id: david.id..mary.id)
|
552
799
|
|
553
|
-
|
800
|
+
# both conflict conditions exists
|
801
|
+
david_and_mary.merge(Author.where(id: bob)) # => []
|
554
802
|
|
555
|
-
|
556
|
-
|
803
|
+
# mergee side condition is replaced by rewhere
|
804
|
+
david_and_mary.merge(Author.rewhere(id: bob)) # => [bob]
|
557
805
|
|
558
|
-
|
559
|
-
|
806
|
+
# mergee side condition is replaced by rewhere option
|
807
|
+
david_and_mary.merge(Author.where(id: bob), rewhere: true) # => [bob]
|
808
|
+
```
|
560
809
|
|
561
|
-
|
562
|
-
`delete_all` on the matched records.
|
810
|
+
*Ryuta Kamizono*
|
563
811
|
|
564
|
-
|
812
|
+
* Add support for finding records based on signed ids, which are tamper-proof, verified ids that can be
|
813
|
+
set to expire and scoped with a purpose. This is particularly useful for things like password reset
|
814
|
+
or email verification, where you want the bearer of the signed id to be able to interact with the
|
815
|
+
underlying record, but usually only within a certain time period.
|
565
816
|
|
566
|
-
|
567
|
-
|
817
|
+
```ruby
|
818
|
+
signed_id = User.first.signed_id expires_in: 15.minutes, purpose: :password_reset
|
568
819
|
|
569
|
-
|
570
|
-
david.posts.delete_by(id: [1, 2, 3])
|
820
|
+
User.find_signed signed_id # => nil, since the purpose does not match
|
571
821
|
|
572
|
-
|
822
|
+
travel 16.minutes
|
823
|
+
User.find_signed signed_id, purpose: :password_reset # => nil, since the signed id has expired
|
573
824
|
|
574
|
-
|
825
|
+
travel_back
|
826
|
+
User.find_signed signed_id, purpose: :password_reset # => User.first
|
575
827
|
|
576
|
-
|
828
|
+
User.find_signed! "bad data" # => ActiveSupport::MessageVerifier::InvalidSignature
|
829
|
+
```
|
577
830
|
|
578
|
-
*
|
831
|
+
*DHH*
|
579
832
|
|
580
|
-
*
|
833
|
+
* Support `ALGORITHM = INSTANT` DDL option for index operations on MySQL.
|
581
834
|
|
582
835
|
*Ryuta Kamizono*
|
583
836
|
|
584
|
-
*
|
585
|
-
regarded as leaked. Use `klass.unscoped` to avoid the leaking scope.
|
837
|
+
* Fix index creation to preserve index comment in bulk change table on MySQL.
|
586
838
|
|
587
839
|
*Ryuta Kamizono*
|
588
840
|
|
589
|
-
* Allow
|
841
|
+
* Allow `unscope` to be aware of table name qualified values.
|
842
|
+
|
843
|
+
It is possible to unscope only the column in the specified table.
|
590
844
|
|
591
|
-
|
592
|
-
|
593
|
-
|
845
|
+
```ruby
|
846
|
+
posts = Post.joins(:comments).group(:"posts.hidden")
|
847
|
+
posts = posts.where("posts.hidden": false, "comments.hidden": false)
|
594
848
|
|
595
|
-
|
596
|
-
|
597
|
-
Non-get requests will always write to the primary. The middleware accepts
|
598
|
-
an argument for a Resolver class and an Operations class where you are able
|
599
|
-
to change how the auto-switcher works to be most beneficial for your
|
600
|
-
application.
|
849
|
+
posts.count
|
850
|
+
# => { false => 10 }
|
601
851
|
|
602
|
-
|
603
|
-
|
852
|
+
# unscope both hidden columns
|
853
|
+
posts.unscope(where: :hidden).count
|
854
|
+
# => { false => 11, true => 1 }
|
604
855
|
|
605
|
-
|
606
|
-
|
607
|
-
|
608
|
-
config.active_record.database_resolver_context = ActiveRecord::Middleware::DatabaseSelector::Resolver::Session
|
856
|
+
# unscope only comments.hidden column
|
857
|
+
posts.unscope(where: :"comments.hidden").count
|
858
|
+
# => { false => 11 }
|
609
859
|
```
|
610
860
|
|
611
|
-
|
612
|
-
configuration options:
|
861
|
+
*Ryuta Kamizono*, *Slava Korolev*
|
613
862
|
|
863
|
+
* Fix `rewhere` to truly overwrite collided where clause by new where clause.
|
864
|
+
|
865
|
+
```ruby
|
866
|
+
steve = Person.find_by(name: "Steve")
|
867
|
+
david = Author.find_by(name: "David")
|
868
|
+
|
869
|
+
relation = Essay.where(writer: steve)
|
870
|
+
|
871
|
+
# Before
|
872
|
+
relation.rewhere(writer: david).to_a # => []
|
873
|
+
|
874
|
+
# After
|
875
|
+
relation.rewhere(writer: david).to_a # => [david]
|
614
876
|
```
|
615
|
-
|
616
|
-
|
617
|
-
|
877
|
+
|
878
|
+
*Ryuta Kamizono*
|
879
|
+
|
880
|
+
* Inspect time attributes with subsec and time zone offset.
|
881
|
+
|
882
|
+
```ruby
|
883
|
+
p Knot.create
|
884
|
+
=> #<Knot id: 1, created_at: "2016-05-05 01:29:47.116928000 +0000">
|
618
885
|
```
|
619
886
|
|
620
|
-
*
|
887
|
+
*akinomaeni*, *Jonathan Hefner*
|
621
888
|
|
622
|
-
*
|
889
|
+
* Deprecate passing a column to `type_cast`.
|
623
890
|
|
624
891
|
*Ryuta Kamizono*
|
625
892
|
|
626
|
-
*
|
893
|
+
* Deprecate `in_clause_length` and `allowed_index_name_length` in `DatabaseLimits`.
|
627
894
|
|
628
895
|
*Ryuta Kamizono*
|
629
896
|
|
897
|
+
* Support bulk insert/upsert on relation to preserve scope values.
|
630
898
|
|
631
|
-
|
899
|
+
*Josef Šimánek*, *Ryuta Kamizono*
|
632
900
|
|
633
|
-
*
|
901
|
+
* Preserve column comment value on changing column name on MySQL.
|
634
902
|
|
635
|
-
*
|
903
|
+
*Islam Taha*
|
636
904
|
|
637
|
-
*
|
905
|
+
* Add support for `if_exists` option for removing an index.
|
638
906
|
|
639
|
-
|
907
|
+
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.
|
640
908
|
|
641
|
-
*
|
909
|
+
*Eileen M. Uchitelle*
|
642
910
|
|
643
|
-
|
911
|
+
* Remove ibm_db, informix, mssql, oracle, and oracle12 Arel visitors which are not used in the code base.
|
644
912
|
|
645
|
-
*
|
913
|
+
*Ryuta Kamizono*
|
646
914
|
|
647
|
-
|
915
|
+
* Prevent `build_association` from `touching` a parent record if the record isn't persisted for `has_one` associations.
|
648
916
|
|
649
|
-
|
917
|
+
Fixes #38219.
|
650
918
|
|
651
|
-
*
|
919
|
+
*Josh Brody*
|
652
920
|
|
653
|
-
*
|
921
|
+
* Add support for `if_not_exists` option for adding index.
|
654
922
|
|
655
|
-
|
923
|
+
The `add_index` method respects `if_not_exists` option. If it is set to true
|
924
|
+
index won't be added.
|
656
925
|
|
657
|
-
|
926
|
+
Usage:
|
658
927
|
|
659
|
-
|
928
|
+
```ruby
|
929
|
+
add_index :users, :account_id, if_not_exists: true
|
930
|
+
```
|
660
931
|
|
661
|
-
|
932
|
+
The `if_not_exists` option passed to `create_table` also gets propagated to indexes
|
933
|
+
created within that migration so that if table and its indexes exist then there is no
|
934
|
+
attempt to create them again.
|
662
935
|
|
663
|
-
*
|
936
|
+
*Prathamesh Sonpatki*
|
664
937
|
|
665
|
-
*
|
938
|
+
* Add `ActiveRecord::Base#previously_new_record?` to show if a record was new before the last save.
|
666
939
|
|
667
|
-
*
|
940
|
+
*Tom Ward*
|
668
941
|
|
669
|
-
*
|
942
|
+
* Support descending order for `find_each`, `find_in_batches`, and `in_batches`.
|
670
943
|
|
671
|
-
|
944
|
+
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.
|
672
945
|
|
673
|
-
|
946
|
+
This change allows reversing the order, batching from newest to oldest. This is useful when you need to process newer batches of records first.
|
674
947
|
|
675
|
-
|
948
|
+
Pass `order: :desc` to yield batches in descending order. The default remains `order: :asc`.
|
676
949
|
|
677
|
-
|
950
|
+
```ruby
|
951
|
+
Person.find_each(order: :desc) do |person|
|
952
|
+
person.party_all_night!
|
953
|
+
end
|
954
|
+
```
|
678
955
|
|
679
|
-
*
|
956
|
+
*Alexey Vasiliev*
|
680
957
|
|
681
|
-
*
|
958
|
+
* Fix `insert_all` with enum values.
|
682
959
|
|
683
|
-
|
960
|
+
Fixes #38716.
|
684
961
|
|
685
|
-
*
|
962
|
+
*Joel Blum*
|
686
963
|
|
687
|
-
|
964
|
+
* Add support for `db:rollback:name` for multiple database applications.
|
688
965
|
|
689
|
-
|
966
|
+
Multiple database applications will now raise if `db:rollback` is call and recommend using the `db:rollback:[NAME]` to rollback migrations.
|
690
967
|
|
691
|
-
*
|
968
|
+
*Eileen M. Uchitelle*
|
692
969
|
|
693
|
-
|
970
|
+
* `Relation#pick` now uses already loaded results instead of making another query.
|
694
971
|
|
695
|
-
*
|
972
|
+
*Eugene Kenny*
|
696
973
|
|
697
|
-
|
974
|
+
* Deprecate using `return`, `break` or `throw` to exit a transaction block after writes.
|
698
975
|
|
699
|
-
*
|
976
|
+
*Dylan Thacker-Smith*
|
700
977
|
|
701
|
-
|
978
|
+
* Dump the schema or structure of a database when calling `db:migrate:name`.
|
702
979
|
|
703
|
-
|
980
|
+
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.
|
704
981
|
|
705
|
-
|
706
|
-
format for InnoDB tables. The default setting is `DYNAMIC`.
|
707
|
-
The row format is required for indexing on `varchar(255)` with `utf8mb4` columns.
|
982
|
+
Going forward, calls to `rails db:migrate:name` will dump the schema (or structure) of the database being migrated.
|
708
983
|
|
709
|
-
*
|
984
|
+
*Kyle Thompson*
|
710
985
|
|
711
|
-
*
|
986
|
+
* Reset the `ActiveRecord::Base` connection after `rails db:migrate:name`.
|
712
987
|
|
713
|
-
|
988
|
+
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.
|
714
989
|
|
715
|
-
*
|
990
|
+
*Kyle Thompson*
|
716
991
|
|
717
|
-
|
992
|
+
* Disallow calling `connected_to` on subclasses of `ActiveRecord::Base`.
|
718
993
|
|
719
|
-
|
994
|
+
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.
|
720
995
|
|
721
|
-
*
|
996
|
+
*Eileen M. Uchitelle*, *John Crepezzi*
|
722
997
|
|
723
|
-
*
|
998
|
+
* Add support for horizontal sharding to `connects_to` and `connected_to`.
|
724
999
|
|
725
|
-
|
1000
|
+
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.
|
726
1001
|
|
727
|
-
|
1002
|
+
Usage:
|
728
1003
|
|
729
|
-
|
730
|
-
you're building out multiple databases and want to make sure you're not sending
|
731
|
-
writes when you want a read.
|
1004
|
+
Given the following configuration:
|
732
1005
|
|
733
|
-
|
734
|
-
|
735
|
-
|
1006
|
+
```yaml
|
1007
|
+
# config/database.yml
|
1008
|
+
production:
|
1009
|
+
primary:
|
1010
|
+
database: my_database
|
1011
|
+
primary_shard_one:
|
1012
|
+
database: my_database_shard_one
|
1013
|
+
```
|
736
1014
|
|
737
|
-
|
738
|
-
read-only queries without opening a second connection. One purpose of this is to
|
739
|
-
catch accidental writes, not all writes.
|
1015
|
+
Connect to multiple shards:
|
740
1016
|
|
741
|
-
|
1017
|
+
```ruby
|
1018
|
+
class ApplicationRecord < ActiveRecord::Base
|
1019
|
+
self.abstract_class = true
|
742
1020
|
|
743
|
-
|
1021
|
+
connects_to shards: {
|
1022
|
+
default: { writing: :primary },
|
1023
|
+
shard_one: { writing: :primary_shard_one }
|
1024
|
+
}
|
1025
|
+
```
|
744
1026
|
|
745
|
-
|
1027
|
+
Swap between shards in your controller / model code:
|
746
1028
|
|
747
|
-
|
1029
|
+
```ruby
|
1030
|
+
ActiveRecord::Base.connected_to(shard: :shard_one) do
|
1031
|
+
# Read from shard one
|
1032
|
+
end
|
1033
|
+
```
|
748
1034
|
|
749
|
-
|
1035
|
+
The horizontal sharding API also supports read replicas. See guides for more details.
|
750
1036
|
|
751
|
-
*
|
1037
|
+
*Eileen M. Uchitelle*, *John Crepezzi*
|
752
1038
|
|
753
|
-
*
|
1039
|
+
* Deprecate `spec_name` in favor of `name` on database configurations.
|
754
1040
|
|
755
|
-
|
756
|
-
|
1041
|
+
The accessors for `spec_name` on `configs_for` and `DatabaseConfig` are deprecated. Please use `name` instead.
|
1042
|
+
|
1043
|
+
Deprecated behavior:
|
757
1044
|
|
758
1045
|
```ruby
|
759
|
-
|
760
|
-
|
761
|
-
|
762
|
-
end
|
763
|
-
end
|
1046
|
+
db_config = ActiveRecord::Base.configs_for(env_name: "development", spec_name: "primary")
|
1047
|
+
db_config.spec_name
|
1048
|
+
```
|
764
1049
|
|
765
|
-
|
766
|
-
self.table_name = "developers"
|
1050
|
+
New behavior:
|
767
1051
|
|
768
|
-
|
1052
|
+
```ruby
|
1053
|
+
db_config = ActiveRecord::Base.configs_for(env_name: "development", name: "primary")
|
1054
|
+
db_config.name
|
1055
|
+
```
|
769
1056
|
|
770
|
-
|
771
|
-
end
|
1057
|
+
*Eileen M. Uchitelle*
|
772
1058
|
|
773
|
-
|
774
|
-
developer.update_column :name, "name"
|
1059
|
+
* Add additional database-specific rake tasks for multi-database users.
|
775
1060
|
|
776
|
-
|
777
|
-
|
1061
|
+
Previously, `rails db:create`, `rails db:drop`, and `rails db:migrate` were the only rails tasks that could operate on a single
|
1062
|
+
database. For example:
|
1063
|
+
|
1064
|
+
```
|
1065
|
+
rails db:create
|
1066
|
+
rails db:create:primary
|
1067
|
+
rails db:create:animals
|
1068
|
+
rails db:drop
|
1069
|
+
rails db:drop:primary
|
1070
|
+
rails db:drop:animals
|
1071
|
+
rails db:migrate
|
1072
|
+
rails db:migrate:primary
|
1073
|
+
rails db:migrate:animals
|
778
1074
|
```
|
779
1075
|
|
780
|
-
|
1076
|
+
With these changes, `rails db:schema:dump`, `rails db:schema:load`, `rails db:structure:dump`, `rails db:structure:load` and
|
1077
|
+
`rails db:test:prepare` can additionally operate on a single database. For example:
|
1078
|
+
|
1079
|
+
```
|
1080
|
+
rails db:schema:dump
|
1081
|
+
rails db:schema:dump:primary
|
1082
|
+
rails db:schema:dump:animals
|
1083
|
+
rails db:schema:load
|
1084
|
+
rails db:schema:load:primary
|
1085
|
+
rails db:schema:load:animals
|
1086
|
+
rails db:structure:dump
|
1087
|
+
rails db:structure:dump:primary
|
1088
|
+
rails db:structure:dump:animals
|
1089
|
+
rails db:structure:load
|
1090
|
+
rails db:structure:load:primary
|
1091
|
+
rails db:structure:load:animals
|
1092
|
+
rails db:test:prepare
|
1093
|
+
rails db:test:prepare:primary
|
1094
|
+
rails db:test:prepare:animals
|
1095
|
+
```
|
781
1096
|
|
782
|
-
*
|
1097
|
+
*Kyle Thompson*
|
783
1098
|
|
784
|
-
|
785
|
-
explicit order clause, ActiveRecord sorts records by primary key. This can
|
786
|
-
result in unpredictable and surprising behaviour when the primary key is
|
787
|
-
not an auto-incrementing integer, for example when it's a UUID. This change
|
788
|
-
makes it possible to override the column used for implicit ordering such
|
789
|
-
that `first` and `last` will return more predictable results.
|
1099
|
+
* Add support for `strict_loading` mode on association declarations.
|
790
1100
|
|
791
|
-
|
1101
|
+
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.
|
792
1102
|
|
793
|
-
|
794
|
-
self.implicit_order_column = "created_at"
|
795
|
-
end
|
1103
|
+
Usage:
|
796
1104
|
|
797
|
-
|
1105
|
+
```ruby
|
1106
|
+
class Developer < ApplicationRecord
|
1107
|
+
has_many :projects, strict_loading: true
|
1108
|
+
end
|
798
1109
|
|
799
|
-
|
1110
|
+
dev = Developer.first
|
1111
|
+
dev.projects.first
|
1112
|
+
# => ActiveRecord::StrictLoadingViolationError: The projects association is marked as strict_loading and cannot be lazily loaded.
|
1113
|
+
```
|
800
1114
|
|
801
|
-
*
|
1115
|
+
*Kevin Deisz*
|
802
1116
|
|
803
|
-
*
|
1117
|
+
* Add support for `strict_loading` mode to prevent lazy loading of records.
|
804
1118
|
|
805
|
-
|
1119
|
+
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.
|
806
1120
|
|
807
|
-
|
1121
|
+
Usage:
|
808
1122
|
|
809
|
-
|
1123
|
+
```ruby
|
1124
|
+
dev = Developer.strict_loading.first
|
1125
|
+
dev.audit_logs.to_a
|
1126
|
+
# => ActiveRecord::StrictLoadingViolationError: Developer is marked as strict_loading and AuditLog cannot be lazily loaded.
|
1127
|
+
```
|
810
1128
|
|
811
|
-
|
1129
|
+
*Eileen M. Uchitelle*, *Aaron Patterson*
|
812
1130
|
|
813
|
-
|
1131
|
+
* Add support for PostgreSQL 11+ partitioned indexes when using `upsert_all`.
|
814
1132
|
|
815
|
-
|
1133
|
+
*Sebastián Palma*
|
816
1134
|
|
817
|
-
|
818
|
-
|
819
|
-
|
820
|
-
|
1135
|
+
* Adds support for `if_not_exists` to `add_column` and `if_exists` to `remove_column`.
|
1136
|
+
|
1137
|
+
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.
|
1138
|
+
|
1139
|
+
Example Usage:
|
1140
|
+
|
1141
|
+
```ruby
|
1142
|
+
class AddColumnTitle < ActiveRecord::Migration[6.1]
|
1143
|
+
def change
|
1144
|
+
add_column :posts, :title, :string, if_not_exists: true
|
821
1145
|
end
|
822
1146
|
end
|
823
1147
|
```
|
824
1148
|
|
825
|
-
|
1149
|
+
```ruby
|
1150
|
+
class RemoveColumnTitle < ActiveRecord::Migration[6.1]
|
1151
|
+
def change
|
1152
|
+
remove_column :posts, :title, if_exists: true
|
1153
|
+
end
|
1154
|
+
end
|
1155
|
+
```
|
826
1156
|
|
827
|
-
*
|
1157
|
+
*Eileen M. Uchitelle*
|
828
1158
|
|
829
|
-
|
1159
|
+
* Regexp-escape table name for MS SQL Server.
|
830
1160
|
|
831
|
-
|
832
|
-
t.string :title
|
833
|
-
end
|
1161
|
+
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.
|
834
1162
|
|
835
|
-
|
1163
|
+
*Larry Reid*
|
836
1164
|
|
837
|
-
|
838
|
-
...
|
839
|
-
)
|
1165
|
+
* Store advisory locks on their own named connection.
|
840
1166
|
|
841
|
-
|
842
|
-
exception whereas `if_not_exists: true` does nothing.
|
1167
|
+
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.
|
843
1168
|
|
844
|
-
|
1169
|
+
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.
|
845
1170
|
|
846
|
-
*
|
1171
|
+
*Eileen M. Uchitelle*, *John Crepezzi*
|
847
1172
|
|
848
|
-
|
1173
|
+
* Allow schema cache path to be defined in the database configuration file.
|
849
1174
|
|
850
|
-
|
1175
|
+
For example:
|
851
1176
|
|
852
|
-
|
1177
|
+
```yaml
|
1178
|
+
development:
|
1179
|
+
adapter: postgresql
|
1180
|
+
database: blog_development
|
1181
|
+
pool: 5
|
1182
|
+
schema_cache_path: tmp/schema/main.yml
|
1183
|
+
```
|
853
1184
|
|
854
|
-
*
|
855
|
-
if the attribute does not exist.
|
1185
|
+
*Katrina Owen*
|
856
1186
|
|
857
|
-
|
1187
|
+
* Deprecate `#remove_connection` in favor of `#remove_connection_pool` when called on the handler.
|
858
1188
|
|
859
|
-
|
1189
|
+
`#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 6.2.
|
860
1190
|
|
861
|
-
|
862
|
-
User.connected_to(database: { writing: "postgres://foo" }) do
|
863
|
-
User.create!(name: "Gannon")
|
864
|
-
end
|
1191
|
+
*Eileen M. Uchitelle*, *John Crepezzi*
|
865
1192
|
|
866
|
-
|
867
|
-
User.connected_to(database: { reading: config }) do
|
868
|
-
User.count
|
869
|
-
end
|
870
|
-
````
|
1193
|
+
* Deprecate `#default_hash` and it's alias `#[]` on database configurations.
|
871
1194
|
|
872
|
-
|
1195
|
+
Applications should use `configs_for`. `#default_hash` and `#[]` will be removed in 6.2.
|
873
1196
|
|
874
|
-
*
|
1197
|
+
*Eileen M. Uchitelle*, *John Crepezzi*
|
875
1198
|
|
876
|
-
|
1199
|
+
* Add scale support to `ActiveRecord::Validations::NumericalityValidator`.
|
877
1200
|
|
878
|
-
|
1201
|
+
*Gannon McGibbon*
|
879
1202
|
|
880
|
-
|
1203
|
+
* Find orphans by looking for missing relations through chaining `where.missing`:
|
881
1204
|
|
882
|
-
|
1205
|
+
Before:
|
883
1206
|
|
884
|
-
|
885
|
-
|
1207
|
+
```ruby
|
1208
|
+
Post.left_joins(:author).where(authors: { id: nil })
|
1209
|
+
```
|
886
1210
|
|
887
|
-
|
1211
|
+
After:
|
888
1212
|
|
889
|
-
|
1213
|
+
```ruby
|
1214
|
+
Post.where.missing(:author)
|
1215
|
+
```
|
890
1216
|
|
891
|
-
*
|
1217
|
+
*Tom Rossi*
|
892
1218
|
|
893
|
-
|
1219
|
+
* Ensure `:reading` connections always raise if a write is attempted.
|
894
1220
|
|
895
|
-
|
1221
|
+
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`.
|
896
1222
|
|
897
|
-
*
|
1223
|
+
*Eileen M. Uchitelle*
|
898
1224
|
|
899
|
-
|
1225
|
+
* Deprecate `"primary"` as the `connection_specification_name` for `ActiveRecord::Base`.
|
900
1226
|
|
901
|
-
|
902
|
-
class AnimalsModel < ApplicationRecord
|
903
|
-
self.abstract_class = true
|
1227
|
+
`"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"`.
|
904
1228
|
|
905
|
-
|
906
|
-
end
|
1229
|
+
*Eileen M. Uchitelle*, *John Crepezzi*
|
907
1230
|
|
908
|
-
|
909
|
-
|
910
|
-
end
|
911
|
-
```
|
1231
|
+
* Add `ActiveRecord::Validations::NumericalityValidator` with
|
1232
|
+
support for casting floats using a database columns' precision value.
|
912
1233
|
|
913
|
-
|
914
|
-
a database that the model didn't connect to. Connecting to the database in this block is
|
915
|
-
useful when you have another defined connection, for example `slow_replica` that you don't
|
916
|
-
want to connect to by default but need in the console, or a specific code block.
|
1234
|
+
*Gannon McGibbon*
|
917
1235
|
|
918
|
-
|
919
|
-
ActiveRecord::
|
920
|
-
|
921
|
-
|
922
|
-
|
923
|
-
```
|
1236
|
+
* Enforce fresh ETag header after a collection's contents change by adding
|
1237
|
+
ActiveRecord::Relation#cache_key_with_version. This method will be used by
|
1238
|
+
ActionController::ConditionalGet to ensure that when collection cache versioning
|
1239
|
+
is enabled, requests using ConditionalGet don't return the same ETag header
|
1240
|
+
after a collection is modified.
|
924
1241
|
|
925
|
-
|
926
|
-
ActiveRecord::Base.connected_to(database: :slow_replica) do
|
927
|
-
SlowReplicaModel.first # if the db config has a slow_replica configuration this will be used to do the lookup, otherwise this will throw an exception
|
928
|
-
end
|
929
|
-
```
|
1242
|
+
Fixes #38078.
|
930
1243
|
|
931
|
-
*
|
1244
|
+
*Aaron Lipman*
|
932
1245
|
|
933
|
-
*
|
1246
|
+
* Skip test database when running `db:create` or `db:drop` in development
|
1247
|
+
with `DATABASE_URL` set.
|
934
1248
|
|
935
|
-
|
936
|
-
commit checks that only valid definition values are provided, those can
|
937
|
-
be a Hash, an array of Symbols or an array of Strings. Otherwise it
|
938
|
-
raises an `ArgumentError`.
|
1249
|
+
*Brian Buchalter*
|
939
1250
|
|
940
|
-
|
1251
|
+
* Don't allow mutations on the database configurations hash.
|
941
1252
|
|
942
|
-
|
1253
|
+
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.
|
943
1254
|
|
944
|
-
|
1255
|
+
Before:
|
945
1256
|
|
1257
|
+
```ruby
|
1258
|
+
@db_config = ActiveRecord::Base.configurations.configs_for(env_name: "test", spec_name: "primary")
|
1259
|
+
@db_config.configuration_hash.merge!(idle_timeout: "0.02")
|
946
1260
|
```
|
947
|
-
class Post < ActiveRecord::Base
|
948
|
-
has_one :category
|
949
|
-
belongs_to :author
|
950
|
-
has_many :comments
|
951
|
-
end
|
952
1261
|
|
953
|
-
|
954
|
-
|
955
|
-
|
956
|
-
|
1262
|
+
After:
|
1263
|
+
|
1264
|
+
```ruby
|
1265
|
+
@db_config = ActiveRecord::Base.configurations.configs_for(env_name: "test", spec_name: "primary")
|
1266
|
+
config = @db_config.configuration_hash.merge(idle_timeout: "0.02")
|
1267
|
+
db_config = ActiveRecord::DatabaseConfigurations::HashConfig.new(@db_config.env_name, @db_config.spec_name, config)
|
957
1268
|
```
|
958
1269
|
|
959
|
-
*
|
1270
|
+
*Eileen M. Uchitelle*, *John Crepezzi*
|
960
1271
|
|
961
|
-
*
|
962
|
-
With this change you can create indexes while adding new
|
963
|
-
columns into the existing tables.
|
1272
|
+
* Remove `:connection_id` from the `sql.active_record` notification.
|
964
1273
|
|
965
|
-
|
1274
|
+
*Aaron Patterson*, *Rafael Mendonça França*
|
966
1275
|
|
967
|
-
|
968
|
-
t.string :country_code, index: true
|
969
|
-
end
|
1276
|
+
* The `:name` key will no longer be returned as part of `DatabaseConfig#configuration_hash`. Please use `DatabaseConfig#owner_name` instead.
|
970
1277
|
|
971
|
-
*
|
1278
|
+
*Eileen M. Uchitelle*, *John Crepezzi*
|
972
1279
|
|
973
|
-
*
|
1280
|
+
* ActiveRecord's `belongs_to_required_by_default` flag can now be set per model.
|
974
1281
|
|
975
|
-
|
976
|
-
|
1282
|
+
You can now opt-out/opt-in specific models from having their associations required
|
1283
|
+
by default.
|
977
1284
|
|
978
|
-
|
1285
|
+
This change is meant to ease the process of migrating all your models to have
|
1286
|
+
their association required.
|
979
1287
|
|
980
|
-
*
|
1288
|
+
*Edouard Chin*
|
981
1289
|
|
982
|
-
|
1290
|
+
* The `connection_config` method has been deprecated, please use `connection_db_config` instead which will return a `DatabaseConfigurations::DatabaseConfig` instead of a `Hash`.
|
983
1291
|
|
984
|
-
*
|
1292
|
+
*Eileen M. Uchitelle*, *John Crepezzi*
|
985
1293
|
|
986
|
-
|
1294
|
+
* Retain explicit selections on the base model after applying `includes` and `joins`.
|
987
1295
|
|
988
|
-
|
1296
|
+
Resolves #34889.
|
989
1297
|
|
990
|
-
|
1298
|
+
*Patrick Rebsch*
|
991
1299
|
|
992
|
-
|
1300
|
+
* 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.
|
993
1301
|
|
994
|
-
*
|
1302
|
+
*Eileen M. Uchitelle*, *John Crepezzi*
|
995
1303
|
|
996
|
-
|
1304
|
+
* Allow attributes to be fetched from Arel node groupings.
|
997
1305
|
|
998
|
-
*
|
1306
|
+
*Jeff Emminger*, *Gannon McGibbon*
|
999
1307
|
|
1000
|
-
|
1001
|
-
create_table :users do |t|
|
1002
|
-
t.string :email
|
1003
|
-
end
|
1308
|
+
* A database URL can now contain a querystring value that contains an equal sign. This is needed to support passing PostgreSQL `options`.
|
1004
1309
|
|
1005
|
-
|
1006
|
-
```
|
1310
|
+
*Joshua Flanagan*
|
1007
1311
|
|
1008
|
-
|
1312
|
+
* 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`.
|
1009
1313
|
|
1010
|
-
*
|
1314
|
+
*John Crepezzi*
|
1011
1315
|
|
1012
|
-
|
1316
|
+
* Specifying `implicit_order_column` now subsorts the records by primary key if available to ensure deterministic results.
|
1013
1317
|
|
1014
|
-
*
|
1318
|
+
*Paweł Urbanek*
|
1015
1319
|
|
1016
|
-
*
|
1320
|
+
* `where(attr => [])` now loads an empty result without making a query.
|
1017
1321
|
|
1018
|
-
*
|
1322
|
+
*John Hawthorn*
|
1019
1323
|
|
1020
|
-
*
|
1324
|
+
* Fixed the performance regression for `primary_keys` introduced MySQL 8.0.
|
1021
1325
|
|
1022
|
-
|
1023
|
-
The previous default 3-Byte encoding character set `utf8` is not enough to support them.
|
1326
|
+
*Hiroyuki Ishii*
|
1024
1327
|
|
1025
|
-
|
1328
|
+
* Add support for `belongs_to` to `has_many` inversing.
|
1026
1329
|
|
1027
|
-
*
|
1330
|
+
*Gannon McGibbon*
|
1028
1331
|
|
1029
|
-
|
1332
|
+
* Allow length configuration for `has_secure_token` method. The minimum length
|
1333
|
+
is set at 24 characters.
|
1030
1334
|
|
1031
|
-
|
1032
|
-
sensitive values of database columns when calling `#inspect`.
|
1033
|
-
We also added `ActiveRecord::Base::filter_attributes`/`=` in order to
|
1034
|
-
specify sensitive attributes to specific model.
|
1335
|
+
Before:
|
1035
1336
|
|
1337
|
+
```ruby
|
1338
|
+
has_secure_token :auth_token
|
1036
1339
|
```
|
1037
|
-
|
1038
|
-
|
1039
|
-
|
1040
|
-
|
1340
|
+
|
1341
|
+
After:
|
1342
|
+
|
1343
|
+
```ruby
|
1344
|
+
has_secure_token :default_token # 24 characters
|
1345
|
+
has_secure_token :auth_token, length: 36 # 36 characters
|
1346
|
+
has_secure_token :invalid_token, length: 12 # => ActiveRecord::SecureToken::MinimumLengthError
|
1041
1347
|
```
|
1042
1348
|
|
1043
|
-
*
|
1349
|
+
*Bernardo de Araujo*
|
1044
1350
|
|
1045
|
-
* Deprecate `
|
1046
|
-
`indexes_per_table`, `columns_per_multicolumn_index`, `sql_query_length`,
|
1047
|
-
and `joins_per_query` methods in `DatabaseLimits`.
|
1351
|
+
* Deprecate `DatabaseConfigurations#to_h`. These connection hashes are still available via `ActiveRecord::Base.configurations.configs_for`.
|
1048
1352
|
|
1049
|
-
*
|
1353
|
+
*Eileen Uchitelle*, *John Crepezzi*
|
1050
1354
|
|
1051
|
-
* `
|
1355
|
+
* 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.
|
1052
1356
|
|
1053
|
-
|
1054
|
-
is an inflexible data model. In order to improve multiple-database
|
1055
|
-
handling in Rails, we've changed this to return an object. Some methods
|
1056
|
-
are provided to make the object behave hash-like in order to ease the
|
1057
|
-
transition process. Since most applications don't manipulate the hash
|
1058
|
-
we've decided to add backwards-compatible functionality that will throw
|
1059
|
-
a deprecation warning if used, however calling `ActiveRecord::Base.configurations`
|
1060
|
-
will use the new version internally and externally.
|
1357
|
+
*John Crepezzi*, *Eileen Uchitelle*
|
1061
1358
|
|
1062
|
-
|
1359
|
+
* Allow column names to be passed to `remove_index` positionally along with other options.
|
1063
1360
|
|
1064
|
-
|
1065
|
-
development:
|
1066
|
-
adapter: sqlite3
|
1067
|
-
database: db/development.sqlite3
|
1068
|
-
```
|
1361
|
+
Passing other options can be necessary to make `remove_index` correctly reversible.
|
1069
1362
|
|
1070
|
-
|
1363
|
+
Before:
|
1071
1364
|
|
1072
|
-
|
1073
|
-
|
1074
|
-
|
1365
|
+
add_index :reports, :report_id # => works
|
1366
|
+
add_index :reports, :report_id, unique: true # => works
|
1367
|
+
remove_index :reports, :report_id # => works
|
1368
|
+
remove_index :reports, :report_id, unique: true # => ArgumentError
|
1075
1369
|
|
1076
|
-
|
1370
|
+
After:
|
1077
1371
|
|
1078
|
-
|
1079
|
-
#<ActiveRecord::DatabaseConfigurations:0x00007fd1acbdf800 @configurations=[
|
1080
|
-
#<ActiveRecord::DatabaseConfigurations::HashConfig:0x00007fd1acbded10 @env_name="development",
|
1081
|
-
@spec_name="primary", @config={"adapter"=>"sqlite3", "database"=>"db/development.sqlite3"}>
|
1082
|
-
]
|
1083
|
-
```
|
1372
|
+
remove_index :reports, :report_id, unique: true # => works
|
1084
1373
|
|
1085
|
-
|
1086
|
-
calling hash methods on the `configurations` hash directly, a new method `configs_for` has
|
1087
|
-
been provided that allows you to select the correct configuration. `env_name` and
|
1088
|
-
`spec_name` arguments are optional. For example, these return an array of
|
1089
|
-
database config objects for the requested environment and a single database config object
|
1090
|
-
will be returned for the requested environment and specification name respectively.
|
1374
|
+
*Eugene Kenny*
|
1091
1375
|
|
1092
|
-
|
1093
|
-
ActiveRecord::Base.configurations.configs_for(env_name: "development")
|
1094
|
-
ActiveRecord::Base.configurations.configs_for(env_name: "development", spec_name: "primary")
|
1095
|
-
```
|
1376
|
+
* Allow bulk `ALTER` statements to drop and recreate indexes with the same name.
|
1096
1377
|
|
1097
|
-
*
|
1378
|
+
*Eugene Kenny*
|
1098
1379
|
|
1099
|
-
*
|
1380
|
+
* `insert`, `insert_all`, `upsert`, and `upsert_all` now clear the query cache.
|
1100
1381
|
|
1101
|
-
|
1102
|
-
production:
|
1103
|
-
adapter: postgresql
|
1104
|
-
advisory_locks: false
|
1105
|
-
```
|
1382
|
+
*Eugene Kenny*
|
1106
1383
|
|
1107
|
-
|
1384
|
+
* Call `while_preventing_writes` directly from `connected_to`.
|
1108
1385
|
|
1109
|
-
|
1386
|
+
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)`.
|
1110
1387
|
|
1111
|
-
|
1388
|
+
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.
|
1112
1389
|
|
1113
|
-
*
|
1390
|
+
*Eileen M. Uchitelle*
|
1114
1391
|
|
1115
|
-
|
1392
|
+
* Improve detection of ActiveRecord::StatementTimeout with mysql2 adapter in the edge case when the query is terminated during filesort.
|
1116
1393
|
|
1117
|
-
|
1394
|
+
*Kir Shatrov*
|
1118
1395
|
|
1119
|
-
|
1396
|
+
* Stop trying to read yaml file fixtures when loading Active Record fixtures.
|
1120
1397
|
|
1121
|
-
*
|
1122
|
-
seed load in environments without Rails and custom DB configuration
|
1398
|
+
*Gannon McGibbon*
|
1123
1399
|
|
1124
|
-
|
1400
|
+
* Deprecate `.reorder(nil)` with `.first` / `.first!` taking non-deterministic result.
|
1125
1401
|
|
1126
|
-
|
1402
|
+
To continue taking non-deterministic result, use `.take` / `.take!` instead.
|
1127
1403
|
|
1128
|
-
*
|
1404
|
+
*Ryuta Kamizono*
|
1129
1405
|
|
1130
|
-
*
|
1406
|
+
* Preserve user supplied joins order as much as possible.
|
1407
|
+
|
1408
|
+
Fixes #36761, #34328, #24281, #12953.
|
1131
1409
|
|
1132
1410
|
*Ryuta Kamizono*
|
1133
1411
|
|
1134
|
-
*
|
1412
|
+
* Allow `matches_regex` and `does_not_match_regexp` on the MySQL Arel visitor.
|
1135
1413
|
|
1136
|
-
|
1414
|
+
*James Pearson*
|
1137
1415
|
|
1138
|
-
|
1416
|
+
* Allow specifying fixtures to be ignored by setting `ignore` in YAML file's '_fixture' section.
|
1139
1417
|
|
1140
|
-
*
|
1418
|
+
*Tongfei Gao*
|
1141
1419
|
|
1142
|
-
|
1420
|
+
* Make the DATABASE_URL env variable only affect the primary connection. Add new env variables for multiple databases.
|
1143
1421
|
|
1144
|
-
*
|
1422
|
+
*John Crepezzi*, *Eileen Uchitelle*
|
1145
1423
|
|
1146
|
-
|
1424
|
+
* Add a warning for enum elements with 'not_' prefix.
|
1147
1425
|
|
1148
|
-
|
1426
|
+
class Foo
|
1427
|
+
enum status: [:sent, :not_sent]
|
1428
|
+
end
|
1149
1429
|
|
1150
|
-
*
|
1430
|
+
*Edu Depetris*
|
1151
1431
|
|
1152
|
-
|
1432
|
+
* Make currency symbols optional for money column type in PostgreSQL.
|
1153
1433
|
|
1154
|
-
*
|
1155
|
-
use loaded association ids if present.
|
1434
|
+
*Joel Schneider*
|
1156
1435
|
|
1157
|
-
|
1436
|
+
* Add support for beginless ranges, introduced in Ruby 2.7.
|
1158
1437
|
|
1159
|
-
*
|
1438
|
+
*Josh Goodall*
|
1160
1439
|
|
1161
|
-
|
1440
|
+
* Add `database_exists?` method to connection adapters to check if a database exists.
|
1162
1441
|
|
1163
|
-
*
|
1442
|
+
*Guilherme Mansur*
|
1164
1443
|
|
1165
|
-
|
1444
|
+
* Loading the schema for a model that has no `table_name` raises a `TableNotSpecified` error.
|
1166
1445
|
|
1167
|
-
|
1446
|
+
*Guilherme Mansur*, *Eugene Kenny*
|
1168
1447
|
|
1169
|
-
|
1448
|
+
* PostgreSQL: Fix GROUP BY with ORDER BY virtual count attribute.
|
1170
1449
|
|
1171
|
-
|
1450
|
+
Fixes #36022.
|
1172
1451
|
|
1173
|
-
*
|
1452
|
+
*Ryuta Kamizono*
|
1174
1453
|
|
1175
|
-
*
|
1454
|
+
* Make ActiveRecord `ConnectionPool.connections` method thread-safe.
|
1176
1455
|
|
1177
|
-
|
1456
|
+
Fixes #36465.
|
1178
1457
|
|
1179
|
-
*
|
1458
|
+
*Jeff Doering*
|
1180
1459
|
|
1181
|
-
|
1460
|
+
* Add support for multiple databases to `rails db:abort_if_pending_migrations`.
|
1182
1461
|
|
1183
|
-
*
|
1462
|
+
*Mark Lee*
|
1184
1463
|
|
1185
|
-
|
1464
|
+
* Fix sqlite3 collation parsing when using decimal columns.
|
1186
1465
|
|
1187
|
-
*
|
1188
|
-
`ActiveRecord::Base.find_or_create_by`/`!` by leaning on unique constraints in the database.
|
1466
|
+
*Martin R. Schuster*
|
1189
1467
|
|
1190
|
-
|
1468
|
+
* Fix invalid schema when primary key column has a comment.
|
1191
1469
|
|
1192
|
-
|
1470
|
+
Fixes #29966.
|
1193
1471
|
|
1194
|
-
*
|
1472
|
+
*Guilherme Goettems Schneider*
|
1473
|
+
|
1474
|
+
* Fix table comment also being applied to the primary key column.
|
1475
|
+
|
1476
|
+
*Guilherme Goettems Schneider*
|
1477
|
+
|
1478
|
+
* Allow generated `create_table` migrations to include or skip timestamps.
|
1479
|
+
|
1480
|
+
*Michael Duchemin*
|
1195
1481
|
|
1196
1482
|
|
1197
|
-
Please check [
|
1483
|
+
Please check [6-0-stable](https://github.com/rails/rails/blob/6-0-stable/activerecord/CHANGELOG.md) for previous changes.
|