1
0
Fork 0
mirror of synced 2024-05-29 17:09:48 +12:00

feat(release): 0.10.2

This commit is contained in:
Torsten Dittmann 2021-09-06 15:45:43 +02:00
parent 0571dbe378
commit 17118e69f9
4 changed files with 10 additions and 4 deletions

View file

@ -1,3 +1,8 @@
# Version 0.10.2
## Bugs
- Fixed SSL certificates status not being update (#1592)
- Fixed failing team invites on console (#1580)
# Version 0.10.1 # Version 0.10.1
## Bugs ## Bugs

View file

@ -57,7 +57,7 @@ docker run -it --rm \
--volume /var/run/docker.sock:/var/run/docker.sock \ --volume /var/run/docker.sock:/var/run/docker.sock \
--volume "$(pwd)"/appwrite:/usr/src/code/appwrite:rw \ --volume "$(pwd)"/appwrite:/usr/src/code/appwrite:rw \
--entrypoint="install" \ --entrypoint="install" \
appwrite/appwrite:0.10.1 appwrite/appwrite:0.10.2
``` ```
### Windows ### Windows
@ -69,7 +69,7 @@ docker run -it --rm ^
--volume //var/run/docker.sock:/var/run/docker.sock ^ --volume //var/run/docker.sock:/var/run/docker.sock ^
--volume "%cd%"/appwrite:/usr/src/code/appwrite:rw ^ --volume "%cd%"/appwrite:/usr/src/code/appwrite:rw ^
--entrypoint="install" ^ --entrypoint="install" ^
appwrite/appwrite:0.10.1 appwrite/appwrite:0.10.2
``` ```
#### PowerShell #### PowerShell
@ -79,7 +79,7 @@ docker run -it --rm ,
--volume /var/run/docker.sock:/var/run/docker.sock , --volume /var/run/docker.sock:/var/run/docker.sock ,
--volume ${pwd}/appwrite:/usr/src/code/appwrite:rw , --volume ${pwd}/appwrite:/usr/src/code/appwrite:rw ,
--entrypoint="install" , --entrypoint="install" ,
appwrite/appwrite:0.10.1 appwrite/appwrite:0.10.2
``` ```
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. 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

@ -49,7 +49,7 @@ const APP_MODE_DEFAULT = 'default';
const APP_MODE_ADMIN = 'admin'; const APP_MODE_ADMIN = 'admin';
const APP_PAGING_LIMIT = 12; const APP_PAGING_LIMIT = 12;
const APP_CACHE_BUSTER = 160; const APP_CACHE_BUSTER = 160;
const APP_VERSION_STABLE = '0.10.1'; const APP_VERSION_STABLE = '0.10.2';
const APP_STORAGE_UPLOADS = '/storage/uploads'; const APP_STORAGE_UPLOADS = '/storage/uploads';
const APP_STORAGE_FUNCTIONS = '/storage/functions'; const APP_STORAGE_FUNCTIONS = '/storage/functions';
const APP_STORAGE_CACHE = '/storage/cache'; const APP_STORAGE_CACHE = '/storage/cache';

View file

@ -45,6 +45,7 @@ abstract class Migration
'0.9.4' => 'V08', '0.9.4' => 'V08',
'0.10.0' => 'V09', '0.10.0' => 'V09',
'0.10.1' => 'V09', '0.10.1' => 'V09',
'0.10.2' => 'V09',
]; ];
/** /**