diff --git a/CHANGES.md b/CHANGES.md index ac405184df..32ecd4f277 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,29 @@ +# Version 1.4.8 + +## Notable changes + +* Fix certificate emails and add support for variables in email template subject in [#6495](https://github.com/appwrite/appwrite/)pull/6495 +* Bump console to version 3.2.5 in [#7027](https://github.com/appwrite/appwrite/pull/7027) +* Bump utopia database and storage versions in [#7002](https://github.com/appwrite/appwrite/pull/7002) + +## Bug fixes + +* Fixes cookie headers not being passed properly by router in [#7024](https://github.com/appwrite/appwrite/pull/7024) +* Fix permission problem in deletes worker in [#7013](https://github.com/appwrite/appwrite/pull/7013) + +## Miscellaneous + +* Improve error handling in the realtime service in [#6998](https://github.com/appwrite/appwrite/pull/6998) +* Update the error code for unsupported protocol in [#7006](https://github.com/appwrite/appwrite/pull/7006) +* Improve CI tests by executing them in parallel in [#6198](https://github.com/appwrite/appwrite/pull/6198) +* Update README.md to add links to orchestration tools in [#7011](https://github.com/appwrite/appwrite/pull/7011) +* Update gitpod setup to install instead of update dependencies in [#6938](https://github.com/appwrite/appwrite/pull/6938) +* Remove analytics from install script in [#7017](https://github.com/appwrite/appwrite/pull/7017) +* Improve database logging in [#7003](https://github.com/appwrite/appwrite/pull/7003) +* Add VCS tests in [#6894](https://github.com/appwrite/appwrite/pull/6894) +* Improve error messages in [#6487](https://github.com/appwrite/appwrite/pull/6487) +* Add command to delete orphaned projects in [#7015](https://github.com/appwrite/appwrite/pull/7015) + # Version 1.4.7 ## Fixes diff --git a/README-CN.md b/README-CN.md index 1df799f7ef..3881a8ac82 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.7 + appwrite/appwrite:1.4.8 ``` ### 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.7 + appwrite/appwrite:1.4.8 ``` #### 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.7 + appwrite/appwrite:1.4.8 ``` 运行后,可以在浏览器上访问 http://localhost 找到 Appwrite 控制台。在非 Linux 的本机主机上完成安装后,服务器可能需要几分钟才能启动。 diff --git a/README.md b/README.md index 6503f6addf..9adc815bdd 100644 --- a/README.md +++ b/README.md @@ -76,7 +76,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.7 + appwrite/appwrite:1.4.8 ``` ### Windows @@ -88,7 +88,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.7 + appwrite/appwrite:1.4.8 ``` #### PowerShell @@ -98,7 +98,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.7 + appwrite/appwrite:1.4.8 ``` 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 13d11b15b2..020af63761 100644 --- a/app/init.php +++ b/app/init.php @@ -110,7 +110,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 = 515; -const APP_VERSION_STABLE = '1.4.7'; +const APP_VERSION_STABLE = '1.4.8'; 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 964aef66e5..18f1a091c0 100644 --- a/src/Appwrite/Migration/Migration.php +++ b/src/Appwrite/Migration/Migration.php @@ -72,6 +72,7 @@ abstract class Migration '1.4.5' => 'V19', '1.4.6' => 'V19', '1.4.7' => 'V19', + '1.4.8' => 'V19', ]; /**