You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: CHANGELOG.md
+30
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,33 @@
1
+
## 7.0.0-dev.2
2
+
### NEW
3
+
* Support for Appwrite 1.0.0-RC1
4
+
* More verbose headers have been included in the Clients - `x-sdk-name`, `x-sdk-platform`, `x-sdk-language`, `x-sdk-version`
5
+
* Helper classes and methods for Permissions, Roles and IDs
6
+
* Helper methods to suport new queries
7
+
* All Dates and times are now returned in the ISO 8601 format
8
+
* Execution Model now has an additional `stdout` attribute
9
+
* Endpoint for creating DateTime attribute
10
+
* User imports API with support for multiple hashing algorithms
11
+
* CRUD API for functions environment variables
12
+
*`createBucket` now supports different compression algorithms
13
+
14
+
### BREAKING CHANGES
15
+
16
+
*`databaseId` is no longer part of the `Database` Service constructor. `databaseId` will be part of the respective methods of the database service.
17
+
* The `Users.create()` method signature has now been updated to include a `phone` parameter
18
+
*`color` attribute is no longer supported in the Avatars Service
19
+
* The `number` argument in phone endpoints have been renamed to `phone`
20
+
* List endpoints no longer support `limit`, `offset`, `cursor`, `cursorDirection`, `orderAttributes`, `orderTypes` as they have been moved to the `queries` array
21
+
*`read` and `write` permission have been deprecated and they are now included in the `permissions` array
22
+
* Parameter `permission` for collections and buckets are now renamed to `documentSecurity`&`fileSecurity` respectively
23
+
* Renamed methods of the Query helper
24
+
1.`lesser` renamed to `lessThan`
25
+
2.`lesserEqual` renamed to `lessThanEqual`
26
+
3.`greater` renamed to `greaterThan`
27
+
4.`greaterEqual` renamed to `greaterThanEqual`
28
+
29
+
**Full Changelog for Appwrite 1.0.0-RC1 can be found here**: https://github.com/appwrite/appwrite/blob/master/CHANGES.md
**This SDK is compatible with Appwrite server version 1.0.0-RC1. For older versions, please check [previous releases](https://github.com/appwrite/sdk-for-dart/releases).**
10
+
**This SDK is compatible with Appwrite server version 1.0.0. For older versions, please check [previous releases](https://github.com/appwrite/sdk-for-dart/releases).**
11
11
12
12
> This is the Dart SDK for integrating with Appwrite from your Dart server-side code. If you're looking for the Flutter SDK you should check [appwrite/sdk-for-flutter](https://github.com/appwrite/sdk-for-flutter)
13
13
@@ -23,7 +23,7 @@ Add this to your package's `pubspec.yaml` file:
0 commit comments