From 1e6b37f980b7b37945731c6ed262dff09c57f412 Mon Sep 17 00:00:00 2001 From: Christy Jacob Date: Thu, 14 Sep 2023 19:53:32 +0000 Subject: [PATCH 1/9] chore: update appwrite version --- app/init.php | 2 +- composer.lock | 2 +- src/Appwrite/Migration/Migration.php | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/app/init.php b/app/init.php index 73044793e6..1e17756482 100644 --- a/app/init.php +++ b/app/init.php @@ -109,7 +109,7 @@ 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 = 509; -const APP_VERSION_STABLE = '1.4.2'; +const APP_VERSION_STABLE = '1.4.3'; const APP_DATABASE_ATTRIBUTE_EMAIL = 'email'; const APP_DATABASE_ATTRIBUTE_ENUM = 'enum'; const APP_DATABASE_ATTRIBUTE_IP = 'ip'; diff --git a/composer.lock b/composer.lock index 88d67caa12..2580f92b3a 100644 --- a/composer.lock +++ b/composer.lock @@ -6027,5 +6027,5 @@ "platform-overrides": { "php": "8.0" }, - "plugin-api-version": "2.3.0" + "plugin-api-version": "2.6.0" } diff --git a/src/Appwrite/Migration/Migration.php b/src/Appwrite/Migration/Migration.php index 2a53ae27ca..09f39d3169 100644 --- a/src/Appwrite/Migration/Migration.php +++ b/src/Appwrite/Migration/Migration.php @@ -67,6 +67,7 @@ abstract class Migration '1.4.0' => 'V19', '1.4.1' => 'V19', '1.4.2' => 'V19', + '1.4.3' => 'V19', ]; /** From 38d610610cb867fe6b126f142a2f83df1bdb1a94 Mon Sep 17 00:00:00 2001 From: Christy Jacob Date: Thu, 14 Sep 2023 19:58:52 +0000 Subject: [PATCH 2/9] chore: update changelog --- CHANGES.md | 11 +++++++++++ README-CN.md | 6 +++--- README.md | 6 +++--- 3 files changed, 17 insertions(+), 6 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index f31010bea4..a95a3a81d9 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,14 @@ +# Version 1.4.3 + +## Features +- Support for the all new bun runtime + +## Fixes +- Add _APP_OPENSSL_KEY_V1 to the compose file [#6199](https://github.com/appwrite/appwrite/pull/6199) +- Fix: V2 functions env vars [#6215](https://github.com/appwrite/appwrite/pull/6215) +- Fix: Don't update User Accessed At for Users and Teams APIs [#6222](https://github.com/appwrite/appwrite/pull/6222) +- Fix: Git deploys with S3 [#6227](https://github.com/appwrite/appwrite/pull/6227) + # Version 1.4.2 ## Fixes diff --git a/README-CN.md b/README-CN.md index 8550695cc4..d85532be66 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.2 + appwrite/appwrite:1.4.3 ``` ### 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.2 + appwrite/appwrite:1.4.3 ``` #### 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.2 + appwrite/appwrite:1.4.3 ``` 运行后,可以在浏览器上访问 http://localhost 找到 Appwrite 控制台。在非 Linux 的本机主机上完成安装后,服务器可能需要几分钟才能启动。 diff --git a/README.md b/README.md index 68f4fdb1c0..90a5896f98 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.2 + appwrite/appwrite:1.4.3 ``` ### 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.2 + appwrite/appwrite:1.4.3 ``` #### 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.2 + appwrite/appwrite:1.4.3 ``` 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. From 5b76886375b3b54a1c5e2ba51e2e6be714f3344d Mon Sep 17 00:00:00 2001 From: Christy Jacob Date: Thu, 14 Sep 2023 19:59:43 +0000 Subject: [PATCH 3/9] chore: update changelog --- CHANGES.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index a95a3a81d9..e56455a4e7 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,7 +1,7 @@ # Version 1.4.3 ## Features -- Support for the all new bun runtime +- Support for the all new bun runtime [#6230](https://github.com/appwrite/appwrite/pull/6230) ## Fixes - Add _APP_OPENSSL_KEY_V1 to the compose file [#6199](https://github.com/appwrite/appwrite/pull/6199) From 3f00ebbf5d712e194942adc5e6ff4461b452b8c3 Mon Sep 17 00:00:00 2001 From: Christy Jacob Date: Thu, 14 Sep 2023 20:00:25 +0000 Subject: [PATCH 4/9] chore: update changelog --- CHANGES.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGES.md b/CHANGES.md index e56455a4e7..38e74b5d0d 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -8,6 +8,8 @@ - Fix: V2 functions env vars [#6215](https://github.com/appwrite/appwrite/pull/6215) - Fix: Don't update User Accessed At for Users and Teams APIs [#6222](https://github.com/appwrite/appwrite/pull/6222) - Fix: Git deploys with S3 [#6227](https://github.com/appwrite/appwrite/pull/6227) +- Fix: manual internal id insertion [#6232](https://github.com/appwrite/appwrite/pull/6232) +- Fix: function timeout [#6235](https://github.com/appwrite/appwrite/pull/6235) # Version 1.4.2 From 27b58fdf1e6fd41ec3d5d152bb9cb146137bbc97 Mon Sep 17 00:00:00 2001 From: Christy Jacob Date: Thu, 14 Sep 2023 20:05:51 +0000 Subject: [PATCH 5/9] 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 1e17756482..ba133ec7fb 100644 --- a/app/init.php +++ b/app/init.php @@ -108,7 +108,7 @@ 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 = 509; +const APP_CACHE_BUSTER = 510; const APP_VERSION_STABLE = '1.4.3'; const APP_DATABASE_ATTRIBUTE_EMAIL = 'email'; const APP_DATABASE_ATTRIBUTE_ENUM = 'enum'; From 66526edbe74f08a822fc41d12550be2a6247d362 Mon Sep 17 00:00:00 2001 From: Christy Jacob Date: Thu, 14 Sep 2023 16:08:07 -0400 Subject: [PATCH 6/9] Update CHANGES.md Co-authored-by: Jake Barnby --- CHANGES.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGES.md b/CHANGES.md index 38e74b5d0d..d08ce2fcec 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -10,6 +10,7 @@ - Fix: Git deploys with S3 [#6227](https://github.com/appwrite/appwrite/pull/6227) - Fix: manual internal id insertion [#6232](https://github.com/appwrite/appwrite/pull/6232) - Fix: function timeout [#6235](https://github.com/appwrite/appwrite/pull/6235) +- Fix: Missing keys when updating document via relationship [#320](https://github.com/utopia-php/database/pull/320) # Version 1.4.2 From e50a5863645cc75016729f162ca993870038cc82 Mon Sep 17 00:00:00 2001 From: Christy Jacob Date: Thu, 14 Sep 2023 23:08:03 +0000 Subject: [PATCH 7/9] chore: review commens --- CHANGES.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGES.md b/CHANGES.md index d08ce2fcec..73ea9e0cb0 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -11,6 +11,10 @@ - Fix: manual internal id insertion [#6232](https://github.com/appwrite/appwrite/pull/6232) - Fix: function timeout [#6235](https://github.com/appwrite/appwrite/pull/6235) - Fix: Missing keys when updating document via relationship [#320](https://github.com/utopia-php/database/pull/320) +- Ensure collections with datetime attributes are migrated [#17](https://github.com/utopia-php/migration/pull/17) +- Ensure all user data are migrated including status, preferences, and labels [#17](https://github.com/utopia-php/migration/pull/17) +- Fix team memberships migration [#16](https://github.com/utopia-php/migration/pull/16) +- Fix events validation on create/update webhooks [#6219](https://github.com/appwrite/appwrite/pull/6219) # Version 1.4.2 From 341fdb37213f462debd8531348b4b4ac894e0b39 Mon Sep 17 00:00:00 2001 From: Christy Jacob Date: Fri, 15 Sep 2023 05:50:16 +0000 Subject: [PATCH 8/9] chore: update changelog --- CHANGES.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGES.md b/CHANGES.md index 73ea9e0cb0..a82f60b8d2 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -15,6 +15,7 @@ - Ensure all user data are migrated including status, preferences, and labels [#17](https://github.com/utopia-php/migration/pull/17) - Fix team memberships migration [#16](https://github.com/utopia-php/migration/pull/16) - Fix events validation on create/update webhooks [#6219](https://github.com/appwrite/appwrite/pull/6219) +- Fix: add a try catch block in the schedules task [#6246](https://github.com/appwrite/appwrite/pull/6246) # Version 1.4.2 From e53c5771abc15edab467fa94616d499b02c953ef Mon Sep 17 00:00:00 2001 From: Jake Barnby Date: Fri, 15 Sep 2023 12:21:19 -0400 Subject: [PATCH 9/9] Update changelog for console --- CHANGES.md | 29 +++++++++++++++++++---------- 1 file changed, 19 insertions(+), 10 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index a82f60b8d2..8324f499f8 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -2,20 +2,29 @@ ## Features - Support for the all new bun runtime [#6230](https://github.com/appwrite/appwrite/pull/6230) +- Stripe function templates [Console #540](https://github.com/appwrite/console/pull/540) ## Fixes -- Add _APP_OPENSSL_KEY_V1 to the compose file [#6199](https://github.com/appwrite/appwrite/pull/6199) -- Fix: V2 functions env vars [#6215](https://github.com/appwrite/appwrite/pull/6215) -- Fix: Don't update User Accessed At for Users and Teams APIs [#6222](https://github.com/appwrite/appwrite/pull/6222) -- Fix: Git deploys with S3 [#6227](https://github.com/appwrite/appwrite/pull/6227) -- Fix: manual internal id insertion [#6232](https://github.com/appwrite/appwrite/pull/6232) -- Fix: function timeout [#6235](https://github.com/appwrite/appwrite/pull/6235) -- Fix: Missing keys when updating document via relationship [#320](https://github.com/utopia-php/database/pull/320) -- Ensure collections with datetime attributes are migrated [#17](https://github.com/utopia-php/migration/pull/17) -- Ensure all user data are migrated including status, preferences, and labels [#17](https://github.com/utopia-php/migration/pull/17) +- Fix missing _APP_OPENSSL_KEY_V1 in the compose file [#6199](https://github.com/appwrite/appwrite/pull/6199) +- Fix V2 functions env vars [#6215](https://github.com/appwrite/appwrite/pull/6215) +- Fix Don't update User Accessed At for Users and Teams APIs [#6222](https://github.com/appwrite/appwrite/pull/6222) +- Fix Git deploys with S3 [#6227](https://github.com/appwrite/appwrite/pull/6227) +- Fix manual internal id insertion [#6232](https://github.com/appwrite/appwrite/pull/6232) +- Fix function timeout [#6235](https://github.com/appwrite/appwrite/pull/6235) +- Fix collections with datetime attributes migration [#17](https://github.com/utopia-php/migration/pull/17) +- Fix not all user data being migrated [#17](https://github.com/utopia-php/migration/pull/17) - Fix team memberships migration [#16](https://github.com/utopia-php/migration/pull/16) - Fix events validation on create/update webhooks [#6219](https://github.com/appwrite/appwrite/pull/6219) -- Fix: add a try catch block in the schedules task [#6246](https://github.com/appwrite/appwrite/pull/6246) +- Fix schedules task [#6246](https://github.com/appwrite/appwrite/pull/6246) +- Fix missing keys when updating document via relationship [Database #320](https://github.com/utopia-php/database/pull/320) +- Fix Discord template [Console #538](https://github.com/appwrite/console/pull/538) +- Fix form var is url not text [Console #539](https://github.com/appwrite/console/pull/539) +- Fix incorrect link to migration docs for self-hosted to cloud [Console #543](https://github.com/appwrite/console/pull/543) +- Fix can't disable smtp [Console #548](https://github.com/appwrite/console/pull/548) +- Fix create function cover for case where VCS is not enabled [Console #544](https://github.com/appwrite/console/pull/544) +- Fix users list not re-rendering [Console #537](https://github.com/appwrite/console/pull/537) +- Fix create attribute modal null when selecting same time twice [Console #549](https://github.com/appwrite/console/pull/549) +- Fix runtime versions in templates [Console #546](https://github.com/appwrite/console/pull/546) # Version 1.4.2