Skip to content

Commit 185e6b7

Browse files
authored
Merge pull request #247 from appwrite/dev
chore: add changelog and update version
2 parents 6307a57 + d99d99e commit 185e6b7

File tree

5 files changed

+16
-4
lines changed

5 files changed

+16
-4
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
1+
## 15.0.2
2+
3+
* Avoid setting empty `User-Agent` header and only encode it when present.
4+
* Update doc examples to use new multi-region endpoint: `https://<REGION>.cloud.appwrite.io/v1`.
5+
6+
## 15.0.1
7+
8+
* Removed `Content-Type` header from GET and HEAD requests.
9+
* Add validation for setting endpoint in `setEndpoint` and `setEndPointRealtime` methods.
10+
* Include Figma in list of available OAuth providers.
11+
112
## 15.0.0
213

14+
* Encode `User-Agent` header to fix invalid HTTP header field value error.
315
* Breaking changes:
416
* Changed the typing of `AppwriteException`'s response parameter from a `dynamic` object to an optional string (`?String`).
517

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Add this to your package's `pubspec.yaml` file:
2121

2222
```yml
2323
dependencies:
24-
appwrite: ^15.0.1
24+
appwrite: ^15.0.2
2525
```
2626
2727
You can install packages from the command line:

lib/src/client_browser.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ class ClientBrowser extends ClientBase with ClientMixin {
4040
'x-sdk-name': 'Flutter',
4141
'x-sdk-platform': 'client',
4242
'x-sdk-language': 'flutter',
43-
'x-sdk-version': '15.0.1',
43+
'x-sdk-version': '15.0.2',
4444
'X-Appwrite-Response-Format': '1.6.0',
4545
};
4646

lib/src/client_io.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ class ClientIO extends ClientBase with ClientMixin {
5959
'x-sdk-name': 'Flutter',
6060
'x-sdk-platform': 'client',
6161
'x-sdk-language': 'flutter',
62-
'x-sdk-version': '15.0.1',
62+
'x-sdk-version': '15.0.2',
6363
'X-Appwrite-Response-Format': '1.6.0',
6464
};
6565

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: appwrite
2-
version: 15.0.1
2+
version: 15.0.2
33
description: Appwrite is an open-source self-hosted backend server that abstract and simplify complex and repetitive development tasks behind a very simple REST API
44
homepage: https://appwrite.io
55
repository: https://github.com/appwrite/sdk-for-flutter

0 commit comments

Comments
 (0)