mirror of
https://github.com/appwrite/appwrite
synced 2026-05-23 17:08:45 +00:00
Merge branch '0.7.x' of github.com:appwrite/appwrite into swoole-and-functions
This commit is contained in:
commit
884284f42b
3 changed files with 6 additions and 5 deletions
|
|
@ -21,6 +21,7 @@
|
|||
- Added support for boolean 'true' and 'false' in query strings alongside 1 and 0
|
||||
- Added pagination for projects list on the console home page.
|
||||
- Updated storage calculation to match IEC standards
|
||||
- Now using Alpine as base Docker image
|
||||
- New and consistent response format for all API object + new response examples in the docs
|
||||
- Removed user roles attribute from user object (can be fetched from /v1/teams/memberships) **
|
||||
- Removed type attribute from session object response (used only internally)
|
||||
|
|
|
|||
|
|
@ -51,7 +51,7 @@ The easiest way to start running your Appwrite server is by running our docker-c
|
|||
docker run -it --rm \
|
||||
--volume /var/run/docker.sock:/var/run/docker.sock \
|
||||
--volume "$(pwd)"/appwrite:/install/appwrite:rw \
|
||||
-e version=0.6.2 \
|
||||
-e version=0.7.0 \
|
||||
appwrite/install
|
||||
```
|
||||
|
||||
|
|
@ -63,7 +63,7 @@ docker run -it --rm \
|
|||
docker run -it --rm ^
|
||||
--volume //var/run/docker.sock:/var/run/docker.sock ^
|
||||
--volume "%cd%"/appwrite:/install/appwrite:rw ^
|
||||
-e version=0.6.2 ^
|
||||
-e version=0.7.0 ^
|
||||
appwrite/install
|
||||
```
|
||||
|
||||
|
|
@ -73,7 +73,7 @@ docker run -it --rm ^
|
|||
docker run -it --rm ,
|
||||
--volume /var/run/docker.sock:/var/run/docker.sock ,
|
||||
--volume ${pwd}/appwrite:/install/appwrite:rw ,
|
||||
-e version=0.6.2 ,
|
||||
-e version=0.7.0 ,
|
||||
appwrite/install
|
||||
```
|
||||
|
||||
|
|
|
|||
|
|
@ -36,8 +36,8 @@ const APP_EMAIL_SECURITY = 'security@localhost.test'; // Default security email
|
|||
const APP_USERAGENT = APP_NAME.'-Server v%s. Please report abuse at %s';
|
||||
const APP_MODE_ADMIN = 'admin';
|
||||
const APP_PAGING_LIMIT = 12;
|
||||
const APP_CACHE_BUSTER = 131;
|
||||
const APP_VERSION_STABLE = '0.6.2';
|
||||
const APP_CACHE_BUSTER = 132;
|
||||
const APP_VERSION_STABLE = '0.7.0';
|
||||
const APP_STORAGE_UPLOADS = '/storage/uploads';
|
||||
const APP_STORAGE_FUNCTIONS = '/storage/functions';
|
||||
const APP_STORAGE_CACHE = '/storage/cache';
|
||||
|
|
|
|||
Loading…
Reference in a new issue