Skip to content

Commit 08704e8

Browse files
Merge pull request appwrite#3465 from appwrite/prepare-0-15-1
prepare: 0.15.1 release
2 parents d5a0b52 + 54bd850 commit 08704e8

File tree

6 files changed

+23
-10
lines changed

6 files changed

+23
-10
lines changed

CHANGES.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
# Version 0.15.1
2+
## Bugs
3+
- Fixed SMS for `createVerification` by @christyjacob4 in https://github.com/appwrite/appwrite/pull/3454
4+
- Fixed missing Attributes when creating an Index by @TorstenDittmann in https://github.com/appwrite/appwrite/pull/3461
5+
- Fixed broken Link for Documents under Collections by @TorstenDittmann in https://github.com/appwrite/appwrite/pull/3461
6+
- Fixed all `$createdAt` and `$updatedAt` occurences in the UI by @TorstenDittmann in https://github.com/appwrite/appwrite/pull/3461
7+
- Fixed Delete Document from the UI by @TorstenDittmann in https://github.com/appwrite/appwrite/pull/3463
8+
- Fixed internal Attribute and Index key on Migration by @TorstenDittmann in https://github.com/appwrite/appwrite/pull/3455
9+
10+
## Docs
11+
- Updated Phone Authentication by @christyjacob4 in https://github.com/appwrite/appwrite/pull/3456
12+
113
# Version 0.15.0
214

315
## BREAKING CHANGES

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.15.0
62+
appwrite/appwrite:0.15.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.15.0
74+
appwrite/appwrite:0.15.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.15.0
84+
appwrite/appwrite:0.15.1
8585
```
8686

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

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ docker run -it --rm \
6565
--volume /var/run/docker.sock:/var/run/docker.sock \
6666
--volume "$(pwd)"/appwrite:/usr/src/code/appwrite:rw \
6767
--entrypoint="install" \
68-
appwrite/appwrite:0.15.0
68+
appwrite/appwrite:0.15.1
6969
```
7070

7171
### Windows
@@ -77,7 +77,7 @@ docker run -it --rm ^
7777
--volume //var/run/docker.sock:/var/run/docker.sock ^
7878
--volume "%cd%"/appwrite:/usr/src/code/appwrite:rw ^
7979
--entrypoint="install" ^
80-
appwrite/appwrite:0.15.0
80+
appwrite/appwrite:0.15.1
8181
```
8282

8383
#### PowerShell
@@ -87,7 +87,7 @@ docker run -it --rm ,
8787
--volume /var/run/docker.sock:/var/run/docker.sock ,
8888
--volume ${pwd}/appwrite:/usr/src/code/appwrite:rw ,
8989
--entrypoint="install" ,
90-
appwrite/appwrite:0.15.0
90+
appwrite/appwrite:0.15.1
9191
```
9292

9393
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
@@ -86,8 +86,8 @@
8686
const APP_LIMIT_ARRAY_PARAMS_SIZE = 100; // Default maximum of how many elements can there be in API parameter that expects array value
8787
const APP_LIMIT_ARRAY_ELEMENT_SIZE = 4096; // Default maximum length of element in array parameter represented by maximum URL length.
8888
const APP_LIMIT_SUBQUERY = 1000;
89-
const APP_CACHE_BUSTER = 400;
90-
const APP_VERSION_STABLE = '0.15.0';
89+
const APP_CACHE_BUSTER = 401;
90+
const APP_VERSION_STABLE = '0.15.1';
9191
const APP_DATABASE_ATTRIBUTE_EMAIL = 'email';
9292
const APP_DATABASE_ATTRIBUTE_ENUM = 'enum';
9393
const APP_DATABASE_ATTRIBUTE_IP = 'ip';

app/views/console/databases/document.phtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,7 @@ $logs = $this->getParam('logs', null);
379379
data-success="alert,trigger,redirect"
380380
data-success-param-alert-text="Document deleted successfully"
381381
data-success-param-trigger-events="databases.deleteDocument"
382-
data-success-param-redirect-url="/console/databases/collection?id={{router.params.collection}}&project={{router.params.project}}"
382+
data-success-param-redirect-url="/console/databases/collection?id={{router.params.collection}}&project={{router.params.project}}&databaseId={{router.params.databaseId}}"
383383
data-failure="alert"
384384
data-failure-param-alert-text="Failed to delete collection"
385385
data-failure-param-alert-classname="error">

src/Appwrite/Migration/Migration.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,8 @@ abstract class Migration
4545
'0.14.0' => 'V13',
4646
'0.14.1' => 'V13',
4747
'0.14.2' => 'V13',
48-
'0.15.0' => 'V14'
48+
'0.15.0' => 'V14',
49+
'0.15.1' => 'V14'
4950
];
5051

5152
/**

0 commit comments

Comments
 (0)