aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorMatthew M. Boedicker <matthewm@boedicker.org>2012-12-13 23:29:49 -0800
committerMatthew M. Boedicker <matthewm@boedicker.org>2012-12-14 12:19:17 -0800
commit8f59ffce671c9b467b0f97b420305a9faa5214d8 (patch)
treecf9b89c3cee6150912a2a1720eb792802ae198dc /activerecord/CHANGELOG.md
parentfa3457dc3b30e3dde5bc4b041f59c037c76e1f8b (diff)
downloadrails-8f59ffce671c9b467b0f97b420305a9faa5214d8.tar.gz
rails-8f59ffce671c9b467b0f97b420305a9faa5214d8.tar.bz2
rails-8f59ffce671c9b467b0f97b420305a9faa5214d8.zip
Do not log the binding values for binary columns.
They tend to be large and not very useful in the log.
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 be3b6564b0..595bf4db72 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,5 +1,9 @@
## Rails 4.0.0 (unreleased) ##
+* Do not log the binding values for binary columns.
+
+ *Matthew M. Boedicker*
+
* Fix counter cache columns not updated when replacing `has_many :through`
associations.