Bump version to 1.2.8

release-1.2
Thomas Bruederli 6 years ago
parent 5b7e9a2c96
commit 9f91018a16

@ -1,6 +1,8 @@
CHANGELOG Roundcube Webmail
===========================
RELEASE 1.2.8
-------------
- Fix check_request() bypass in places using get_uids() [CVE-2018-9846] (#6238)
- Fix possible IMAP command injection vulnerability [CVE-2018-9846] (#6229)
- Fix security issue in remote content blocking on HTML image and style tags (#6178)

@ -2,7 +2,7 @@
/**
+-------------------------------------------------------------------------+
| Roundcube Webmail IMAP Client |
| Version 1.2.7 |
| Version 1.2.8 |
| |
| Copyright (C) 2005-2017, The Roundcube Dev Team |
| |

@ -3,7 +3,7 @@
/**
+-------------------------------------------------------------------------+
| Roundcube Webmail setup tool |
| Version 1.2.7 |
| Version 1.2.8 |
| |
| Copyright (C) 2009-2017, The Roundcube Dev Team |
| |

@ -21,7 +21,7 @@
*/
// application constants
define('RCMAIL_VERSION', '1.2.7');
define('RCMAIL_VERSION', '1.2.8');
define('RCMAIL_START', microtime(true));
if (!defined('INSTALL_PATH')) {

@ -55,7 +55,7 @@ foreach ($config as $optname => $optval) {
}
// framework constants
define('RCUBE_VERSION', '1.2.7');
define('RCUBE_VERSION', '1.2.8');
define('RCUBE_CHARSET', 'UTF-8');
if (!defined('RCUBE_LIB_DIR')) {

Loading…
Cancel
Save