From d57030731f1990f307ec6ea90d664c3fdd1d4ebe Mon Sep 17 00:00:00 2001 From: Torsten Dittmann Date: Thu, 3 Mar 2022 14:56:51 +0100 Subject: [PATCH 1/4] chore: update changelog --- CHANGES.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGES.md b/CHANGES.md index f767a0fdb2..f948e81e8a 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,8 @@ +# Version 0.13.1 (NOT RELEASED) +## Bugs +- Fixed the Console UI redirect breaking the header and navigation +- Fixed team invite to be invalid after successful use by @Malte2036 in https://github.com/appwrite/appwrite/issues/2593 + # Version 0.13.0 ## Features From 3968c0620569e83b4ead8788d0c5a53e8ba09132 Mon Sep 17 00:00:00 2001 From: Torsten Dittmann Date: Thu, 3 Mar 2022 15:14:22 +0100 Subject: [PATCH 2/4] chore: prepare version numbers to 0.13.1 --- README-CN.md | 6 +++--- README.md | 6 +++--- app/init.php | 2 +- src/Appwrite/Migration/Migration.php | 1 + 4 files changed, 8 insertions(+), 7 deletions(-) diff --git a/README-CN.md b/README-CN.md index 4857fdbe90..ec5d0489b0 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.13.0 + appwrite/appwrite:0.13.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.13.0 + appwrite/appwrite:0.13.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.13.0 + appwrite/appwrite:0.13.1 ``` 运行后,可以在浏览器上访问 http://localhost 找到 Appwrite 控制台。在非 Linux 的本机主机上完成安装后,服务器可能需要几分钟才能启动。 diff --git a/README.md b/README.md index 1005aaa94c..c879aa3b94 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.13.0 + appwrite/appwrite:0.13.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.13.0 + appwrite/appwrite:0.13.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.13.0 + appwrite/appwrite:0.13.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 fb2d7ba8c5..d52fd56b63 100644 --- a/app/init.php +++ b/app/init.php @@ -71,7 +71,7 @@ const APP_LIMIT_ENCRYPTION = 20000000; //20MB const APP_LIMIT_COMPRESSION = 20000000; //20MB const APP_LIMIT_PREVIEW = 10000000; //10MB file size limit for preview endpoint const APP_CACHE_BUSTER = 300; -const APP_VERSION_STABLE = '0.13.0'; +const APP_VERSION_STABLE = '0.13.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 2f08e8815f..700b09d9b6 100644 --- a/src/Appwrite/Migration/Migration.php +++ b/src/Appwrite/Migration/Migration.php @@ -36,6 +36,7 @@ abstract class Migration */ public static array $versions = [ '0.13.0' => 'V12', + '0.13.1' => 'V12', ]; /** From 7cf840abe50336cd8026c7cb6b5ca79fdc21da29 Mon Sep 17 00:00:00 2001 From: Torsten Dittmann Date: Fri, 4 Mar 2022 14:30:52 +0100 Subject: [PATCH 3/4] chore: update changelog --- CHANGES.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGES.md b/CHANGES.md index f948e81e8a..de20ec46bf 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,6 +1,7 @@ # Version 0.13.1 (NOT RELEASED) ## Bugs - Fixed the Console UI redirect breaking the header and navigation +- Fixed timeout in Functions API to respect the environment variable `_APP_FUNCTIONS_TIMEOUT` - Fixed team invite to be invalid after successful use by @Malte2036 in https://github.com/appwrite/appwrite/issues/2593 # Version 0.13.0 From 67ac20738545afb20c955585ffbface42d26820c Mon Sep 17 00:00:00 2001 From: Torsten Dittmann Date: Fri, 4 Mar 2022 14:31:09 +0100 Subject: [PATCH 4/4] chore: increase cache buster --- app/init.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/init.php b/app/init.php index d52fd56b63..d1569562f6 100644 --- a/app/init.php +++ b/app/init.php @@ -70,7 +70,7 @@ const APP_LIMIT_ANTIVIRUS = 20000000; //20MB const APP_LIMIT_ENCRYPTION = 20000000; //20MB const APP_LIMIT_COMPRESSION = 20000000; //20MB const APP_LIMIT_PREVIEW = 10000000; //10MB file size limit for preview endpoint -const APP_CACHE_BUSTER = 300; +const APP_CACHE_BUSTER = 301; const APP_VERSION_STABLE = '0.13.1'; const APP_DATABASE_ATTRIBUTE_EMAIL = 'email'; const APP_DATABASE_ATTRIBUTE_ENUM = 'enum';