diff --git a/app/config/platforms.php b/app/config/platforms.php index 3b675b174c..edb94f1f96 100644 --- a/app/config/platforms.php +++ b/app/config/platforms.php @@ -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, diff --git a/docs/sdks/cli/CHANGELOG.md b/docs/sdks/cli/CHANGELOG.md index ad355682a0..8a1ea0f360 100644 --- a/docs/sdks/cli/CHANGELOG.md +++ b/docs/sdks/cli/CHANGELOG.md @@ -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 diff --git a/docs/sdks/web/CHANGELOG.md b/docs/sdks/web/CHANGELOG.md index 338ec9095c..90b3a91db8 100644 --- a/docs/sdks/web/CHANGELOG.md +++ b/docs/sdks/web/CHANGELOG.md @@ -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