aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2006-02-25 23:54:57 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2006-02-25 23:54:57 +0000
commit272729e0a339d80bc422fcbdfc86dd60e3e4c030 (patch)
treee160fa18b89007690dee5df405520cb99800587c /activerecord/CHANGELOG
parentad9f678d13db438d48d497bf71ccef6856d58a7d (diff)
downloadrails-272729e0a339d80bc422fcbdfc86dd60e3e4c030.tar.gz
rails-272729e0a339d80bc422fcbdfc86dd60e3e4c030.tar.bz2
rails-272729e0a339d80bc422fcbdfc86dd60e3e4c030.zip
Fixed validates_length_of to work on UTF-8 strings by using characters instead of bytes (closes #3699) [Masao Mutoh]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3654 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/CHANGELOG')
-rw-r--r--activerecord/CHANGELOG2
1 files changed, 2 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG
index d894dd9ee3..1bc3af1987 100644
--- a/activerecord/CHANGELOG
+++ b/activerecord/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*
+* Fixed validates_length_of to work on UTF-8 strings by using characters instead of bytes #3699 [Masao Mutoh]
+
* Fixed that reflections would bleed across class boundaries in single-table inheritance setups #3796 [lars@pind.com]
* Added calculations: Base.count, Base.average, Base.sum, Base.minimum, Base.maxmium, and the generic Base.calculate. All can be used with :group and :having. Calculations and statitics need no longer require custom SQL. #3958 [Rick Olson]. Examples: