activerecord 6.1.4.1 → 7.0.2.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.

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