Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

root/trunk/actionmailer/CHANGELOG

Revision 9099, 12.3 kB (checked in by david, 5 months ago)

Fixed that a return-path header would be ignored (closes #7572) [joost]

Line 
1 *SVN*
2
3 * Fixed that a return-path header would be ignored #7572 [joost]
4
5 * Less verbose mail logging: just recipients for :info log level; the whole email for :debug only.  #8000 [iaddict, Tarmo TÀnav]
6
7 * Updated TMail to version 1.2.1 [raasdnil]
8
9 * Fixed that you don't have to call super in ActionMailer::TestCase#setup #10406 [jamesgolick]
10
11
12 *2.0.2* (December 16th, 2007)
13
14 * Included in Rails 2.0.2
15
16
17 *2.0.1* (December 7th, 2007)
18
19 * Update ActionMailer so it treats ActionView the same way that ActionController does.  Closes #10244 [rick]
20
21   * Pass the template_root as an array as ActionView's view_path
22   * Request templates with the "#{mailer_name}/#{action}" as opposed to just "#{action}"
23
24 * Fixed that partials would be broken when using text.plain.erb as the extension #10130 [java]
25
26 * Update README to use new smtp settings configuration API. Closes #10060 [psq]
27
28 * Allow ActionMailer subclasses to individually set their delivery method (so two subclasses can have different delivery methods) #10033 [zdennis]
29
30 * Update TMail to v1.1.0.  Use an updated version of TMail if available.  [mikel]
31
32 * Introduce a new base test class for testing Mailers.  ActionMailer::TestCase [Koz]
33
34 * Fix silent failure of rxml templates.  #9879 [jstewart]
35
36 * Fix attachment decoding when using the TMail C extension.  #7861 [orangechicken]
37
38 * Increase mail delivery test coverage.  #8692 [Kamal Fariz Mahyuddin]
39
40 * Register alternative template engines using ActionMailer::Base.register_template_extension('haml').  #7534 [cwd, Josh Peek]
41
42 * Only load ActionController::UrlWriter if ActionController is present [Rick Olson]
43
44 * Make sure parsed emails recognized attachments nested inside multipart parts. #6714 [Jamis Buck]
45
46 * Allow mailer actions named send by using __send__ internally.  #6467 [iGEL]
47
48 * Add assert_emails and assert_no_emails to test the number of emails delivered.  #6479 [Jonathan Viney]
49     # Assert total number of emails delivered:
50     assert_emails 0
51     ContactMailer.deliver_contact
52     assert_emails 1
53
54     # Assert number of emails delivered within a block:
55     assert_emails 1 do
56       post :signup, :name => 'Jonathan'
57     end
58
59
60 *1.3.3* (March 12th, 2007)
61
62 * Depend on Action Pack 1.13.3
63
64
65 *1.3.2* (February 5th, 2007)
66
67 * Deprecate server_settings renaming it to smtp_settings,  add sendmail_settings to allow you to override the arguments to and location of the sendmail executable. [Koz]
68
69
70 *1.3.1* (January 16th, 2007)
71
72 * Depend on Action Pack 1.13.1
73
74
75 *1.3.0* (January 16th, 2007)
76
77 * Make mime version default to 1.0. closes #2323 [ror@andreas-s.net]
78
79 * Make sure quoted-printable text is decoded correctly when only portions of the text are encoded. closes #3154. [jon@siliconcircus.com]
80
81 * Make sure DOS newlines in quoted-printable text are normalized to unix newlines before unquoting. closes #4166 and #4452. [Jamis Buck]
82
83 * Fixed that iconv decoding should catch InvalidEncoding #3153 [jon@siliconcircus.com]
84
85 * Tighten rescue clauses.  #5985 [james@grayproductions.net]
86
87 * Automatically included ActionController::UrlWriter, such that URL generation can happen within ActionMailer controllers. [DHH]
88
89 * Replace Reloadable with Reloadable::Deprecated. [Nicholas Seckar]
90
91 * Mailer template root applies to a class and its subclasses rather than acting globally. #5555 [somekool@gmail.com]
92
93 * Resolve action naming collision. #5520 [ssinghi@kreeti.com]
94
95 * ActionMailer::Base documentation rewrite. Closes #4991 [Kevin Clark, Marcel Molina Jr.]
96
97 * Replace alias method chaining with Module#alias_method_chain. [Marcel Molina Jr.]
98
99 * Replace Ruby's deprecated append_features in favor of included. [Marcel Molina Jr.]
100
101 * Correct spurious documentation example code which results in a SyntaxError. [Marcel Molina Jr.]
102
103
104 *1.2.1* (April 6th, 2006)
105
106 * Be part of Rails 1.1.1
107
108
109 *1.2.0* (March 27th, 2006)
110
111 * Nil charset caused subject line to be improperly quoted in implicitly multipart messages #2662 [ehalvorsen+rails@runbox.com]
112
113 * Parse content-type apart before using it so that sub-parts of the header can be set correctly #2918 [Jamis Buck]
114
115 * Make custom headers work in subparts #4034 [elan@bluemandrill.com]
116
117 * Template paths with dot chars in them no longer mess up implicit template selection for multipart messages #3332 [Chad Fowler]
118
119 * Make sure anything with content-disposition of "attachment" is passed to the attachment presenter when parsing an email body [Jamis Buck]
120
121 * Make sure TMail#attachments includes anything with content-disposition of "attachment", regardless of content-type [Jamis Buck]
122
123
124 *1.1.5* (December 13th, 2005)
125
126 * Become part of Rails 1.0
127
128
129 *1.1.4* (December 7th, 2005)
130
131 * Rename Version constant to VERSION. #2802 [Marcel Molina Jr.]
132
133 * Stricter matching for implicitly multipart filenames excludes files ending in unsupported extensions (such as foo.rhtml.bak) and without a two-part content type (such as foo.text.rhtml or foo.text.really.plain.rhtml).  #2398 [Dave Burt <dave@burt.id.au>, Jeremy Kemper]
134
135
136 *1.1.3* (November 7th, 2005)
137
138 * Allow Mailers to have custom initialize methods that set default instance variables for all mail actions #2563 [mrj@bigpond.net.au]
139
140
141 *1.1.2* (October 26th, 2005)
142
143 * Upgraded to Action Pack 1.10.2
144
145
146 *1.1.1* (October 19th, 2005)
147
148 * Upgraded to Action Pack 1.10.1
149
150
151 *1.1.0* (October 16th, 2005)
152
153 * Update and extend documentation (rdoc)
154
155 * Minero Aoki made TMail available to Rails/ActionMailer under the MIT license (instead of LGPL) [RubyConf '05]
156
157 * Austin Ziegler made Text::Simple available to Rails/ActionMailer under a MIT-like licens [See rails ML, subject "Text::Format Licence Exception" on Oct 15, 2005]
158
159 * Fix vendor require paths to prevent files being required twice
160
161 * Don't add charset to content-type header for a part that contains subparts (for AOL compatibility) #2013 [John Long]
162
163 * Preserve underscores when unquoting message bodies #1930
164
165 * Encode multibyte characters correctly #1894
166
167 * Multipart messages specify a MIME-Version header automatically #2003 [John Long]
168
169 * Add a unified render method to ActionMailer (delegates to ActionView::Base#render)
170
171 * Move mailer initialization to a separate (overridable) method, so that subclasses may alter the various defaults #1727
172
173 * Look at content-location header (if available) to determine filename of attachments #1670
174
175 * ActionMailer::Base.deliver(email) had been accidentally removed, but was documented in the Rails book #1849
176
177 * Fix problem with sendmail delivery where headers should be delimited by \n characters instead of \r\n, which confuses some mail readers #1742 [Kent Sibilev]
178
179
180 *1.0.1* (11 July, 2005)
181
182 * Bind to Action Pack 1.9.1
183
184
185 *1.0.0* (6 July, 2005)
186
187 * Avoid adding nil header values #1392
188
189 * Better multipart support with implicit multipart/alternative and sorting of subparts [John Long]
190
191 * Allow for nested parts in multipart mails #1570 [Flurin Egger]
192
193 * Normalize line endings in outgoing mail bodies to "\n" #1536 [John Long]
194
195 * Allow template to be explicitly specified #1448 [tuxie@dekadance.se]
196
197 * Allow specific "multipart/xxx" content-type to be set on multipart messages #1412 [Flurin Egger]
198
199 * Unquoted @ characters in headers are now accepted in spite of RFC 822 #1206
200
201 * Helper support (borrowed from ActionPack)
202
203 * Silently ignore Errno::EINVAL errors when converting text.
204
205 * Don't cause an error when parsing an encoded attachment name #1340 [lon@speedymac.com]
206
207 * Nested multipart message parts are correctly processed in TMail::Mail#body
208
209 * BCC headers are removed when sending via SMTP #1402
210
211 * Added 'content_type' accessor, to allow content type to be set on a per-message basis. content_type defaults to "text/plain".
212
213 * Silently ignore Iconv::IllegalSequence errors when converting text #1341 [lon@speedymac.com]
214
215 * Support attachments and multipart messages.
216
217 * Added new accessors for the various mail properties.
218
219 * Fix to only perform the charset conversion if a 'from' and a 'to' charset are given (make no assumptions about what the charset was) #1276 [Jamis Buck]
220
221 * Fix attachments and content-type problems #1276 [Jamis Buck]
222
223 * Fixed the TMail#body method to look at the content-transfer-encoding header and unquote the body according to the rules it specifies #1265 [Jamis Buck]
224
225 * Added unquoting even if the iconv lib can't be loaded--in that case, only the charset conversion is skipped #1265 [Jamis Buck]
226
227 * Added automatic decoding of base64 bodies #1214 [Jamis Buck]
228
229 * Added that delivery errors are caught in a way so the mail is still returned whether the delivery was successful or not
230
231 * Fixed that email address like "Jamis Buck, M.D." <wild.medicine@example.net> would cause the quoter to generate emails resulting in "bad address" errors from the mail server #1220 [Jamis Buck]
232
233
234 *0.9.1* (20th April, 2005)
235
236 * Depend on Action Pack 1.8.1
237
238
239 *0.9.0* (19th April, 2005)
240
241 * Added that deliver_* will now return the email that was sent
242
243 * Added that quoting to UTF-8 only happens if the characters used are in that range #955 [Jamis Buck]
244
245 * Fixed quoting for all address headers, not just to #955 [Jamis Buck]
246
247 * Fixed unquoting of emails that doesn't have an explicit charset #1036 [wolfgang@stufenlos.net]
248
249
250 *0.8.1* (27th March, 2005)
251
252 * Fixed that if charset was found that the end of a mime part declaration TMail would throw an error #919 [lon@speedymac.com]
253
254 * Fixed that TMail::Unquoter would fail to recognize quoting method if it was in lowercase #919 [lon@speedymac.com]
255
256 * Fixed that TMail::Encoder would fail when it attempts to parse e-mail addresses which are encoded using something other than the messages encoding method #919 [lon@speedymac.com]
257
258 * Added rescue for missing iconv library and throws warnings if subject/body is called on a TMail object without it instead
259
260
261 *0.8.0* (22th March, 2005)
262
263 * Added framework support for processing incoming emails with an Action Mailer class. See example in README.
264
265
266 *0.7.1* (7th March, 2005)
267
268 * Bind to newest Action Pack (1.5.1)
269
270
271 *0.7.0* (24th February, 2005)
272
273 * Added support for charsets for both subject and body. The default charset is now UTF-8 #673 [Jamis Buck]. Examples:
274
275     def iso_charset(recipient)
276       @recipients = recipient
277       @subject    = "testing iso charsets"
278       @from       = "system@loudthinking.com"
279       @body       = "Nothing to see here."
280       @charset    = "iso-8859-1"
281     end
282    
283     def unencoded_subject(recipient)
284       @recipients = recipient
285       @subject    = "testing unencoded subject"
286       @from       = "system@loudthinking.com"
287       @body       = "Nothing to see here."
288       @encode_subject = false
289       @charset    = "iso-8859-1"
290     end
291    
292
293 *0.6.1* (January 18th, 2005)
294
295 * Fixed sending of emails to use Tmail#from not the deprecated Tmail#from_address
296
297
298 *0.6* (January 17th, 2005)
299
300 * Fixed that bcc and cc should be settable through @bcc and @cc -- not just @headers["Bcc"] and @headers["Cc"] #453 [Eric Hodel]
301
302 * Fixed Action Mailer to be "warnings safe" so you can run with ruby -w and not get framework warnings #453 [Eric Hodel]
303
304
305 *0.5*
306
307 * Added access to custom headers, like cc, bcc, and reply-to #268 [Andreas Schwarz]. Example:
308
309     def post_notification(recipients, post)
310       @recipients          = recipients
311       @from                = post.author.email_address_with_name
312       @headers["bcc"]      = SYSTEM_ADMINISTRATOR_EMAIL
313       @headers["reply-to"] = "notifications@example.com"
314       @subject             = "[#{post.account.name} #{post.title}]"
315       @body["post"]        = post
316     end
317
318 *0.4* (5)
319
320 * Consolidated the server configuration options into Base#server_settings= and expanded that with controls for authentication and more [Marten]
321   NOTE: This is an API change that could potentially break your application if you used the old application form. Please do change!
322
323 * Added Base#deliveries as an accessor for an array of emails sent out through that ActionMailer class when using the :test delivery option. [Jeremy Kemper]
324
325 * Added Base#perform_deliveries= which can be set to false to turn off the actual delivery of the email through smtp or sendmail.
326   This is especially useful for functional testing that shouldn't send off real emails, but still trigger delivery_* methods.
327
328 * Added option to specify delivery method with Base#delivery_method=. Default is :smtp and :sendmail is currently the only other option.
329   Sendmail is assumed to be present at "/usr/sbin/sendmail" if that option is used. [Kent Sibilev]
330
331 * Dropped "include TMail" as it added to much baggage into the default namespace (like Version) [Chad Fowler]
332
333
334 *0.3*
335
336 * First release
Note: See TracBrowser for help on using the browser.