1
0
Fork 0
mirror of synced 2024-07-09 08:27:01 +12:00
appwrite/docs/sdks/dart/CHANGELOG.md

108 lines
3.8 KiB
Markdown
Raw Normal View History

2022-05-19 22:15:50 +12:00
## 5.0.1
* Code formatting fix
2022-05-17 20:49:26 +12:00
## 5.0.0
2022-05-17 21:55:38 +12:00
* Support for Appwrite 0.14
2022-05-17 20:49:26 +12:00
* **BREAKING** `account.delete()` -> `account.updateStatus()`
* **BREAKING** Execution model `stdout` renamed to `response`
* **BREAKING** Membership model `name` renamed to `userName` and `email` renamed to `userEmail`
* Added `teamName` to Membership model
* New `users.getMemberships` function
2022-04-12 14:10:13 +12:00
## 4.0.2
* 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)
2022-03-04 19:44:12 +13:00
## 4.0.1
* Fix InputFile filename param
* Fix examples
2022-03-03 20:44:38 +13:00
## 4.0.0
* Support for Appwrite 0.13
* **BREAKING** **Tags** have been renamed to **Deployments**
* **BREAKING** `createFile` function expects Bucket ID as the first parameter
* **BREAKING** `createDeployment` and `createFile` functions expect an instance **InputFile** rather than the instance of **MultipartFile**
* **BREAKING** `list<Entity>` endpoints now contain a `total` attribute instead of `sum`
* `onProgress()` callback function for endpoints supporting file uploads
* Support for synchronous function executions
* Bug fixes and Improvements
**Full Changelog for Appwrite 0.13 can be found here**: https://github.com/appwrite/appwrite/blob/master/CHANGES.md#version-0130
2022-01-08 02:32:03 +13:00
## 3.0.2
- String Attribute Type got fixed
2022-01-06 04:38:22 +13:00
## 3.0.1
- Export Query Builder
## 3.0.0
2022-01-05 02:36:52 +13:00
- Support for Appwrite 0.12
2022-01-05 02:46:13 +13:00
- **BREAKING** Updated database service to adapt 0.12 API
- **BREAKING** Custom ID support while creating resources
- [View all the changes](https://github.com/appwrite/appwrite/blob/master/CHANGES.md#version-0120)
2021-12-18 01:11:13 +13:00
## 2.0.0
- BREAKING All services and methods now return structured response objects instead of `Response` object
2021-10-18 20:37:09 +13:00
## 1.0.2
- Support for Appwrite 0.11
2021-09-06 19:51:48 +12:00
## 1.0.1
- Export, separate IO and Browser clients for Flutter (Client and Realtime as well) and Dart (Client)
## 1.0.0
- Support for Appwrite 0.10
- Refactored for better cross platform support
- Exception implements `toString()` to get proper error message for unhandled exceptions
- **Breaking** - Signature for `MultipartFile` has changed as we have dropped Dio in favor of [http](https://pub.dev/packages/http) package. [Here is the new signature for MultipartFile](https://pub.dev/documentation/http/latest/http/MultipartFile-class.html)
- **Breaking** - Signature for `Response` has changed, now it only exposes the data.
## 0.7.0
- Support for Appwrite 0.9
- Breaking - removed order type enum, now you should pass string 'ASC' or 'DESC'
- Breaking - changed param name from `env` to `runtime` in the **Functions** API
- Image Crop Gravity support in image preview service
- New endpoint in Account getSession to get session by ID
- New endpoint in the Users API to update user verification status
- Fix - issues with User-Agent when app name consisted of non-ASCII characters
## 0.6.2
- Removed default values, nothing should change in usage as default values are already allocated in server
2021-05-22 02:01:49 +12:00
## 0.6.1
- Fix for image preview param types
2021-05-19 23:43:55 +12:00
## 0.6.0
- Upgraded to Null-safety, minimum Dart SDK required 2.12.0
- Upgraded all underlying dependencies to null safe version
- BREAKING Renamed users.deleteUser to users.delete
- BREAKING Renamed parameter inviteId to membershipId on teams.updateMembershipStatus, teams.deleteMembership
- JWT Support client.setJWT('JWT_GENERATED_IN_CLIENT')
2021-05-19 23:44:22 +12:00
- [Update membership roles](https://appwrite.io/docs/client/teams?sdk=dart#teamsUpdateMembershipRoles)
2021-05-19 23:52:44 +12:00
- New awesome image preview features, supports borderRadius, borderColor, borderWidth
2021-05-19 23:43:55 +12:00
2021-04-21 18:28:47 +12:00
## 0.5.0-dev.1
- Upgraded to Null-safety, minimum Dart SDK required 2.12.0
- Upgraded all underlying dependencies to null safe version
2021-03-05 10:26:09 +13:00
## 0.3.1
- Minor fixes for custom exceptions
2021-03-03 22:08:05 +13:00
## 0.3.0
- Improved code quality
- Added a custom Appwrite exception
- Enabled access to private storage file
## 0.2.0
- Upgraded to work with Appwrite 0.7
2021-01-07 02:45:47 +13:00
## 0.1.0
- First release