aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorRafael França <rafaelmfranca@gmail.com>2016-08-18 22:57:27 -0300
committerGitHub <noreply@github.com>2016-08-18 22:57:27 -0300
commitc2af081c4f566560e3caab0a8c10893093b9e826 (patch)
treeeffd1e5b04ea3234fd3089dd29456a54ac0a1155 /activerecord/CHANGELOG.md
parent40516d01f1511cb7252556111dbb1b465b65bd12 (diff)
parent6eaf5c925362f0d1e7bf03a9f82c33569969d9a1 (diff)
downloadrails-c2af081c4f566560e3caab0a8c10893093b9e826.tar.gz
rails-c2af081c4f566560e3caab0a8c10893093b9e826.tar.bz2
rails-c2af081c4f566560e3caab0a8c10893093b9e826.zip
Merge pull request #25999 from kamipo/remove_sanitize_conditions
Remove `sanitize_conditions` and use `sanitize_sql` instead of `sanitize_conditions`
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 6b996fd6bd..38d8660721 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,3 +1,7 @@
+* Deprecate `sanitize_conditions`. Use `sanitize_sql` instead.
+
+ *Ryuta Kamizono*
+
* Doing count on relations that contain LEFT OUTER JOIN Arel node no longer
force a DISTINCT. This solves issues when using count after a left_joins.