diff --git a/CHANGES.md b/CHANGES.md index cc64f1e18..11043925a 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -3,6 +3,13 @@ - Added DOCKERHUB_PULL_USERNAME, DOCKERHUB_PULL_PASSWORD and DOCKERHUB_PULL_EMAIL env variables for pulling from private DockerHub repos +# Version 0.9.4 + +## Security + +- Fixed security vulnerability that exposes project ID's from other admin users (#1453) + + # Version 0.9.3 ## Bugs diff --git a/README.md b/README.md index e96c201f7..de3386ce9 100644 --- a/README.md +++ b/README.md @@ -57,7 +57,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.9.3 + appwrite/appwrite:0.9.4 ``` ### Windows @@ -69,7 +69,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.9.3 + appwrite/appwrite:0.9.4 ``` #### PowerShell @@ -79,7 +79,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.9.3 + appwrite/appwrite:0.9.4 ``` 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/config/platforms.php b/app/config/platforms.php index 50b8e4f74..ba1f54cc9 100644 --- a/app/config/platforms.php +++ b/app/config/platforms.php @@ -45,7 +45,7 @@ return [ ], [ 'icon' => 'angular.svg', - 'name' => 'Todo App with Angular.js', + 'name' => 'Todo App with Angular', 'description' => 'A simple Todo app that uses both the Appwrite account and database APIs.', 'source' => 'https://github.com/appwrite/todo-with-angular', 'url' => 'https://appwrite-todo-with-angular.vercel.app/', diff --git a/app/init.php b/app/init.php index 1c34b621c..0dd043bba 100644 --- a/app/init.php +++ b/app/init.php @@ -48,7 +48,7 @@ const APP_MODE_DEFAULT = 'default'; const APP_MODE_ADMIN = 'admin'; const APP_PAGING_LIMIT = 12; const APP_CACHE_BUSTER = 151; -const APP_VERSION_STABLE = '0.9.3'; +const APP_VERSION_STABLE = '0.9.4'; const APP_STORAGE_UPLOADS = '/storage/uploads'; const APP_STORAGE_FUNCTIONS = '/storage/functions'; const APP_STORAGE_CACHE = '/storage/cache'; diff --git a/src/Appwrite/Migration/Migration.php b/src/Appwrite/Migration/Migration.php index 9f5d12d47..203af0c67 100644 --- a/src/Appwrite/Migration/Migration.php +++ b/src/Appwrite/Migration/Migration.php @@ -42,6 +42,7 @@ abstract class Migration '0.9.1' => 'V08', '0.9.2' => 'V08', '0.9.3' => 'V08', + '0.9.4' => 'V08', ]; /**