From a44a951285e35196f7b51c30409ce94eaa328156 Mon Sep 17 00:00:00 2001 From: Torsten Dittmann Date: Wed, 18 May 2022 17:09:06 +0200 Subject: [PATCH 1/3] chore: prepare 0.14.1 release --- CHANGES.md | 8 ++++++++ README-CN.md | 6 +++--- README.md | 6 +++--- app/init.php | 4 ++-- src/Appwrite/Migration/Migration.php | 1 + 5 files changed, 17 insertions(+), 8 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 55a2764393..07976140f3 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,11 @@ +# Version 0.14.1 + +## Bugs +- Fixed scheduled Cloud Functions execution with cron-job by @TorstenDittmann in https://github.com/appwrite/appwrite/pull/3245 +- Fixed missing runtime icons by @TorstenDittmann in https://github.com/appwrite/appwrite/pull/3234 +- Fixed Google OAuth by @Meldiron in https://github.com/appwrite/appwrite/pull/3236 +- Fixed allowing `localhost` as the main domain by @Meldiron in https://github.com/appwrite/appwrite/pull/3237 +- Fixed Installation overriding default env variables by @TorstenDittmann in https://github.com/appwrite/appwrite/pull/3241 # Version 0.14.0 ## Features diff --git a/README-CN.md b/README-CN.md index 826163ee2b..f95bd12f93 100644 --- a/README-CN.md +++ b/README-CN.md @@ -59,7 +59,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.14.0 + appwrite/appwrite:0.14.1 ``` ### Windows @@ -71,7 +71,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.14.0 + appwrite/appwrite:0.14.1 ``` #### PowerShell @@ -81,7 +81,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.14.0 + appwrite/appwrite:0.14.1 ``` 运行后,可以在浏览器上访问 http://localhost 找到 Appwrite 控制台。在非 Linux 的本机主机上完成安装后,服务器可能需要几分钟才能启动。 diff --git a/README.md b/README.md index 7ca23330ec..5254547afa 100644 --- a/README.md +++ b/README.md @@ -62,7 +62,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.14.0 + appwrite/appwrite:0.14.1 ``` ### Windows @@ -74,7 +74,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.14.0 + appwrite/appwrite:0.14.1 ``` #### PowerShell @@ -84,7 +84,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.14.0 + appwrite/appwrite:0.14.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 37dbf7d20b..7583897d0a 100644 --- a/app/init.php +++ b/app/init.php @@ -74,8 +74,8 @@ const APP_LIMIT_ANTIVIRUS = 20000000; //20MB const APP_LIMIT_ENCRYPTION = 20000000; //20MB const APP_LIMIT_COMPRESSION = 20000000; //20MB const APP_LIMIT_ARRAY_PARAMS_SIZE = 100; // Default maximum of how many elements can there be in API parameter that expects array value -const APP_CACHE_BUSTER = 304; -const APP_VERSION_STABLE = '0.14.0'; +const APP_CACHE_BUSTER = 305; +const APP_VERSION_STABLE = '0.14.1'; const APP_DATABASE_ATTRIBUTE_EMAIL = 'email'; const APP_DATABASE_ATTRIBUTE_ENUM = 'enum'; const APP_DATABASE_ATTRIBUTE_IP = 'ip'; diff --git a/src/Appwrite/Migration/Migration.php b/src/Appwrite/Migration/Migration.php index b5c32733ea..b479a42262 100644 --- a/src/Appwrite/Migration/Migration.php +++ b/src/Appwrite/Migration/Migration.php @@ -43,6 +43,7 @@ abstract class Migration '0.13.3' => 'V12', '0.13.4' => 'V12', '0.14.0' => 'V13', + '0.14.1' => 'V13', ]; /** From 637d999fff4189e43d5c28ddaab21b7029f8e4cd Mon Sep 17 00:00:00 2001 From: Torsten Dittmann Date: Wed, 18 May 2022 17:13:52 +0200 Subject: [PATCH 2/3] Update CHANGES.md --- CHANGES.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGES.md b/CHANGES.md index 07976140f3..bc0f0fa864 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -6,6 +6,7 @@ - Fixed Google OAuth by @Meldiron in https://github.com/appwrite/appwrite/pull/3236 - Fixed allowing `localhost` as the main domain by @Meldiron in https://github.com/appwrite/appwrite/pull/3237 - Fixed Installation overriding default env variables by @TorstenDittmann in https://github.com/appwrite/appwrite/pull/3241 + # Version 0.14.0 ## Features From cd5fd650cc53224b5052bc0d272ee34447cca062 Mon Sep 17 00:00:00 2001 From: Torsten Dittmann Date: Wed, 18 May 2022 17:17:18 +0200 Subject: [PATCH 3/3] Update CHANGES.md --- CHANGES.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index bc0f0fa864..9aab3afb80 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,11 +1,11 @@ # Version 0.14.1 ## Bugs -- Fixed scheduled Cloud Functions execution with cron-job by @TorstenDittmann in https://github.com/appwrite/appwrite/pull/3245 -- Fixed missing runtime icons by @TorstenDittmann in https://github.com/appwrite/appwrite/pull/3234 -- Fixed Google OAuth by @Meldiron in https://github.com/appwrite/appwrite/pull/3236 -- Fixed allowing `localhost` as the main domain by @Meldiron in https://github.com/appwrite/appwrite/pull/3237 -- Fixed Installation overriding default env variables by @TorstenDittmann in https://github.com/appwrite/appwrite/pull/3241 +* Fixed scheduled Cloud Functions execution with cron-job by @TorstenDittmann in https://github.com/appwrite/appwrite/pull/3245 +* Fixed missing runtime icons by @TorstenDittmann in https://github.com/appwrite/appwrite/pull/3234 +* Fixed Google OAuth by @Meldiron in https://github.com/appwrite/appwrite/pull/3236 +* Fixed certificate generation when hostname was set to 'localhost' by @Meldiron in https://github.com/appwrite/appwrite/pull/3237 +* Fixed Installation overriding default env variables by @TorstenDittmann in https://github.com/appwrite/appwrite/pull/3241 # Version 0.14.0