Skip to content

Commit c3ce724

Browse files
Merge pull request appwrite#2890 from appwrite/chore-prepare-0-13-1
chore: prepare 0.13.1
2 parents 2a56bea + 67ac207 commit c3ce724

File tree

5 files changed

+15
-8
lines changed

5 files changed

+15
-8
lines changed

CHANGES.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# Version 0.13.1 (NOT RELEASED)
2+
## Bugs
3+
- Fixed the Console UI redirect breaking the header and navigation
4+
- Fixed timeout in Functions API to respect the environment variable `_APP_FUNCTIONS_TIMEOUT`
5+
- Fixed team invite to be invalid after successful use by @Malte2036 in https://github.com/appwrite/appwrite/issues/2593
6+
17
# Version 0.13.0
28

39
## Features

README-CN.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ docker run -it --rm \
5959
--volume /var/run/docker.sock:/var/run/docker.sock \
6060
--volume "$(pwd)"/appwrite:/usr/src/code/appwrite:rw \
6161
--entrypoint="install" \
62-
appwrite/appwrite:0.13.0
62+
appwrite/appwrite:0.13.1
6363
```
6464

6565
### Windows
@@ -71,7 +71,7 @@ docker run -it --rm ^
7171
--volume //var/run/docker.sock:/var/run/docker.sock ^
7272
--volume "%cd%"/appwrite:/usr/src/code/appwrite:rw ^
7373
--entrypoint="install" ^
74-
appwrite/appwrite:0.13.0
74+
appwrite/appwrite:0.13.1
7575
```
7676

7777
#### PowerShell
@@ -81,7 +81,7 @@ docker run -it --rm ,
8181
--volume /var/run/docker.sock:/var/run/docker.sock ,
8282
--volume ${pwd}/appwrite:/usr/src/code/appwrite:rw ,
8383
--entrypoint="install" ,
84-
appwrite/appwrite:0.13.0
84+
appwrite/appwrite:0.13.1
8585
```
8686

8787
运行后,可以在浏览器上访问 http://localhost 找到 Appwrite 控制台。在非 Linux 的本机主机上完成安装后,服务器可能需要几分钟才能启动。

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ docker run -it --rm \
6262
--volume /var/run/docker.sock:/var/run/docker.sock \
6363
--volume "$(pwd)"/appwrite:/usr/src/code/appwrite:rw \
6464
--entrypoint="install" \
65-
appwrite/appwrite:0.13.0
65+
appwrite/appwrite:0.13.1
6666
```
6767

6868
### Windows
@@ -74,7 +74,7 @@ docker run -it --rm ^
7474
--volume //var/run/docker.sock:/var/run/docker.sock ^
7575
--volume "%cd%"/appwrite:/usr/src/code/appwrite:rw ^
7676
--entrypoint="install" ^
77-
appwrite/appwrite:0.13.0
77+
appwrite/appwrite:0.13.1
7878
```
7979

8080
#### PowerShell
@@ -84,7 +84,7 @@ docker run -it --rm ,
8484
--volume /var/run/docker.sock:/var/run/docker.sock ,
8585
--volume ${pwd}/appwrite:/usr/src/code/appwrite:rw ,
8686
--entrypoint="install" ,
87-
appwrite/appwrite:0.13.0
87+
appwrite/appwrite:0.13.1
8888
```
8989

9090
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.

app/init.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@
7070
const APP_LIMIT_ENCRYPTION = 20000000; //20MB
7171
const APP_LIMIT_COMPRESSION = 20000000; //20MB
7272
const APP_LIMIT_PREVIEW = 10000000; //10MB file size limit for preview endpoint
73-
const APP_CACHE_BUSTER = 300;
74-
const APP_VERSION_STABLE = '0.13.0';
73+
const APP_CACHE_BUSTER = 301;
74+
const APP_VERSION_STABLE = '0.13.1';
7575
const APP_DATABASE_ATTRIBUTE_EMAIL = 'email';
7676
const APP_DATABASE_ATTRIBUTE_ENUM = 'enum';
7777
const APP_DATABASE_ATTRIBUTE_IP = 'ip';

src/Appwrite/Migration/Migration.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ abstract class Migration
3636
*/
3737
public static array $versions = [
3838
'0.13.0' => 'V12',
39+
'0.13.1' => 'V12',
3940
];
4041

4142
/**

0 commit comments

Comments
 (0)