1
0
Fork 0
mirror of synced 2024-05-20 12:42:39 +12:00

feat(release): prepare 0.9.3

This commit is contained in:
Torsten Dittmann 2021-07-27 14:43:08 +02:00
parent 957588a60e
commit d3daa2be32
4 changed files with 11 additions and 4 deletions

View file

@ -1,3 +1,9 @@
# Version 0.9.3
## Bugs
- Fixed Abuse Limit keys for JWT and E-Mail confirmation (#1434)
# Version 0.9.2
## Bugs

View file

@ -56,7 +56,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.1
appwrite/appwrite:0.9.3
```
### Windows
@ -68,7 +68,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.1
appwrite/appwrite:0.9.3
```
#### PowerShell
@ -78,7 +78,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.1
appwrite/appwrite:0.9.3
```
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.

View file

@ -48,7 +48,7 @@ const APP_MODE_DEFAULT = 'default';
const APP_MODE_ADMIN = 'admin';
const APP_PAGING_LIMIT = 12;
const APP_CACHE_BUSTER = 150;
const APP_VERSION_STABLE = '0.9.2';
const APP_VERSION_STABLE = '0.9.3';
const APP_STORAGE_UPLOADS = '/storage/uploads';
const APP_STORAGE_FUNCTIONS = '/storage/functions';
const APP_STORAGE_CACHE = '/storage/cache';

View file

@ -41,6 +41,7 @@ abstract class Migration
'0.9.0' => 'V08',
'0.9.1' => 'V08',
'0.9.2' => 'V08',
'0.9.3' => 'V08',
];
/**