From 4e1bc7aa1d0c24cf4af43c08a88d082ece58cc0d Mon Sep 17 00:00:00 2001 From: Torsten Dittmann Date: Thu, 22 Jul 2021 11:02:07 +0200 Subject: [PATCH 1/3] feat(0.9.2): release --- app/init.php | 4 ++-- src/Appwrite/Migration/Migration.php | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/app/init.php b/app/init.php index a139a4f84..3ad673249 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 = 149; -const APP_VERSION_STABLE = '0.9.1'; +const APP_CACHE_BUSTER = 150; +const APP_VERSION_STABLE = '0.9.2'; 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 bd03e7d33..8eae515b9 100644 --- a/src/Appwrite/Migration/Migration.php +++ b/src/Appwrite/Migration/Migration.php @@ -40,6 +40,7 @@ abstract class Migration '0.8.0' => 'V07', '0.9.0' => 'V08', '0.9.1' => 'V08', + '0.9.2' => 'V08', ]; /** From d235ed71908c9bdcf5c1ba1bfe66a8aa92e06dec Mon Sep 17 00:00:00 2001 From: Torsten Dittmann Date: Thu, 22 Jul 2021 11:04:17 +0200 Subject: [PATCH 2/3] chore(changelog): add 0.9.2 --- CHANGES.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGES.md b/CHANGES.md index 94b56bc7a..54b353bd9 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,9 @@ +# Version 0.9.2 + +## Bugs + +- Fixed JWT session validation (#1408) + # Version 0.9.1 ## Bugs From 5815caf01e72f3f7073a4a276a606a323192404a Mon Sep 17 00:00:00 2001 From: Torsten Dittmann Date: Thu, 22 Jul 2021 17:45:15 +0200 Subject: [PATCH 3/3] chore(changelog): update changelog --- CHANGES.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGES.md b/CHANGES.md index 54b353bd9..ca647e748 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -3,6 +3,8 @@ ## Bugs - Fixed JWT session validation (#1408) +- Fixed passing valid JWT session to Cloud Functions (#1421) +- Fixed race condition when uploading and extracting bigger Cloud Functions (#1419) # Version 0.9.1