aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2015-01-04 11:31:58 -0300
committerRafael Mendonça França <rafaelmfranca@gmail.com>2015-01-04 11:58:44 -0300
commita502703c3d2151d4d3b421b29fefdac5ad05df61 (patch)
tree26d2062847b25b296ca753f71fef38e217e0de26 /activerecord/CHANGELOG.md
parent07d3d402341e81ada0214f2cb2be1da69eadfe72 (diff)
downloadrails-a502703c3d2151d4d3b421b29fefdac5ad05df61.tar.gz
rails-a502703c3d2151d4d3b421b29fefdac5ad05df61.tar.bz2
rails-a502703c3d2151d4d3b421b29fefdac5ad05df61.zip
Change the behavior of boolean columns to be closer to Ruby's semantics.
Before this change we had a small set of "truthy", and all others are "falsy". Now, we have a small set of "falsy" values and all others are "truthy" matching Ruby's semantics.
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 3a05a9b020..d1eee8e73e 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,3 +1,12 @@
+* Change the behavior of boolean columns to be closer to Ruby's semantics.
+
+ Before this change we had a small set of "truthy", and all others are "falsy".
+
+ Now, we have a small set of "falsy" values and all others are "truthy" matching
+ Ruby's semantics.
+
+ *Rafael Mendonça França*
+
* Deprecate `ActiveRecord::Base.errors_in_transactional_callbacks=`.
*Rafael Mendonça França*