Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordizzy <diosmosis@users.noreply.github.com>2021-08-12 10:13:00 +0300
committerGitHub <noreply@github.com>2021-08-12 10:13:00 +0300
commit9873cb71e66be0f80839c76e923c3b866dd23b46 (patch)
tree3973fe06503f6099998c85e5cf435146b1b9a711 /core/Version.php
parent99136cbf3183833b5d9dedb7943873fb8c3a8da5 (diff)
avoid large amounts of notifications being added to the session (#17736)
* impose limit on notification message size when logging to notifications * if in memory notification count exceeds max notification size in session, do not attempt to new ones it to the session * Detect when session was too large to read and provide warning to user. * add some tests for Notification\ManagerTest.php * add tests for relevant DbTable members * Change session data column type to allow larger session data values. * update to rc3 * trigger new build? * fix namespace * fix test namespaces * bump version correctly
Diffstat (limited to 'core/Version.php')
-rw-r--r--core/Version.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/Version.php b/core/Version.php
index 8c0ebd1d8d..cd40ab0d9e 100644
--- a/core/Version.php
+++ b/core/Version.php
@@ -20,7 +20,8 @@ final class Version
* The current Matomo version.
* @var string
*/
- const VERSION = '4.4.1';
+ const VERSION = '4.5.0-b1';
+
const MAJOR_VERSION = 4;
public function isStableVersion($version)