From afbc39b34bcc03029030b54230c6b4b3192c4629 Mon Sep 17 00:00:00 2001 From: Jake Barnby Date: Wed, 30 Aug 2023 15:45:38 -0400 Subject: [PATCH 1/3] Update version --- app/init.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/init.php b/app/init.php index e7421b275c..439cef7a80 100644 --- a/app/init.php +++ b/app/init.php @@ -108,8 +108,8 @@ const APP_LIMIT_LIST_DEFAULT = 25; // Default maximum number of items to return const APP_KEY_ACCCESS = 24 * 60 * 60; // 24 hours const APP_USER_ACCCESS = 24 * 60 * 60; // 24 hours const APP_CACHE_UPDATE = 24 * 60 * 60; // 24 hours -const APP_CACHE_BUSTER = 507; -const APP_VERSION_STABLE = '1.4.0'; +const APP_CACHE_BUSTER = 508; +const APP_VERSION_STABLE = '1.4.1'; const APP_DATABASE_ATTRIBUTE_EMAIL = 'email'; const APP_DATABASE_ATTRIBUTE_ENUM = 'enum'; const APP_DATABASE_ATTRIBUTE_IP = 'ip'; From e018c29b712a6595e26305091935a645d072d59a Mon Sep 17 00:00:00 2001 From: Jake Barnby Date: Wed, 30 Aug 2023 15:48:01 -0400 Subject: [PATCH 2/3] Bump .NET SDK version --- app/config/platforms.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/config/platforms.php b/app/config/platforms.php index 012c3fef6f..6efaa3b50d 100644 --- a/app/config/platforms.php +++ b/app/config/platforms.php @@ -357,7 +357,7 @@ return [ [ 'key' => 'dotnet', 'name' => '.NET', - 'version' => '0.4.2', + 'version' => '0.5.0', 'url' => 'https://github.com/appwrite/sdk-for-dotnet', 'package' => 'https://www.nuget.org/packages/Appwrite', 'enabled' => true, From 24bd21e980a0bc256b40cc3c72033e8d77abd300 Mon Sep 17 00:00:00 2001 From: Jake Barnby Date: Wed, 30 Aug 2023 16:05:51 -0400 Subject: [PATCH 3/3] Update version --- CHANGES.md | 14 ++++++++++++++ README-CN.md | 6 +++--- README.md | 6 +++--- src/Appwrite/Migration/Migration.php | 1 + 4 files changed, 21 insertions(+), 6 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 864784259b..4e1d90e180 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,17 @@ +# Version 1.4.1 + +## Features + +- Add upgrade task [#6068](https://github.com/appwrite/appwrite/pull/6068) + +## Fixes + +- Fix VCS/migration/assistant scopes [#6071](https://github.com/appwrite/appwrite/pull/6071) + +## Changes + +- Update console to 3.0.2 [#6071](https://github.com/appwrite/appwrite/pull/6071) + # Version 1.4.0 ## Features diff --git a/README-CN.md b/README-CN.md index b4ce78b1f3..f960943477 100644 --- a/README-CN.md +++ b/README-CN.md @@ -66,7 +66,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:1.4.0 + appwrite/appwrite:1.4.1 ``` ### Windows @@ -78,7 +78,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:1.4.0 + appwrite/appwrite:1.4.1 ``` #### PowerShell @@ -88,7 +88,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:1.4.0 + appwrite/appwrite:1.4.1 ``` 运行后,可以在浏览器上访问 http://localhost 找到 Appwrite 控制台。在非 Linux 的本机主机上完成安装后,服务器可能需要几分钟才能启动。 diff --git a/README.md b/README.md index ddc8a1e72a..b205b18d8a 100644 --- a/README.md +++ b/README.md @@ -75,7 +75,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:1.4.0 + appwrite/appwrite:1.4.1 ``` ### Windows @@ -87,7 +87,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:1.4.0 + appwrite/appwrite:1.4.1 ``` #### PowerShell @@ -97,7 +97,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:1.4.0 + appwrite/appwrite:1.4.1 ``` Once the Docker installation is complete, 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 completing the installation. diff --git a/src/Appwrite/Migration/Migration.php b/src/Appwrite/Migration/Migration.php index b4d09b2ca8..a73fa47ca7 100644 --- a/src/Appwrite/Migration/Migration.php +++ b/src/Appwrite/Migration/Migration.php @@ -65,6 +65,7 @@ abstract class Migration '1.3.7' => 'V18', '1.3.8' => 'V18', '1.4.0' => 'V19', + '1.4.1' => 'V19', ]; /**