aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md9
1 files changed, 9 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 4bbe32f948..e962c0978f 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,3 +1,12 @@
+* Stringify all variables keys of mysql connection configuration.
+
+ When `sql_mode` variable for mysql adapters set in configuration as `String`
+ was ignored and overwritten by strict mode option.
+
+ Fixes #14895
+
+ *Paul Nikitochkin*
+
* Ensure SQLite3 statements are closed on errors.
Fixes: #13631