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:
|
||||
|
||||
```json
|
||||
"phpmailer/phpmailer": "^6.10.0"
|
||||
"phpmailer/phpmailer": "^6.11.0"
|
||||
```
|
||||
|
||||
or run
|
||||
|
|
|
|||
|
|
@ -1,15 +1,20 @@
|
|||
# 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.
|
||||
* Also support empty tokens.
|
||||
* Avoid bogus static analyser deprecation warnings in `setFrom`.
|
||||
* 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.
|
||||
* Don't use `-t` switch when calling qmail.
|
||||
* Checking for interrupted system calls now works in languages other than English.
|
||||
* 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)
|
||||
* 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": {
|
||||
"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-openssl": "Needed for secure SMTP sending and DKIM signing",
|
||||
"greew/oauth2-azure-provider": "Needed for Microsoft Azure XOAUTH2 authentication",
|
||||
"hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
|
||||
"league/oauth2-google": "Needed for Google XOAUTH2 authentication",
|
||||
"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)",
|
||||
"ext-imap": "Needed to support advanced email address parsing according to RFC822"
|
||||
"thenetworg/oauth2-azure": "Needed for Microsoft XOAUTH2 authentication"
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
|
|
|
|||
|
|
@ -768,7 +768,7 @@ class PHPMailer
|
|||
*
|
||||
* @var string
|
||||
*/
|
||||
const VERSION = '6.10.0';
|
||||
const VERSION = '6.11.0';
|
||||
|
||||
/**
|
||||
* Error severity: message only, continue processing.
|
||||
|
|
|
|||
|
|
@ -46,7 +46,7 @@ class POP3
|
|||
*
|
||||
* @var string
|
||||
*/
|
||||
const VERSION = '6.10.0';
|
||||
const VERSION = '6.11.0';
|
||||
|
||||
/**
|
||||
* Default POP3 port number.
|
||||
|
|
|
|||
|
|
@ -35,7 +35,7 @@ class SMTP
|
|||
*
|
||||
* @var string
|
||||
*/
|
||||
const VERSION = '6.10.0';
|
||||
const VERSION = '6.11.0';
|
||||
|
||||
/**
|
||||
* SMTP line break constant.
|
||||
|
|
|
|||
Loading…
Reference in New Issue