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