From b9944a885af1de602ce1b639906d2ba0f7ae9c43 Mon Sep 17 00:00:00 2001 From: Torsten Dittmann Date: Fri, 3 Sep 2021 13:53:43 +0200 Subject: [PATCH 1/3] chore(changes): 0.10.1 --- CHANGES.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CHANGES.md b/CHANGES.md index 0efecfd0f..5a6bb4ce1 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,10 @@ +# Version 0.10.1 + +## Bugs +- Improved error messages on Migration regarding invalid document structures (#1576) +- Fixed Console SDK endpoint to work with multiple proxies (#1575) +- Fixed last function environments variables being corrupt (#1577) + # Version 0.10.0 ## Features From 1910cceafb3b5a826382cafe62ce74ebfc5df8c9 Mon Sep 17 00:00:00 2001 From: Torsten Dittmann Date: Fri, 3 Sep 2021 13:55:06 +0200 Subject: [PATCH 2/3] chore(changes): 0.10.1 --- CHANGES.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGES.md b/CHANGES.md index 5a6bb4ce1..a01ddb708 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -4,6 +4,7 @@ - Improved error messages on Migration regarding invalid document structures (#1576) - Fixed Console SDK endpoint to work with multiple proxies (#1575) - Fixed last function environments variables being corrupt (#1577) +- Fixed `_APP_FUNCTIONS_CPUS` variable for cloud functions (#1568) # Version 0.10.0 From bc4545a503724e07224f7418de04b0aa345020ec Mon Sep 17 00:00:00 2001 From: Torsten Dittmann Date: Fri, 3 Sep 2021 13:57:49 +0200 Subject: [PATCH 3/3] feat(appwrite): update version number to 0.10.1 --- README.md | 6 +++--- app/init.php | 2 +- src/Appwrite/Migration/Migration.php | 1 + 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 54154ff4d..48e4d5272 100644 --- a/README.md +++ b/README.md @@ -57,7 +57,7 @@ docker run -it --rm \ --volume /var/run/docker.sock:/var/run/docker.sock \ --volume "$(pwd)"/appwrite:/usr/src/code/appwrite:rw \ --entrypoint="install" \ - appwrite/appwrite:0.10.0 + appwrite/appwrite:0.10.1 ``` ### Windows @@ -69,7 +69,7 @@ docker run -it --rm ^ --volume //var/run/docker.sock:/var/run/docker.sock ^ --volume "%cd%"/appwrite:/usr/src/code/appwrite:rw ^ --entrypoint="install" ^ - appwrite/appwrite:0.10.0 + appwrite/appwrite:0.10.1 ``` #### PowerShell @@ -79,7 +79,7 @@ docker run -it --rm , --volume /var/run/docker.sock:/var/run/docker.sock , --volume ${pwd}/appwrite:/usr/src/code/appwrite:rw , --entrypoint="install" , - appwrite/appwrite:0.10.0 + appwrite/appwrite:0.10.1 ``` Once the Docker installation completes, go to http://localhost to access the Appwrite console from your browser. Please note that on non-linux native hosts, the server might take a few minutes to start after installation completes. diff --git a/app/init.php b/app/init.php index a6ae678d7..aa112b483 100644 --- a/app/init.php +++ b/app/init.php @@ -49,7 +49,7 @@ const APP_MODE_DEFAULT = 'default'; const APP_MODE_ADMIN = 'admin'; const APP_PAGING_LIMIT = 12; const APP_CACHE_BUSTER = 160; -const APP_VERSION_STABLE = '0.10.0'; +const APP_VERSION_STABLE = '0.10.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 85ddf14ac..5250ffd76 100644 --- a/src/Appwrite/Migration/Migration.php +++ b/src/Appwrite/Migration/Migration.php @@ -44,6 +44,7 @@ abstract class Migration '0.9.3' => 'V08', '0.9.4' => 'V08', '0.10.0' => 'V09', + '0.10.1' => 'V09', ]; /**