From 1653571ce8234bbc11e2722fb7069438cc37fa90 Mon Sep 17 00:00:00 2001 From: Torsten Dittmann Date: Fri, 11 Feb 2022 13:19:02 +0100 Subject: [PATCH] feat: versions --- CHANGES.md | 13 +++++++++++++ app/init.php | 4 ++-- src/Appwrite/Migration/Migration.php | 1 + 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 61fc8d0635..940bbcd0f3 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,16 @@ +# Version 0.11.1 + +## Bugs +- Fix security vulnerabilites in the console + +## Upgrades + +- Upgraded `redis` extenstion to version 5.3.6 +- Upgraded `swoole` extenstion to version 4.8.6 +- Upgraded `imagick` extenstion to version 3.7.0 +- Upgraded `yaml` extenstion to version 2.2.2 +- Upgraded `maxminddb` extenstion to version 1.11.0 + # Version 0.11.0 ## Features diff --git a/app/init.php b/app/init.php index 89f1368be3..d056099a88 100644 --- a/app/init.php +++ b/app/init.php @@ -47,8 +47,8 @@ const APP_USERAGENT = APP_NAME.'-Server v%s. Please report abuse at %s'; const APP_MODE_DEFAULT = 'default'; const APP_MODE_ADMIN = 'admin'; const APP_PAGING_LIMIT = 12; -const APP_CACHE_BUSTER = 170; -const APP_VERSION_STABLE = '0.11.0'; +const APP_CACHE_BUSTER = 171; +const APP_VERSION_STABLE = '0.11.1'; const APP_STORAGE_UPLOADS = '/storage/uploads'; const APP_STORAGE_FUNCTIONS = '/storage/functions'; const APP_STORAGE_CACHE = '/storage/cache'; diff --git a/src/Appwrite/Migration/Migration.php b/src/Appwrite/Migration/Migration.php index 0498c1c034..d08cbd8aa2 100644 --- a/src/Appwrite/Migration/Migration.php +++ b/src/Appwrite/Migration/Migration.php @@ -49,6 +49,7 @@ abstract class Migration '0.10.3' => 'V09', '0.10.4' => 'V09', '0.11.0' => 'V10', + '0.11.1' => 'V10', ]; /**