6.6.5
This commit is contained in:
parent
0ca9768e59
commit
8b6386d741
|
|
@ -1,5 +1,14 @@
|
||||||
# PHPMailer Change Log
|
# PHPMailer Change Log
|
||||||
|
|
||||||
|
## Version 6.6.5 (October 7th, 2022)
|
||||||
|
* Don't try to issue RSET if there has been a connection error
|
||||||
|
* Reject attempts to add folders as attachments
|
||||||
|
* Don't suppress earlier error messages on close()
|
||||||
|
* Handle Host === null better
|
||||||
|
* Update Danish and Polish translations
|
||||||
|
* Change recommendation for Microsoft OAuth package to thenetworg/oauth2-azure
|
||||||
|
* Bump some GitHub action versions
|
||||||
|
|
||||||
## Version 6.6.4 (August 22nd, 2022)
|
## Version 6.6.4 (August 22nd, 2022)
|
||||||
* Update Greek translation
|
* Update Greek translation
|
||||||
* Add text/csv MIME type
|
* Add text/csv MIME type
|
||||||
|
|
|
||||||
|
|
@ -51,7 +51,7 @@
|
||||||
"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",
|
||||||
"stevenmaguire/oauth2-microsoft": "Needed for Microsoft XOAUTH2 authentication",
|
"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)"
|
||||||
},
|
},
|
||||||
"autoload": {
|
"autoload": {
|
||||||
|
|
|
||||||
|
|
@ -750,7 +750,7 @@ class PHPMailer
|
||||||
*
|
*
|
||||||
* @var string
|
* @var string
|
||||||
*/
|
*/
|
||||||
const VERSION = '6.6.4';
|
const VERSION = '6.6.5';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 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.6.4';
|
const VERSION = '6.6.5';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Default POP3 port number.
|
* Default POP3 port number.
|
||||||
|
|
|
||||||
|
|
@ -35,7 +35,7 @@ class SMTP
|
||||||
*
|
*
|
||||||
* @var string
|
* @var string
|
||||||
*/
|
*/
|
||||||
const VERSION = '6.6.4';
|
const VERSION = '6.6.5';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* SMTP line break constant.
|
* SMTP line break constant.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue