0
0
mirror of https://github.com/PHPMailer/PHPMailer.git synced 2024-09-19 17:42:14 +02:00
This commit is contained in:
Marcus Bointon 2020-03-19 15:29:37 +01:00
parent db4d3d0cdf
commit acba50393d
No known key found for this signature in database
GPG Key ID: DE31CD6EB646AA24
5 changed files with 8 additions and 5 deletions

View File

@ -1 +1 @@
5.2.27
5.2.28

View File

@ -1,5 +1,8 @@
# ChangeLog
## Version 5.2.28 (March 19th, 2020)
* Avoid deprecation notices in recent PHP versions
## Version 5.2.27 (November 15th 2018)
* **SECURITY** Fix potential object injection vulnerability. Reported by Sehun Oh of cyberone.kr.
* Note that **the 5.2 branch is now deprecated** and will not receive security updates after 31st December 2018.

View File

@ -31,7 +31,7 @@ class PHPMailer
* The PHPMailer Version number.
* @var string
*/
public $Version = '5.2.27';
public $Version = '5.2.28';
/**
* Email priority.

View File

@ -34,7 +34,7 @@ class POP3
* @var string
* @access public
*/
public $Version = '5.2.27';
public $Version = '5.2.28';
/**
* Default POP3 port number.

View File

@ -30,7 +30,7 @@ class SMTP
* The PHPMailer SMTP version number.
* @var string
*/
const VERSION = '5.2.27';
const VERSION = '5.2.28';
/**
* SMTP line break constant.
@ -81,7 +81,7 @@ class SMTP
* @deprecated Use the `VERSION` constant instead
* @see SMTP::VERSION
*/
public $Version = '5.2.27';
public $Version = '5.2.28';
/**
* SMTP server port number.