Skip to content
This repository was archived by the owner on Aug 7, 2023. It is now read-only.

Commit 06458bc

Browse files
Merge pull request appwrite#2996 from appwrite/feat-0-13-4-release
Feat: Upgrade version
2 parents 154379c + 6360d24 commit 06458bc

File tree

6 files changed

+26
-9
lines changed

6 files changed

+26
-9
lines changed

CHANGES.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
# Version 0.13.4
2+
3+
## Features
4+
- Added `detailedTrace` to Logger events
5+
- Added new `_APP_STORAGE_PREVIEW_LIMIT` environment variable to configure maximum preview file size
6+
7+
## Bugs
8+
- Fixed missing volume mount in Docker Compose
9+
- Fixed upload with Bucket File permission
10+
- Fixed custom ID validation in Console
11+
- Fixed file preview with no `output` passed
12+
- Fixed GitHub issue URL in Console
13+
- Fixed double PDOException logging
14+
- Fixed functions cleanup when container is already initialized
15+
- Fixed float input precision in Console
16+
117
# Version 0.13.3
218
## Bugs
319
- Fixed search for terms that inlcude `@` characters

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.3
62+
appwrite/appwrite:0.13.4
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.3
74+
appwrite/appwrite:0.13.4
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.3
84+
appwrite/appwrite:0.13.4
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.3
65+
appwrite/appwrite:0.13.4
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.3
77+
appwrite/appwrite:0.13.4
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.3
87+
appwrite/appwrite:0.13.4
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/config/variables.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -405,7 +405,7 @@
405405
[
406406
'name' => '_APP_STORAGE_PREVIEW_LIMIT',
407407
'description' => 'Maximum file size allowed for file image preview. The default value is 20MB. You should pass your size limit value in bytes.',
408-
'introduction' => '0.14.0',
408+
'introduction' => '0.13.4',
409409
'default' => '20000000',
410410
'required' => false,
411411
'question' => '',

app/init.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@
6969
const APP_LIMIT_ANTIVIRUS = 20000000; //20MB
7070
const APP_LIMIT_ENCRYPTION = 20000000; //20MB
7171
const APP_LIMIT_COMPRESSION = 20000000; //20MB
72-
const APP_CACHE_BUSTER = 303;
73-
const APP_VERSION_STABLE = '0.13.3';
72+
const APP_CACHE_BUSTER = 304;
73+
const APP_VERSION_STABLE = '0.13.4';
7474
const APP_DATABASE_ATTRIBUTE_EMAIL = 'email';
7575
const APP_DATABASE_ATTRIBUTE_ENUM = 'enum';
7676
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
@@ -39,6 +39,7 @@ abstract class Migration
3939
'0.13.1' => 'V12',
4040
'0.13.2' => 'V12',
4141
'0.13.3' => 'V12',
42+
'0.13.4' => 'V12',
4243
];
4344

4445
/**

0 commit comments

Comments
 (0)