You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

192 lines
5.6KB

  1. Changelog
  2. =========
  3. 5.3.1 (2014-12-05)
  4. ------------------
  5. * fixed cloning of messages with attachments
  6. 5.3.0 (2014-10-04)
  7. ------------------
  8. * fixed cloning when using signers
  9. * reverted removal of Swift_Encoding
  10. * drop support for PHP 5.2.x
  11. 5.2.2 (2014-09-20)
  12. ------------------
  13. * fixed Japanese support
  14. * fixed the memory spool when the message changes when in the pool
  15. * added support for cloning messages
  16. * fixed PHP warning in the redirect plugin
  17. * changed the way to and cc-ed email are sent to only use one transaction
  18. 5.2.1 (2014-06-13)
  19. ------------------
  20. * SECURITY FIX: fixed CLI escaping when using sendmail as a transport
  21. Prior to 5.2.1, the sendmail transport (Swift_Transport_SendmailTransport)
  22. was vulnerable to an arbitrary shell execution if the "From" header came
  23. from a non-trusted source and no "Return-Path" is configured.
  24. * fixed parameter in DKIMSigner
  25. * fixed compatibility with PHP < 5.4
  26. 5.2.0 (2014-05-08)
  27. ------------------
  28. * fixed Swift_ByteStream_FileByteStream::read() to match to the specification
  29. * fixed from-charset and to-charset arguments in mbstring_convert_encoding() usages
  30. * fixed infinite loop in StreamBuffer
  31. * fixed NullTransport to return the number of ignored emails instead of 0
  32. * Use phpunit and mockery for unit testing (realityking)
  33. 5.1.0 (2014-03-18)
  34. ------------------
  35. * fixed data writing to stream when sending large messages
  36. * added support for libopendkim (https://github.com/xdecock/php-opendkim)
  37. * merged SignedMessage and Message
  38. * added Gmail XOAuth2 authentication
  39. * updated the list of known mime types
  40. * added NTLM authentication
  41. 5.0.3 (2013-12-03)
  42. ------------------
  43. * fixed double-dot bug
  44. * fixed DKIM signer
  45. 5.0.2 (2013-08-30)
  46. ------------------
  47. * handled correct exception type while reading IoBuffer output
  48. 5.0.1 (2013-06-17)
  49. ------------------
  50. * changed the spool to only start the transport when a mail has to be sent
  51. * fixed compatibility with PHP 5.2
  52. * fixed LICENSE file
  53. 5.0.0 (2013-04-30)
  54. ------------------
  55. * changed the license from LGPL to MIT
  56. 4.3.1 (2013-04-11)
  57. ------------------
  58. * removed usage of the native QP encoder when the charset is not UTF-8
  59. * fixed usage of uniqid to avoid collisions
  60. * made a performance improvement when tokenizing large headers
  61. * fixed usage of the PHP native QP encoder on PHP 5.4.7+
  62. 4.3.0 (2013-01-08)
  63. ------------------
  64. * made the temporary directory configurable via the TMPDIR env variable
  65. * added S/MIME signer and encryption support
  66. 4.2.2 (2012-10-25)
  67. ------------------
  68. * added the possibility to throttle messages per second in ThrottlerPlugin (mostly for Amazon SES)
  69. * switched mime.qpcontentencoder to automatically use the PHP native encoder on PHP 5.4.7+
  70. * allowed specifying a whitelist with regular expressions in RedirectingPlugin
  71. 4.2.1 (2012-07-13)
  72. ------------------
  73. * changed the coding standards to PSR-1/2
  74. * fixed issue with autoloading
  75. * added NativeQpContentEncoder to enhance performance (for PHP 5.3+)
  76. 4.2.0 (2012-06-29)
  77. ------------------
  78. * added documentation about how to use the Japanese support introduced in 4.1.8
  79. * added a way to override the default configuration in a lazy way
  80. * changed the PEAR init script to lazy-load the initialization
  81. * fixed a bug when calling Swift_Preferences before anything else (regression introduced in 4.1.8)
  82. 4.1.8 (2012-06-17)
  83. ------------------
  84. * added Japanese iso-2022-jp support
  85. * changed the init script to lazy-load the initialization
  86. * fixed docblocks (@id) which caused some problems with libraries parsing the dobclocks
  87. * fixed Swift_Mime_Headers_IdentificationHeader::setId() when passed an array of ids
  88. * fixed encoding of email addresses in headers
  89. * added replacements setter to the Decorator plugin
  90. 4.1.7 (2012-04-26)
  91. ------------------
  92. * fixed QpEncoder safeMapShareId property
  93. 4.1.6 (2012-03-23)
  94. ------------------
  95. * reduced the size of serialized Messages
  96. 4.1.5 (2012-01-04)
  97. ------------------
  98. * enforced Swift_Spool::queueMessage() to return a Boolean
  99. * made an optimization to the memory spool: start the transport only when required
  100. * prevented stream_socket_client() from generating an error and throw a Swift_TransportException instead
  101. * fixed a PHP warning when calling to mail() when safe_mode is off
  102. * many doc tweaks
  103. 4.1.4 (2011-12-16)
  104. ------------------
  105. * added a memory spool (Swift_MemorySpool)
  106. * fixed too many opened files when sending emails with attachments
  107. 4.1.3 (2011-10-27)
  108. ------------------
  109. * added STARTTLS support
  110. * added missing @return tags on fluent methods
  111. * added a MessageLogger plugin that logs all sent messages
  112. * added composer.json
  113. 4.1.2 (2011-09-13)
  114. ------------------
  115. * fixed wrong detection of magic_quotes_runtime
  116. * fixed fatal errors when no To or Subject header has been set
  117. * fixed charset on parameter header continuations
  118. * added documentation about how to install Swiftmailer from the PEAR channel
  119. * fixed various typos and markup problem in the documentation
  120. * fixed warning when cache directory does not exist
  121. * fixed "slashes are escaped" bug
  122. * changed require_once() to require() in autoload
  123. 4.1.1 (2011-07-04)
  124. ------------------
  125. * added missing file in PEAR package
  126. 4.1.0 (2011-06-30)
  127. ------------------
  128. * documentation has been converted to ReST
  129. 4.1.0 RC1 (2011-06-17)
  130. ----------------------
  131. New features:
  132. * changed the Decorator Plugin to allow replacements in all headers
  133. * added Swift_Mime_Grammar and Swift_Validate to validate an email address
  134. * modified the autoloader to lazy-initialize Swiftmailer
  135. * removed Swift_Mailer::batchSend()
  136. * added NullTransport
  137. * added new plugins: RedirectingPlugin and ImpersonatePlugin
  138. * added a way to send messages asynchronously (Spool)