Version and changelog
This commit is contained in:
parent
39a1bc905c
commit
9500c37b70
|
|
@ -48,7 +48,7 @@ This software is distributed under the [LGPL 2.1](https://www.gnu.org/licenses/o
|
||||||
PHPMailer is available on [Packagist](https://packagist.org/packages/phpmailer/phpmailer) (using semantic versioning), and installation via [Composer](https://getcomposer.org) is the recommended way to install PHPMailer. Just add this line to your `composer.json` file:
|
PHPMailer is available on [Packagist](https://packagist.org/packages/phpmailer/phpmailer) (using semantic versioning), and installation via [Composer](https://getcomposer.org) is the recommended way to install PHPMailer. Just add this line to your `composer.json` file:
|
||||||
|
|
||||||
```json
|
```json
|
||||||
"phpmailer/phpmailer": "^6.10.0"
|
"phpmailer/phpmailer": "^6.11.0"
|
||||||
```
|
```
|
||||||
|
|
||||||
or run
|
or run
|
||||||
|
|
|
||||||
|
|
@ -1,15 +1,20 @@
|
||||||
# PHPMailer Change Log
|
# PHPMailer Change Log
|
||||||
|
|
||||||
## WIP
|
## Version 6.11.0 (September 29th, 2025)
|
||||||
* Add support for [RFC4954](https://www.rfc-editor.org/rfc/rfc4954#section-4) two-part authentication for large XOAUTH2 tokens.
|
* Add support for [RFC4954](https://www.rfc-editor.org/rfc/rfc4954#section-4) two-part authentication for large XOAUTH2 tokens.
|
||||||
* Also support empty tokens.
|
* Also support empty tokens.
|
||||||
* Avoid bogus static analyser deprecation warnings in `setFrom`.
|
* Avoid bogus static analyser deprecation warnings in `setFrom`.
|
||||||
* Make language loading entirely static, thanks to @SirLouen.
|
* Make language loading entirely static, thanks to @SirLouen.
|
||||||
* Emit warnings when `parseAddresses()` is used without IMAP extension.
|
* Emit warnings when `parseAddresses()` is used without the IMAP extension.
|
||||||
|
* Handle `mb_decode_mimeheader` changes from PHP 8.3+.
|
||||||
|
* Deprecate the charset param to parseAddresses.
|
||||||
* Fix PHP 8.5 linting issue.
|
* Fix PHP 8.5 linting issue.
|
||||||
* Don't use `-t` switch when calling qmail.
|
* Don't use `-t` switch when calling qmail.
|
||||||
* Checking for interrupted system calls now works in languages other than English.
|
* Checking for interrupted system calls now works in languages other than English.
|
||||||
* Add support for extracting gmail transaction IDs after sending.
|
* Add support for extracting gmail transaction IDs after sending.
|
||||||
|
* For consistency, the protected `ReplyTo` property has been changed to match the format used for other address arrays.
|
||||||
|
* Fix line length issues when using S/MIME signing.
|
||||||
|
* Pin action runners to exact versions to avoid unexpected upstream changes.
|
||||||
|
|
||||||
## Version 6.10.0 (April 24th, 2025)
|
## Version 6.10.0 (April 24th, 2025)
|
||||||
* Add support for [RFC 6530 SMTPUTF8](https://www.rfc-editor.org/rfc/rfc6530), permitting use of UTF-8 Unicode characters everywhere, thanks to @arnt and ICANN. See `SMTPUTF8.md` for details.
|
* Add support for [RFC 6530 SMTPUTF8](https://www.rfc-editor.org/rfc/rfc6530), permitting use of UTF-8 Unicode characters everywhere, thanks to @arnt and ICANN. See `SMTPUTF8.md` for details.
|
||||||
|
|
|
||||||
|
|
@ -49,15 +49,15 @@
|
||||||
},
|
},
|
||||||
"suggest": {
|
"suggest": {
|
||||||
"decomplexity/SendOauth2": "Adapter for using XOAUTH2 authentication",
|
"decomplexity/SendOauth2": "Adapter for using XOAUTH2 authentication",
|
||||||
|
"ext-imap": "Needed to support advanced email address parsing according to RFC822",
|
||||||
"ext-mbstring": "Needed to send email in multibyte encoding charset or decode encoded addresses",
|
"ext-mbstring": "Needed to send email in multibyte encoding charset or decode encoded addresses",
|
||||||
"ext-openssl": "Needed for secure SMTP sending and DKIM signing",
|
"ext-openssl": "Needed for secure SMTP sending and DKIM signing",
|
||||||
"greew/oauth2-azure-provider": "Needed for Microsoft Azure XOAUTH2 authentication",
|
"greew/oauth2-azure-provider": "Needed for Microsoft Azure XOAUTH2 authentication",
|
||||||
"hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
|
"hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
|
||||||
"league/oauth2-google": "Needed for Google XOAUTH2 authentication",
|
"league/oauth2-google": "Needed for Google XOAUTH2 authentication",
|
||||||
"psr/log": "For optional PSR-3 debug logging",
|
"psr/log": "For optional PSR-3 debug logging",
|
||||||
"thenetworg/oauth2-azure": "Needed for Microsoft XOAUTH2 authentication",
|
|
||||||
"symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)",
|
"symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)",
|
||||||
"ext-imap": "Needed to support advanced email address parsing according to RFC822"
|
"thenetworg/oauth2-azure": "Needed for Microsoft XOAUTH2 authentication"
|
||||||
},
|
},
|
||||||
"autoload": {
|
"autoload": {
|
||||||
"psr-4": {
|
"psr-4": {
|
||||||
|
|
|
||||||
|
|
@ -768,7 +768,7 @@ class PHPMailer
|
||||||
*
|
*
|
||||||
* @var string
|
* @var string
|
||||||
*/
|
*/
|
||||||
const VERSION = '6.10.0';
|
const VERSION = '6.11.0';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Error severity: message only, continue processing.
|
* Error severity: message only, continue processing.
|
||||||
|
|
|
||||||
|
|
@ -46,7 +46,7 @@ class POP3
|
||||||
*
|
*
|
||||||
* @var string
|
* @var string
|
||||||
*/
|
*/
|
||||||
const VERSION = '6.10.0';
|
const VERSION = '6.11.0';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Default POP3 port number.
|
* Default POP3 port number.
|
||||||
|
|
|
||||||
|
|
@ -35,7 +35,7 @@ class SMTP
|
||||||
*
|
*
|
||||||
* @var string
|
* @var string
|
||||||
*/
|
*/
|
||||||
const VERSION = '6.10.0';
|
const VERSION = '6.11.0';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* SMTP line break constant.
|
* SMTP line break constant.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue