CHANGES 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. Changelog
  2. =========
  3. 5.0.2 (2013-08-30)
  4. ------------------
  5. * handled correct exception type while reading IoBuffer output
  6. 5.0.1 (2013-06-17)
  7. ------------------
  8. * changed the spool to only start the transport when a mail has to be sent
  9. * fixed compatibility with PHP 5.2
  10. * fixed LICENSE file
  11. 5.0.0 (2013-04-30)
  12. ------------------
  13. * changed the license from LGPL to MIT
  14. 4.3.1 (2013-04-11)
  15. ------------------
  16. * removed usage of the native QP encoder when the charset is not UTF-8
  17. * fixed usage of uniqid to avoid collisions
  18. * made a performance improvement when tokenizing large headers
  19. * fixed usage of the PHP native QP encoder on PHP 5.4.7+
  20. 4.3.0 (2013-01-08)
  21. ------------------
  22. * made the temporary directory configurable via the TMPDIR env variable
  23. * added S/MIME signer and encryption support
  24. 4.2.2 (2012-10-25)
  25. ------------------
  26. * added the possibility to throttle messages per second in ThrottlerPlugin (mostly for Amazon SES)
  27. * switched mime.qpcontentencoder to automatically use the PHP native encoder on PHP 5.4.7+
  28. * allowed specifying a whitelist with regular expressions in RedirectingPlugin
  29. 4.2.1 (2012-07-13)
  30. ------------------
  31. * changed the coding standards to PSR-1/2
  32. * fixed issue with autoloading
  33. * added NativeQpContentEncoder to enhance performance (for PHP 5.3+)
  34. 4.2.0 (2012-06-29)
  35. ------------------
  36. * added documentation about how to use the Japanese support introduced in 4.1.8
  37. * added a way to override the default configuration in a lazy way
  38. * changed the PEAR init script to lazy-load the initialization
  39. * fixed a bug when calling Swift_Preferences before anything else (regression introduced in 4.1.8)
  40. 4.1.8 (2012-06-17)
  41. ------------------
  42. * added Japanese iso-2022-jp support
  43. * changed the init script to lazy-load the initialization
  44. * fixed docblocks (@id) which caused some problems with libraries parsing the dobclocks
  45. * fixed Swift_Mime_Headers_IdentificationHeader::setId() when passed an array of ids
  46. * fixed encoding of email addresses in headers
  47. * added replacements setter to the Decorator plugin
  48. 4.1.7 (2012-04-26)
  49. ------------------
  50. * fixed QpEncoder safeMapShareId property
  51. 4.1.6 (2012-03-23)
  52. ------------------
  53. * reduced the size of serialized Messages
  54. 4.1.5 (2012-01-04)
  55. ------------------
  56. * enforced Swift_Spool::queueMessage() to return a Boolean
  57. * made an optimization to the memory spool: start the transport only when required
  58. * prevented stream_socket_client() from generating an error and throw a Swift_TransportException instead
  59. * fixed a PHP warning when calling to mail() when safe_mode is off
  60. * many doc tweaks
  61. 4.1.4 (2011-12-16)
  62. ------------------
  63. * added a memory spool (Swift_MemorySpool)
  64. * fixed too many opened files when sending emails with attachments
  65. 4.1.3 (2011-10-27)
  66. ------------------
  67. * added STARTTLS support
  68. * added missing @return tags on fluent methods
  69. * added a MessageLogger plugin that logs all sent messages
  70. * added composer.json
  71. 4.1.2 (2011-09-13)
  72. ------------------
  73. * fixed wrong detection of magic_quotes_runtime
  74. * fixed fatal errors when no To or Subject header has been set
  75. * fixed charset on parameter header continuations
  76. * added documentation about how to install Swiftmailer from the PEAR channel
  77. * fixed various typos and markup problem in the documentation
  78. * fixed warning when cache directory does not exist
  79. * fixed "slashes are escaped" bug
  80. * changed require_once() to require() in autoload
  81. 4.1.1 (2011-07-04)
  82. ------------------
  83. * added missing file in PEAR package
  84. 4.1.0 (2011-06-30)
  85. ------------------
  86. * documentation has been converted to ReST
  87. 4.1.0 RC1 (2011-06-17)
  88. ----------------------
  89. New features:
  90. * changed the Decorator Plugin to allow replacements in all headers
  91. * added Swift_Mime_Grammar and Swift_Validate to validate an email address
  92. * modified the autoloader to lazy-initialize Swiftmailer
  93. * removed Swift_Mailer::batchSend()
  94. * added NullTransport
  95. * added new plugins: RedirectingPlugin and ImpersonatePlugin
  96. * added a way to send messages asynchronously (Spool)