CHANGES 1.8KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. Changelog since Version 4.1.x
  2. =============================
  3. 4.1.5 (2012-01-04)
  4. ------------------
  5. * enforced Swift_Spool::queueMessage() to return a Boolean
  6. * made an optimization to the memory spool: start the transport only when required
  7. * prevented stream_socket_client() from generating an error and throw a Swift_TransportException instead
  8. * fixed a PHP warning when calling to mail() when safe_mode is off
  9. * many doc tweaks
  10. 4.1.4 (2011-12-16)
  11. ------------------
  12. * added a memory spool (Swift_MemorySpool)
  13. * fixed too many opened files when sending emails with attachments
  14. 4.1.3 (2011-10-27)
  15. ------------------
  16. * added STARTTLS support
  17. * added missing @return tags on fluent methods
  18. * added a MessageLogger plugin that logs all sent messages
  19. * added composer.json
  20. 4.1.2 (2011-09-13)
  21. ------------------
  22. * fixed wrong detection of magic_quotes_runtime
  23. * fixed fatal errors when no To or Subject header has been set
  24. * fixed charset on parameter header continuations
  25. * added documentation about how to install Swiftmailer from the PEAR channel
  26. * fixed various typos and markup problem in the documentation
  27. * fixed warning when cache directory does not exist
  28. * fixed "slashes are escaped" bug
  29. * changed require_once() to require() in autoload
  30. 4.1.1 (2011-07-04)
  31. ------------------
  32. * added missing file in PEAR package
  33. 4.1.0 (2011-06-30)
  34. ------------------
  35. * documentation has been converted to ReST
  36. 4.1.0 RC1 (2011-06-17)
  37. ----------------------
  38. New features:
  39. * changed the Decorator Plugin to allow replacements in all headers
  40. * added Swift_Mime_Grammar and Swift_Validate to validate an email address
  41. * modified the autoloader to lazy-initialize Swiftmailer
  42. * removed Swift_Mailer::batchSend()
  43. * added NullTransport
  44. * added new plugins: RedirectingPlugin and ImpersonatePlugin
  45. * added a way to send messages asynchronously (Spool)