aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-03-14 23:56:47 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-03-14 23:56:47 +0000
commitb55f59e811564604a86dcaba23e3d27c32812f17 (patch)
treea9e7842b89f066ffdaa2829a4825000bc3994264 /activerecord/CHANGELOG
parentbfa6bfc24a0034ae599861a6e8655df024973eed (diff)
downloadrails-b55f59e811564604a86dcaba23e3d27c32812f17.tar.gz
rails-b55f59e811564604a86dcaba23e3d27c32812f17.tar.bz2
rails-b55f59e811564604a86dcaba23e3d27c32812f17.zip
Added optionally allow for nil or empty strings with validates_numericality_of #801 [Sebastian Kanthak] Fixed problem with using slashes in validates_format_of regular expressions #801 [Sebastian Kanthak]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@910 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/CHANGELOG')
-rw-r--r--activerecord/CHANGELOG4
1 files changed, 4 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG
index 7f1a1fcca4..8655d2bf6b 100644
--- a/activerecord/CHANGELOG
+++ b/activerecord/CHANGELOG
@@ -1,5 +1,9 @@
*SVN*
+* Added optionally allow for nil or empty strings with validates_numericality_of #801 [Sebastian Kanthak]
+
+* Fixed problem with using slashes in validates_format_of regular expressions #801 [Sebastian Kanthak]
+
* Fixed that SQLite3 exceptions are caught and reported properly #823 [yerejm]
* Added that all types of after_find/after_initialized callbacks are triggered if the explicit implementation is present, not only the explicit implementation itself