aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/CHANGELOG
diff options
context:
space:
mode:
authorwycats <wycats@gmail.com>2010-04-11 19:20:39 -0700
committerwycats <wycats@gmail.com>2010-04-11 19:20:39 -0700
commit59c6082d9867572352e2ac2070d5aa9590132ef8 (patch)
treee9211dd3d0699452e623309a612a3be5efba0f0e /actionmailer/CHANGELOG
parentecf039fc05ac32b7a8cbd005dd4723d7eadc61c0 (diff)
parentdd02090d762bfbb8fdada60142e35247797f32c7 (diff)
downloadrails-59c6082d9867572352e2ac2070d5aa9590132ef8.tar.gz
rails-59c6082d9867572352e2ac2070d5aa9590132ef8.tar.bz2
rails-59c6082d9867572352e2ac2070d5aa9590132ef8.zip
Merge remote branch 'mikel/master'
Diffstat (limited to 'actionmailer/CHANGELOG')
-rw-r--r--actionmailer/CHANGELOG14
1 files changed, 14 insertions, 0 deletions
diff --git a/actionmailer/CHANGELOG b/actionmailer/CHANGELOG
index 605b18d7e9..c1b659a9f5 100644
--- a/actionmailer/CHANGELOG
+++ b/actionmailer/CHANGELOG
@@ -1,3 +1,7 @@
+* Removed all quoting.rb type files from ActionMailer and put Mail 2.2.0 in instead [ML]
+
+* Lot of updates to various test cases that now work better with the new Mail and so have different expectations
+
*Rails 3.0.0 [beta 2] (April 1st, 2010)*
* Added interceptors and observers from Mail [ML]
@@ -5,6 +9,16 @@
ActionMailer::Base.register_interceptor calls Mail.register_interceptor
ActionMailer::Base.register_observer calls Mail.register_observer
+* Mail::Part now no longer has nil as a default charset, it is always set to something, and defaults to UTF-8
+
+* Added explict setting of charset in set_fields! method to make sure Mail has the user defined default
+
+* Removed quoting.rb and refactored for Mail to take responsibility of all quoting and auto encoding requirements for the header.
+
+* Fixed several tests which had incorrect encoding.
+
+* Changed all utf-8 to UTF-8 for consistency
+
* Whole new API added with tests. See base.rb for full details. Old API is deprecated.