chore: update sdks 1.7.x

This commit is contained in:
Chirag Aggarwal
2025-07-24 13:42:55 +05:30
parent cc8e04f4fa
commit 32bb8b7c7e
9 changed files with 91 additions and 18 deletions
+9 -9
View File
@@ -11,7 +11,7 @@ return [
[
'key' => 'web',
'name' => 'Web',
'version' => '18.1.0',
'version' => '18.2.0',
'url' => 'https://github.com/appwrite/sdk-for-web',
'package' => 'https://www.npmjs.com/package/appwrite',
'enabled' => true,
@@ -57,9 +57,9 @@ return [
]
],
[
'key' => 'flutter',
'key' => 'flutter',
'name' => 'Flutter',
'version' => '17.0.2',
'version' => '17.1.0',
'url' => 'https://github.com/appwrite/sdk-for-flutter',
'package' => 'https://pub.dev/packages/appwrite',
'enabled' => true,
@@ -77,7 +77,7 @@ return [
[
'key' => 'apple',
'name' => 'Apple',
'version' => '10.1.1',
'version' => '10.2.0',
'url' => 'https://github.com/appwrite/sdk-for-apple',
'package' => 'https://github.com/appwrite/sdk-for-apple',
'enabled' => true,
@@ -112,7 +112,7 @@ return [
[
'key' => 'android',
'name' => 'Android',
'version' => '8.1.0',
'version' => '8.2.0',
'url' => 'https://github.com/appwrite/sdk-for-android',
'package' => 'https://search.maven.org/artifact/io.appwrite/sdk-for-android',
'enabled' => true,
@@ -134,7 +134,7 @@ return [
[
'key' => 'react-native',
'name' => 'React Native',
'version' => '0.10.1',
'version' => '0.10.2',
'url' => 'https://github.com/appwrite/sdk-for-react-native',
'package' => 'https://npmjs.com/package/react-native-appwrite',
'enabled' => true,
@@ -199,7 +199,7 @@ return [
[
'key' => 'web',
'name' => 'Console',
'version' => '1.7.0',
'version' => '1.9.0',
'url' => 'https://github.com/appwrite/sdk-for-console',
'package' => '',
'enabled' => true,
@@ -251,7 +251,7 @@ return [
[
'key' => 'nodejs',
'name' => 'Node.js',
'version' => '17.1.0',
'version' => '17.2.0',
'url' => 'https://github.com/appwrite/sdk-for-node',
'package' => 'https://www.npmjs.com/package/node-appwrite',
'enabled' => true,
@@ -377,7 +377,7 @@ return [
[
'key' => 'dart',
'name' => 'Dart',
'version' => '16.1.0',
'version' => '16.2.0',
'url' => 'https://github.com/appwrite/sdk-for-dart',
'package' => 'https://pub.dev/packages/dart_appwrite',
'enabled' => true,
Generated
+6 -6
View File
@@ -4810,16 +4810,16 @@
"packages-dev": [
{
"name": "appwrite/sdk-generator",
"version": "0.41.19",
"version": "0.41.22",
"source": {
"type": "git",
"url": "https://github.com/appwrite/sdk-generator.git",
"reference": "ae6d44b373ae09f28d8b2dbb781ea3e2491b842d"
"reference": "5c416dcbdae9fce8ad170a6d73ebd817c8f6fe53"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/appwrite/sdk-generator/zipball/ae6d44b373ae09f28d8b2dbb781ea3e2491b842d",
"reference": "ae6d44b373ae09f28d8b2dbb781ea3e2491b842d",
"url": "https://api.github.com/repos/appwrite/sdk-generator/zipball/5c416dcbdae9fce8ad170a6d73ebd817c8f6fe53",
"reference": "5c416dcbdae9fce8ad170a6d73ebd817c8f6fe53",
"shasum": ""
},
"require": {
@@ -4855,9 +4855,9 @@
"description": "Appwrite PHP library for generating API SDKs for multiple programming languages and platforms",
"support": {
"issues": "https://github.com/appwrite/sdk-generator/issues",
"source": "https://github.com/appwrite/sdk-generator/tree/0.41.19"
"source": "https://github.com/appwrite/sdk-generator/tree/0.41.22"
},
"time": "2025-07-23T06:33:44+00:00"
"time": "2025-07-24T07:59:05+00:00"
},
{
"name": "doctrine/annotations",
+16 -1
View File
@@ -1,8 +1,23 @@
# Change Log
## 8.2.0
* Add `incrementDocumentAttribute` and `decrementDocumentAttribute` support to `Databases` service
* Add `gif` support to `ImageFormat` enum
* Add `sequence` support to `Document` model
## 8.1.0
* Add `devKeys` support to `Client` service
* Add `upsertDocument` support to `Databases` service
## 8.0.0
* Add `token` param to `getFilePreview` and `getFileView` for File tokens usage
* Update default `quality` for `getFilePreview` from 0 to -1
* Remove `Gif` from ImageFormat enum
* Remove `search` param from `listExecutions` method
* Remove `search` param from `listExecutions` method
## 7.0.1
* Fix requests failing by removing `Content-Type` header from `GET` and `HEAD` requests
+29 -1
View File
@@ -1,8 +1,36 @@
# Change Log
## 10.2.0
* 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)
* Add `incrementDocumentAttribute` and `decrementDocumentAttribute` support to `Databases` service
* Add `gif` support to `ImageFormat` enum
* Remove `Content-Type`, `Content-Length` headers and body from websocket requests
## 10.1.1
* Adds warnings to bulk operation methods
* Fix select Queries by updating internal attributes like id, createdAt, updatedAt etc. to be optional in Document model.
* Fix querying datetime values by properly encoding URLs
## 10.1.0
* Add `devKeys` support to `Client` service
* Add `upsertDocument` support to `Databases` service
## 10.0.0
* Add `<REGION>` to doc examples due to the new multi region endpoints
* Add `token` param to `getFilePreview` and `getFileView` for File tokens usage
* Remove `search` param from `listExecutions` method
* Remove `Gif` from ImageFormat enum
* Remove `Gif` from ImageFormat enum
## 9.0.1
* Fix requests failing by removing `Content-Type` header from `GET` and `HEAD` requests
## 9.0.0
* Remove redundant titles from method descriptions.
* Add `codable` models
* Ensure response attribute in `AppwriteException` is always string
+6
View File
@@ -1,5 +1,11 @@
# Change Log
## 16.2.0
* Add `incrementDocumentAttribute` and `decrementDocumentAttribute` support to `Databases` service
* Add `encrypt` support to string attribute model
* Add `sequence` support to `Document` model
## 16.1.0
* Add `gif` support to `ImageFormat` enum
+6
View File
@@ -1,5 +1,11 @@
# Change Log
## 17.1.0
* Add `incrementDocumentAttribute` and `decrementDocumentAttribute` support to `Databases` service
* Add `gif` support to `ImageFormat` enum
* Add `sequence` support to `Document` model
## 17.0.2
* Add `gif` support to `ImageFormat` enum
+5
View File
@@ -1,5 +1,10 @@
# Change Log
## 17.2.0
* Add `incrementDocumentAttribute` and `decrementDocumentAttribute` support to `Databases` service
* Fix autocompletion not working for `Document` model even when generic is passed
## 17.1.0
* Add `upsertDocument` method
+7 -1
View File
@@ -1,5 +1,11 @@
# Change log
## 0.10.2
* Add `incrementDocumentAttribute` and `decrementDocumentAttribute` support to `Databases` service
* Add `sequence` support to `Document` model
* Fix autocompletion not working for `Document` model even when generic is passed
## 0.10.1
* Fix URL based methods like `getFileViewURL`, `getFilePreviewURL` etc. by adding the missing `projectId` to searchParams
@@ -28,4 +34,4 @@
## 0.7.4
* Upgrade dependencies to resolve PlatformConstants error with Expo 53
* Update doc examples to use new multi-region endpoint
* Update doc examples to use new multi-region endpoint
+7
View File
@@ -1,5 +1,12 @@
# Change Log
## 18.2.0
* Add `incrementDocumentAttribute` and `decrementDocumentAttribute` support to `Databases` service
* Add `gif` support to `ImageFormat` enum
* Fix undefined `fileParam` error in `chunkedUpload` method
* Fix autocompletion not working for `Document` model even when generic is passed
## 18.1.1
* Fix using `devKeys` resulting in an error by conditionally removing credentials