activerecord 6.1.7.8 → 7.0.0.alpha1

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