Skip to content

Commit fef0b1e

Browse files
feat: add response format for 0.14.0
1 parent db0f1c7 commit fef0b1e

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## 5.0.0
2+
* **BREAKING** `account.delete()` -> `account.updateStatus()`
3+
* **BREAKING** Execution model `stdout` renamed to `response`
4+
* **BREAKING** Membership model `name` renamed to `userName` and `email` renamed to `userEmail`
5+
* Added `teamName` to Membership model
6+
* New `users.getMemberships` function
7+
18
## 4.0.2
29
* Fix null issues with float attributes (https://github.com/appwrite/sdk-for-dart/issues/17 and https://github.com/appwrite/sdk-for-dart/issues/16)
310

lib/src/client_browser.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class ClientBrowser extends ClientBase with ClientMixin {
2727
_headers = {
2828
'content-type': 'application/json',
2929
'x-sdk-version': 'appwrite:dart:5.0.0',
30-
'X-Appwrite-Response-Format' : '0.13.0',
30+
'X-Appwrite-Response-Format' : '0.14.0',
3131
};
3232

3333
config = {};

lib/src/client_io.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class ClientIO extends ClientBase with ClientMixin {
3636
_headers = {
3737
'content-type': 'application/json',
3838
'x-sdk-version': 'appwrite:dart:5.0.0',
39-
'X-Appwrite-Response-Format' : '0.13.0',
39+
'X-Appwrite-Response-Format' : '0.14.0',
4040
};
4141

4242
config = {};

0 commit comments

Comments
 (0)