From e6b33a83376462619832fc51fb18929d4fc131db Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sat, 15 Nov 2008 11:05:44 +0100 Subject: =?UTF-8?q?Added=20lambda=20merging=20to=20OptionMerger=20(especia?= =?UTF-8?q?lly=20useful=20with=20named=5Fscope=20and=20with=5Foptions)=20[?= =?UTF-8?q?#740=20state:commited]=20(Pawe=C5=82=20Kondzior)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- actionmailer/CHANGELOG | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'actionmailer/CHANGELOG') diff --git a/actionmailer/CHANGELOG b/actionmailer/CHANGELOG index de5aeab07e..2cc84076fb 100644 --- a/actionmailer/CHANGELOG +++ b/actionmailer/CHANGELOG @@ -1,3 +1,8 @@ +*2.3.0/3.0* + +* Fixed that no body charset would be set when there are attachments present #740 [Paweł Kondzior] + + *2.2.1 [RC2] (November 14th, 2008)* * Turn on STARTTLS if it is available in Net::SMTP (added in Ruby 1.8.7) and the SMTP server supports it (This is required for Gmail's SMTP server) #1336 [Grant Hollingworth] -- cgit v1.2.3 From 51a19ae2bf33e66b23ff5c91bf584b2efa9e669f Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Wed, 19 Nov 2008 14:12:38 +0100 Subject: Assume that the next version is going to be 2.3 for now --- actionmailer/CHANGELOG | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'actionmailer/CHANGELOG') diff --git a/actionmailer/CHANGELOG b/actionmailer/CHANGELOG index 2cc84076fb..8345345a43 100644 --- a/actionmailer/CHANGELOG +++ b/actionmailer/CHANGELOG @@ -1,4 +1,4 @@ -*2.3.0/3.0* +*2.3.0 [Edge]* * Fixed that no body charset would be set when there are attachments present #740 [Paweł Kondzior] -- cgit v1.2.3 From 84583657f40e5554c496fb24dfbc1921f11b0498 Mon Sep 17 00:00:00 2001 From: Alexey Mahotkin Date: Thu, 20 Nov 2008 15:52:18 +0300 Subject: Fixed RFC-2045 quoted-printable bug [#1421 state:committed] http://www.faqs.org/rfcs/rfc2045.html says: may be represented by an "=" followed by a two digit hexadecimal representation of the octet's value. The digits of the hexadecimal alphabet, for this purpose, are "0123456789ABCDEF". Uppercase letters must be used; lowercase letters are not allowed. ActionMailer, however, used "=%02x" specification. Signed-off-by: David Heinemeier Hansson --- actionmailer/CHANGELOG | 2 ++ 1 file changed, 2 insertions(+) (limited to 'actionmailer/CHANGELOG') diff --git a/actionmailer/CHANGELOG b/actionmailer/CHANGELOG index 8345345a43..5dc7a33f55 100644 --- a/actionmailer/CHANGELOG +++ b/actionmailer/CHANGELOG @@ -1,5 +1,7 @@ *2.3.0 [Edge]* +* Fixed RFC-2045 quoted-printable bug #1421 [squadette] + * Fixed that no body charset would be set when there are attachments present #740 [Paweł Kondzior] -- cgit v1.2.3