CHANGES 2.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. Changelog since Version 4.x.x
  2. =============================
  3. 4.2.1 (2012-07-13)
  4. ------------------
  5. * changed the coding standards to PSR-1/2
  6. * fixed issue with autoloading
  7. * added NativeQpContentEncoder to enhance performance (for PHP 5.3+)
  8. 4.2.0 (2012-06-29)
  9. ------------------
  10. * added documentation about how to use the Japanese support introduced in 4.1.8
  11. * added a way to override the default configuration in a lazy way
  12. * changed the PEAR init script to lazy-load the initialization
  13. * fixed a bug when calling Swift_Preferences before anything else (regression introduced in 4.1.8)
  14. 4.1.8 (2012-06-17)
  15. ------------------
  16. * added Japanese iso-2022-jp support
  17. * changed the init script to lazy-load the initialization
  18. * fixed docblocks (@id) which caused some problems with libraries parsing the dobclocks
  19. * fixed Swift_Mime_Headers_IdentificationHeader::setId() when passed an array of ids
  20. * fixed encoding of email addresses in headers
  21. * added replacements setter to the Decorator plugin
  22. 4.1.7 (2012-04-26)
  23. ------------------
  24. * fixed QpEncoder safeMapShareId property
  25. 4.1.6 (2012-03-23)
  26. ------------------
  27. * reduced the size of serialized Messages
  28. 4.1.5 (2012-01-04)
  29. ------------------
  30. * enforced Swift_Spool::queueMessage() to return a Boolean
  31. * made an optimization to the memory spool: start the transport only when required
  32. * prevented stream_socket_client() from generating an error and throw a Swift_TransportException instead
  33. * fixed a PHP warning when calling to mail() when safe_mode is off
  34. * many doc tweaks
  35. 4.1.4 (2011-12-16)
  36. ------------------
  37. * added a memory spool (Swift_MemorySpool)
  38. * fixed too many opened files when sending emails with attachments
  39. 4.1.3 (2011-10-27)
  40. ------------------
  41. * added STARTTLS support
  42. * added missing @return tags on fluent methods
  43. * added a MessageLogger plugin that logs all sent messages
  44. * added composer.json
  45. 4.1.2 (2011-09-13)
  46. ------------------
  47. * fixed wrong detection of magic_quotes_runtime
  48. * fixed fatal errors when no To or Subject header has been set
  49. * fixed charset on parameter header continuations
  50. * added documentation about how to install Swiftmailer from the PEAR channel
  51. * fixed various typos and markup problem in the documentation
  52. * fixed warning when cache directory does not exist
  53. * fixed "slashes are escaped" bug
  54. * changed require_once() to require() in autoload
  55. 4.1.1 (2011-07-04)
  56. ------------------
  57. * added missing file in PEAR package
  58. 4.1.0 (2011-06-30)
  59. ------------------
  60. * documentation has been converted to ReST
  61. 4.1.0 RC1 (2011-06-17)
  62. ----------------------
  63. New features:
  64. * changed the Decorator Plugin to allow replacements in all headers
  65. * added Swift_Mime_Grammar and Swift_Validate to validate an email address
  66. * modified the autoloader to lazy-initialize Swiftmailer
  67. * removed Swift_Mailer::batchSend()
  68. * added NullTransport
  69. * added new plugins: RedirectingPlugin and ImpersonatePlugin
  70. * added a way to send messages asynchronously (Spool)