diff --git a/CHANGES.md b/CHANGES.md index 8324f499f8..23de52496a 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,27 @@ +# Version 1.4.4 + +## Features +- Feat: Function domains force https in [#6269](https://github.com/appwrite/appwrite/pull/6269) +- Feat: router protection in [#6272](https://github.com/appwrite/appwrite/pull/6272) +- Feat: Parse event body in [#6317](https://github.com/appwrite/appwrite/pull/6317) + +## Fixes +- Fix: wrong device type in [#6271](https://github.com/appwrite/appwrite/pull/6271) +- Fix: build race condition in [#6270](https://github.com/appwrite/appwrite/pull/6270) +- Fix: Large builds in [#6273](https://github.com/appwrite/appwrite/pull/6273) +- Fix: migrations in [#6302](https://github.com/appwrite/appwrite/pull/6302) +- Add Description for Download Deployment in [#6268](https://github.com/appwrite/appwrite/pull/6268) +- Fix deployment delete in [#6290](https://github.com/appwrite/appwrite/pull/6290) +- Fix project deletion in [#6260](https://github.com/appwrite/appwrite/pull/6260) +- fix-6212-Issue-With-Linkedin-OAuth in [#6229](https://github.com/appwrite/appwrite/pull/6229) +- Fix: Execution body limit in [#6326](https://github.com/appwrite/appwrite/pull/6326) +- Patch: Disable console protection in [#6329](https://github.com/appwrite/appwrite/pull/6329) +- converted desc to sentence case in [#5926](https://github.com/appwrite/appwrite/pull/5926) +- Update avatar font and default colors in [#6277](https://github.com/appwrite/appwrite/pull/6277) +- Bump composer to fix migration bug in [#6344](https://github.com/appwrite/appwrite/pull/6344) +- Fix execution call timeout in [#6332](https://github.com/appwrite/appwrite/pull/6332) +- Bump appwrite-assistant to prevent it from crashing w/o open ai key in [#6342](https://github.com/appwrite/appwrite/pull/6342) + # Version 1.4.3 ## Features diff --git a/README-CN.md b/README-CN.md index d85532be66..2f7683c7e2 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.3 + appwrite/appwrite:1.4.4 ``` ### 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.3 + appwrite/appwrite:1.4.4 ``` #### 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.3 + appwrite/appwrite:1.4.4 ``` 运行后,可以在浏览器上访问 http://localhost 找到 Appwrite 控制台。在非 Linux 的本机主机上完成安装后,服务器可能需要几分钟才能启动。 diff --git a/README.md b/README.md index 90a5896f98..b48ff45e9a 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.3 + appwrite/appwrite:1.4.4 ``` ### 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.3 + appwrite/appwrite:1.4.4 ``` #### 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.3 + appwrite/appwrite:1.4.4 ``` 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/app/init.php b/app/init.php index ba133ec7fb..cf91e3ddc4 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 = 510; -const APP_VERSION_STABLE = '1.4.3'; +const APP_CACHE_BUSTER = 511; +const APP_VERSION_STABLE = '1.4.4'; 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 09f39d3169..2d0597dd26 100644 --- a/src/Appwrite/Migration/Migration.php +++ b/src/Appwrite/Migration/Migration.php @@ -68,6 +68,7 @@ abstract class Migration '1.4.1' => 'V19', '1.4.2' => 'V19', '1.4.3' => 'V19', + '1.4.4' => 'V19', ]; /**