activerecord 6.0.0 → 6.1.3

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of activerecord might be problematic. Click here for more details.

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