Skip to content

Commit 5221112

Browse files
committed
chore: add changelog
1 parent f6bcf98 commit 5221112

File tree

3 files changed

+33
-5
lines changed

3 files changed

+33
-5
lines changed

CHANGELOG.md

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,29 @@
1-
# Change Log
1+
# Change Log
2+
3+
## 9.1.0
4+
5+
* Add `incrementDocumentAttribute` and `decrementDocumentAttribute` support to `Databases` service
6+
* Add `dart38` and `flutter332` support to runtime models
7+
* Add `gif` support to `ImageFormat` enum
8+
* Add `encrypt` support to `StringAttribute` model
9+
* Add `sequence` support to `Document` model
10+
11+
## 9.0.0
12+
13+
* Add `<REGION>` to doc examples due to the new multi region endpoints
14+
* Add doc examples and methods for bulk api transactions: `createDocuments`, `deleteDocuments` etc.
15+
* Add doc examples, class and methods for new `Sites` service
16+
* Add doc examples, class and methods for new `Tokens` service
17+
* Add enums for `BuildRuntime `, `Adapter`, `Framework`, `DeploymentDownloadType` and `VCSDeploymentType`
18+
* Update enum for `runtimes` with Pythonml312, Dart219, Flutter327 and Flutter329
19+
* Add `token` param to `getFilePreview` and `getFileView` for File tokens usage
20+
* Add `queries` and `search` params to `listMemberships` method
21+
* Remove `search` param from `listExecutions` method
22+
23+
## 8.0.0
24+
25+
* Fix requests failing by removing `Content-Type` header from `GET` and `HEAD` requests
26+
27+
## 7.0.0
28+
29+
* Fix pong response & chunked upload

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ repositories {
3939
Next, add the dependency to your project's `build.gradle(.kts)` file:
4040

4141
```groovy
42-
implementation("io.appwrite:sdk-for-kotlin:9.0.0")
42+
implementation("io.appwrite:sdk-for-kotlin:9.1.0")
4343
```
4444

4545
### Maven
@@ -50,7 +50,7 @@ Add this to your project's `pom.xml` file:
5050
<dependency>
5151
<groupId>io.appwrite</groupId>
5252
<artifactId>sdk-for-kotlin</artifactId>
53-
<version>9.0.0</version>
53+
<version>9.1.0</version>
5454
</dependency>
5555
</dependencies>
5656
```

src/main/kotlin/io/appwrite/Client.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,11 +58,11 @@ class Client @JvmOverloads constructor(
5858
init {
5959
headers = mutableMapOf(
6060
"content-type" to "application/json",
61-
"user-agent" to "AppwriteKotlinSDK/9.0.0 ${System.getProperty("http.agent")}",
61+
"user-agent" to "AppwriteKotlinSDK/9.1.0 ${System.getProperty("http.agent")}",
6262
"x-sdk-name" to "Kotlin",
6363
"x-sdk-platform" to "server",
6464
"x-sdk-language" to "kotlin",
65-
"x-sdk-version" to "9.0.0",
65+
"x-sdk-version" to "9.1.0",
6666
"x-appwrite-response-format" to "1.7.0",
6767
)
6868

0 commit comments

Comments
 (0)