feat: release array param enums support to all sdks

This commit is contained in:
Chirag Aggarwal
2026-02-02 15:34:32 +05:30
parent 8938dcf8f4
commit 9ee318de3c
16 changed files with 77 additions and 17 deletions
+16 -16
View File
@@ -11,7 +11,7 @@ return [
[
'key' => 'web',
'name' => 'Web',
'version' => '21.5.0',
'version' => '22.0.0',
'url' => 'https://github.com/appwrite/sdk-for-web',
'package' => 'https://www.npmjs.com/package/appwrite',
'enabled' => true,
@@ -60,7 +60,7 @@ return [
[
'key' => 'flutter',
'name' => 'Flutter',
'version' => '20.3.3',
'version' => '21.0.0',
'url' => 'https://github.com/appwrite/sdk-for-flutter',
'package' => 'https://pub.dev/packages/appwrite',
'enabled' => true,
@@ -79,7 +79,7 @@ return [
[
'key' => 'apple',
'name' => 'Apple',
'version' => '13.5.0',
'version' => '14.0.0',
'url' => 'https://github.com/appwrite/sdk-for-apple',
'package' => 'https://github.com/appwrite/sdk-for-apple',
'enabled' => true,
@@ -117,7 +117,7 @@ return [
'key' => 'android',
'name' => 'Android',
'namespace' => 'io.appwrite',
'version' => '11.4.0',
'version' => '12.0.0',
'url' => 'https://github.com/appwrite/sdk-for-android',
'package' => 'https://search.maven.org/artifact/io.appwrite/sdk-for-android',
'enabled' => true,
@@ -140,7 +140,7 @@ return [
[
'key' => 'react-native',
'name' => 'React Native',
'version' => '0.19.0',
'version' => '0.20.0',
'url' => 'https://github.com/appwrite/sdk-for-react-native',
'package' => 'https://npmjs.com/package/react-native-appwrite',
'enabled' => true,
@@ -208,7 +208,7 @@ return [
[
'key' => 'web',
'name' => 'Console',
'version' => '0.2.0',
'version' => '0.3.0',
'url' => '',
'package' => '',
'enabled' => true,
@@ -227,7 +227,7 @@ return [
[
'key' => 'cli',
'name' => 'Command Line',
'version' => '13.1.0',
'version' => '14.0.0',
'url' => 'https://github.com/appwrite/sdk-for-cli',
'package' => 'https://www.npmjs.com/package/appwrite-cli',
'enabled' => true,
@@ -253,7 +253,7 @@ return [
[
'key' => 'markdown',
'name' => 'Markdown',
'version' => '0.1.0',
'version' => '0.2.0',
'url' => 'https://github.com/appwrite/sdk-for-md.git',
'package' => 'https://www.npmjs.com/package/@appwrite.io/docs',
'enabled' => true,
@@ -283,7 +283,7 @@ return [
[
'key' => 'nodejs',
'name' => 'Node.js',
'version' => '21.1.0',
'version' => '22.0.0',
'url' => 'https://github.com/appwrite/sdk-for-node',
'package' => 'https://www.npmjs.com/package/node-appwrite',
'enabled' => true,
@@ -302,7 +302,7 @@ return [
[
'key' => 'php',
'name' => 'PHP',
'version' => '19.1.0',
'version' => '20.0.0',
'url' => 'https://github.com/appwrite/sdk-for-php',
'package' => 'https://packagist.org/packages/appwrite/appwrite',
'enabled' => true,
@@ -321,7 +321,7 @@ return [
[
'key' => 'python',
'name' => 'Python',
'version' => '14.1.0',
'version' => '15.0.0',
'url' => 'https://github.com/appwrite/sdk-for-python',
'package' => 'https://pypi.org/project/appwrite/',
'enabled' => true,
@@ -340,7 +340,7 @@ return [
[
'key' => 'ruby',
'name' => 'Ruby',
'version' => '20.1.0',
'version' => '21.0.0',
'url' => 'https://github.com/appwrite/sdk-for-ruby',
'package' => 'https://rubygems.org/gems/appwrite',
'enabled' => true,
@@ -378,7 +378,7 @@ return [
[
'key' => 'dotnet',
'name' => '.NET',
'version' => '0.24.0',
'version' => '0.25.0',
'url' => 'https://github.com/appwrite/sdk-for-dotnet',
'package' => 'https://www.nuget.org/packages/Appwrite',
'enabled' => true,
@@ -397,7 +397,7 @@ return [
[
'key' => 'dart',
'name' => 'Dart',
'version' => '20.1.1',
'version' => '21.0.0',
'url' => 'https://github.com/appwrite/sdk-for-dart',
'package' => 'https://pub.dev/packages/dart_appwrite',
'enabled' => true,
@@ -417,7 +417,7 @@ return [
'key' => 'kotlin',
'name' => 'Kotlin',
'namespace' => 'io.appwrite',
'version' => '13.1.0',
'version' => '14.0.0',
'url' => 'https://github.com/appwrite/sdk-for-kotlin',
'package' => 'https://search.maven.org/artifact/io.appwrite/sdk-for-kotlin',
'enabled' => true,
@@ -440,7 +440,7 @@ return [
[
'key' => 'swift',
'name' => 'Swift',
'version' => '14.1.0',
'version' => '15.0.0',
'url' => 'https://github.com/appwrite/sdk-for-swift',
'package' => 'https://github.com/appwrite/sdk-for-swift',
'enabled' => true,
+4
View File
@@ -1,5 +1,9 @@
# Change Log
## 12.0.0
* Add array-based enum parameters (e.g., `permissions: List<BrowserPermission>`).
## 11.4.0
* Add `getScreenshot` method to `Avatars` service
+4
View File
@@ -1,5 +1,9 @@
# Change Log
## 14.0.0
* Add array-based enum parameters (e.g., `permissions: [BrowserPermission]`).
## 13.5.0
* Add `getScreenshot` method to `Avatars` service
+4
View File
@@ -1,5 +1,9 @@
# Change Log
## 21.0.0
* Add array-based enum parameters (e.g., `permissions: List<BrowserPermission>`).
## 20.1.1
* Fix boolean parameter not handled correctly in Client requests
+4
View File
@@ -1,5 +1,9 @@
# Change Log
## 16.0.0
* Add array-based enum parameters (e.g., `permissions: BrowserPermission[]`).
## 15.1.0
* Add `incrementDocumentAttribute` and `decrementDocumentAttribute` support to `Databases` service
+4
View File
@@ -1,5 +1,9 @@
# Change Log
## 0.25.0
* Add array-based enum parameters (e.g., `permissions: IReadOnlyList<BrowserPermission>`).
## 0.24.0
* Added ability to create columns and indexes synchronously while creating a table
+4
View File
@@ -1,5 +1,9 @@
# Change Log
## 21.0.0
* Add array-based enum parameters (e.g., `permissions: List<BrowserPermission>`).
## 20.3.3
* Fix boolean parameter not handled correctly in Client requests
+4
View File
@@ -1,5 +1,9 @@
# Change Log
## 14.0.0
* Add array-based enum parameters (e.g., `permissions: List<BrowserPermission>`).
## 13.1.0
* Added ability to create columns and indexes synchronously while creating a table
+4
View File
@@ -1,5 +1,9 @@
# Change Log
## 0.2.0
* Document array-based enum parameters in Markdown examples (e.g., `permissions: BrowserPermission[]`).
## 0.1.0
* Initial release
+5 -1
View File
@@ -1,5 +1,9 @@
# Change Log
## 22.0.0
* Add array-based enum parameters (e.g., `permissions: BrowserPermission[]`).
## 21.1.0
* Added ability to create columns and indexes synchronously while creating a table
@@ -96,4 +100,4 @@
* Rename `templateBranch` to `templateVersion` in `createFunction()`.
* Rename `downloadDeployment()` to `getDeploymentDownload()`
> You can find the new syntax for breaking changes in the [Appwrite API references](https://appwrite.io/docs/references). Select version `1.6.x`.
> You can find the new syntax for breaking changes in the [Appwrite API references](https://appwrite.io/docs/references). Select version `1.6.x`.
+4
View File
@@ -1,5 +1,9 @@
# Change Log
## 20.0.0
* Add array-based enum parameters (e.g., `permissions: array<BrowserPermission>`).
## 19.1.0
* Added ability to create columns and indexes synchronously while creating a table
+4
View File
@@ -1,5 +1,9 @@
# Change Log
## 15.0.0
* Add array-based enum parameters (e.g., `permissions: list[BrowserPermission]`).
## 14.1.0
* Added ability to create columns and indexes synchronously while creating a table
+4
View File
@@ -1,5 +1,9 @@
# Change log
## 0.20.0
* Add array-based enum parameters (e.g., `permissions: BrowserPermission[]`).
## 0.19.0
* Add `getScreenshot` method to `Avatars` service
+4
View File
@@ -1,5 +1,9 @@
# Change Log
## 21.0.0
* Add array-based enum parameters (e.g., `permissions: Array<BrowserPermission>`).
## 20.1.0
* Added ability to create columns and indexes synchronously while creating a table
+4
View File
@@ -1,5 +1,9 @@
# Change Log
## 15.0.0
* Add array-based enum parameters (e.g., `permissions: [BrowserPermission]`).
## 14.1.0
* Added ability to create columns and indexes synchronously while creating a table
+4
View File
@@ -1,5 +1,9 @@
# Change Log
## 22.0.0
* Add array-based enum parameters (e.g., `permissions: BrowserPermission[]`).
## 21.5.0
* Add `getScreenshot` method to `Avatars` service