Merge pull request #10694 from appwrite/update-sdks

update sdks
This commit is contained in:
Luke B. Silver
2025-10-27 11:16:26 +00:00
committed by GitHub
3 changed files with 15 additions and 2 deletions
+2 -2
View File
@@ -11,7 +11,7 @@ return [
[
'key' => 'web',
'name' => 'Web',
'version' => '21.2.1',
'version' => '21.3.0',
'url' => 'https://github.com/appwrite/sdk-for-web',
'package' => 'https://www.npmjs.com/package/appwrite',
'enabled' => true,
@@ -226,7 +226,7 @@ return [
[
'key' => 'cli',
'name' => 'Command Line',
'version' => '10.2.2',
'version' => '10.2.3',
'url' => 'https://github.com/appwrite/sdk-for-cli',
'package' => 'https://www.npmjs.com/package/appwrite-cli',
'enabled' => true,
+5
View File
@@ -1,5 +1,10 @@
# Change Log
## 10.2.3
* Fix `init tables` command not working
* Improve tablesDB resource syncing during `push tables` command
## 10.2.2
* Fix `logout` command showing duplicate sessions
+8
View File
@@ -1,5 +1,13 @@
# Change Log
## 21.3.0
* Add new `Realtime` service with methods for subscribing to channels and receiving messages
* Fix `client.setSession` not working when using realtime
* Deprecate `client.subscribe` method in favor of `Realtime` service
> Note: Deprecated methods are still available for backwards compatibility, but might be removed in future versions.
## 21.2.1
* Add transaction support for Databases and TablesDB