diff --git a/.changeset/chubby-ideas-bow.md b/.changeset/chubby-ideas-bow.md deleted file mode 100644 index e05ed3b7a..000000000 --- a/.changeset/chubby-ideas-bow.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"client-sdk-android": patch ---- - -Optimised connection params building diff --git a/.changeset/fix-screen-capture-connection-hang.md b/.changeset/fix-screen-capture-connection-hang.md deleted file mode 100644 index 55d1e670d..000000000 --- a/.changeset/fix-screen-capture-connection-hang.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"client-sdk-android": patch ---- - -Fixed ScreenCaptureConnection suspending forever when bindService fails and crashing when resuming canceled continuations. diff --git a/.changeset/shy-foxes-brake.md b/.changeset/shy-foxes-brake.md deleted file mode 100644 index 5898898e0..000000000 --- a/.changeset/shy-foxes-brake.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"client-sdk-android": patch ---- - -Migrate from Klaxon decoding to kotlinx-serialization for AgentAttribute deserialization diff --git a/.changeset/sixty-radios-switch.md b/.changeset/sixty-radios-switch.md deleted file mode 100644 index 4dcf3e936..000000000 --- a/.changeset/sixty-radios-switch.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"client-sdk-android": patch ---- - -perf: Skip Klaxon parsing for empty agent attribute maps diff --git a/CHANGELOG.md b/CHANGELOG.md index 50d171081..e2315b585 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # client-sdk-android +## 2.23.3 + +### Patch Changes + +- Optimised connection params building - [#852](https://github.com/livekit/client-sdk-android/pull/852) ([@pulakdp](https://github.com/pulakdp)) + +- Fixed ScreenCaptureConnection suspending forever when bindService fails and crashing when resuming canceled continuations. - [#838](https://github.com/livekit/client-sdk-android/pull/838) ([@adrian-niculescu](https://github.com/adrian-niculescu)) + +- Migrate from Klaxon decoding to kotlinx-serialization for AgentAttribute deserialization - [#851](https://github.com/livekit/client-sdk-android/pull/851) ([@davidliu](https://github.com/davidliu)) + +- perf: Skip Klaxon parsing for empty agent attribute maps - [#849](https://github.com/livekit/client-sdk-android/pull/849) ([@YashJainSC](https://github.com/YashJainSC)) + ## 2.23.2 ### Patch Changes diff --git a/README.md b/README.md index 39ecef09b..40b6ff579 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ LiveKit for Android is available as a Maven package. ```groovy title="build.gradle" ... dependencies { - def livekit_version = "2.23.2" + def livekit_version = "2.23.3" implementation "io.livekit:livekit-android:$livekit_version" @@ -58,7 +58,7 @@ dependencies { implementation "io.livekit:livekit-android-track-processors:$livekit_version" // Snapshots of the latest development version are available at: - // implementation "io.livekit:livekit-android:2.23.3-SNAPSHOT" + // implementation "io.livekit:livekit-android:2.23.4-SNAPSHOT" } ``` diff --git a/gradle.properties b/gradle.properties index fa3caa71b..4f0de0628 100644 --- a/gradle.properties +++ b/gradle.properties @@ -23,7 +23,7 @@ kotlin.code.style=official ############################################################### GROUP=io.livekit -VERSION_NAME=2.23.3-SNAPSHOT +VERSION_NAME=2.23.3 POM_DESCRIPTION=LiveKit Android SDK, WebRTC Rooms diff --git a/package.json b/package.json index ebaed0b13..c806119d9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "client-sdk-android", - "version": "2.23.2", + "version": "2.23.3", "repository": "https://github.com/livekit/client-sdk-android.git", "license": "Apache License 2.0", "private": true,