From f92080a48750a5fc501bdd1f0136d72c45002c5f Mon Sep 17 00:00:00 2001 From: Torsten Dittmann Date: Mon, 6 Sep 2021 09:51:48 +0200 Subject: [PATCH] add changelog --- docs/sdks/dart/CHANGELOG.md | 10 ++++++++++ docs/sdks/flutter/CHANGELOG.md | 13 +++++++++++++ 2 files changed, 23 insertions(+) diff --git a/docs/sdks/dart/CHANGELOG.md b/docs/sdks/dart/CHANGELOG.md index 2ad259751..bb81963b0 100644 --- a/docs/sdks/dart/CHANGELOG.md +++ b/docs/sdks/dart/CHANGELOG.md @@ -1,3 +1,13 @@ +## 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' diff --git a/docs/sdks/flutter/CHANGELOG.md b/docs/sdks/flutter/CHANGELOG.md index f8c69e63e..b531ba417 100644 --- a/docs/sdks/flutter/CHANGELOG.md +++ b/docs/sdks/flutter/CHANGELOG.md @@ -1,3 +1,16 @@ +## 1.0.1 +- Fix null pointer exception while creating OAuth2 session +- Export RealtimeMessage +- 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 +- Introduces new Realtime service, [more on official docs](link-to-realtime-docs) +- Breaking Signature for `MultipartFile` has changed as now we are using `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.1 - Fix - createOAuth2Session completing too early