Skip to content

Commit 8ddf332

Browse files
committed
chore: add changelog
1 parent 60ad50b commit 8ddf332

File tree

3 files changed

+47
-3
lines changed

3 files changed

+47
-3
lines changed

CHANGELOG.md

Lines changed: 45 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,45 @@
1-
# Change Log
1+
# Change Log
2+
3+
## 10.2.0
4+
5+
* Update sdk to use swift-native doc comments instead of jsdoc styled comments as per [Swift Documentation Comments](https://github.com/swiftlang/swift/blob/main/docs/DocumentationComments.md)
6+
* Add `incrementDocumentAttribute` and `decrementDocumentAttribute` support to `Databases` service
7+
* Add `gif` support to `ImageFormat` enum
8+
* Add `sequence` support to `Document` model
9+
* Add `dart38` and `flutter332` support to runtime models
10+
11+
## 10.1.0
12+
13+
* Adds `upsertDocument` method
14+
* Adds warnings to bulk operation methods
15+
* Adds the new `encrypt` attribute
16+
* Adds runtimes: `flutter332` and `dart38`
17+
* Fix `select` Queries by updating internal attributes like `id`, `createdAt`, `updatedAt` etc. to be optional in `Document` model.
18+
* Fix `listCollection` errors by updating `attributes` typing
19+
* Fix querying datetime values by properly encoding URLs
20+
21+
## 10.0.0
22+
23+
* Add `<REGION>` to doc examples due to the new multi region endpoints
24+
* Add doc examples and methods for bulk api transactions: `createDocuments`, `deleteDocuments` etc.
25+
* Add doc examples, class and methods for new `Sites` service
26+
* Add doc examples, class and methods for new `Tokens` service
27+
* Add enums for `BuildRuntime `, `Adapter`, `Framework`, `DeploymentDownloadType` and `VCSDeploymentType`
28+
* Update enum for `runtimes` with Pythonml312, Dart219, Flutter327 and Flutter329
29+
* Add `token` param to `getFilePreview` and `getFileView` for File tokens usage
30+
* Add `queries` and `search` params to `listMemberships` method
31+
* Remove `search` param from `listExecutions` method
32+
33+
## 9.0.0
34+
35+
* Fix requests failing by removing `Content-Type` header from `GET` and `HEAD` requests
36+
37+
## 8.0.0
38+
39+
* Remove redundant titles from method descriptions.
40+
* Add `codable` models
41+
* Ensure response attribute in `AppwriteException` is always string
42+
43+
## 7.0.0
44+
45+
* Fix pong response & chunked upload

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Add the package to your `Package.swift` dependencies:
3333

3434
```swift
3535
dependencies: [
36-
.package(url: "git@github.com:appwrite/sdk-for-swift.git", from: "10.1.0"),
36+
.package(url: "git@github.com:appwrite/sdk-for-swift.git", from: "10.2.0"),
3737
],
3838
```
3939

Sources/Appwrite/Client.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ open class Client {
2121
"x-sdk-name": "Swift",
2222
"x-sdk-platform": "server",
2323
"x-sdk-language": "swift",
24-
"x-sdk-version": "10.1.0",
24+
"x-sdk-version": "10.2.0",
2525
"x-appwrite-response-format": "1.7.0"
2626
]
2727

0 commit comments

Comments
 (0)