Bump version + add CVE ID

pull/6072/head 1.3.3
Thomas Bruederli 7 years ago
parent 46faac4a6e
commit d84391d2c8

@ -1,9 +1,11 @@
CHANGELOG Roundcube Webmail
===========================
RELEASE 1.3.3
-------------
- Fix decoding of mailto: links with + character in HTML messages (#6020)
- Fix false reporting of failed upgrade in installto.sh (#6019)
- Fix file disclosure vulnerability caused by insuficient input validation in relation to attachment plugins (#6026)
- Fix file disclosure vulnerability caused by insufficient input validation [CVE-2017-16651] (#6026)
- Fix mangled non-ASCII characters in links in HTML messages (#6028)
RELEASE 1.3.2

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

@ -3,7 +3,7 @@
/**
+-------------------------------------------------------------------------+
| Roundcube Webmail setup tool |
| Version 1.3.2 |
| Version 1.3.3 |
| |
| Copyright (C) 2009-2015, The Roundcube Dev Team |
| |

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

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

@ -3,7 +3,7 @@
/*
+-----------------------------------------------------------------------+
| Roundcube Webmail IMAP Client |
| Version 1.3.2 |
| Version 1.3.3 |
| |
| Copyright (C) 2005-2017, The Roundcube Dev Team |
| |

Loading…
Cancel
Save