diff --git a/.changeset/big-points-happen.md b/.changeset/big-points-happen.md deleted file mode 100644 index 0e2741fe6..000000000 --- a/.changeset/big-points-happen.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"client-sdk-android": patch ---- - -Fix Room.connect not properly throwing ConnectException for websocket connection failures during Room.join() diff --git a/.changeset/khaki-trains-roll.md b/.changeset/khaki-trains-roll.md deleted file mode 100644 index 389deebac..000000000 --- a/.changeset/khaki-trains-roll.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"client-sdk-android": patch ---- - -Fix reconnect potentially getting cancelled by websocket failure diff --git a/.changeset/sturdy-foxes-publish.md b/.changeset/sturdy-foxes-publish.md deleted file mode 100644 index 3aae73bba..000000000 --- a/.changeset/sturdy-foxes-publish.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"client-sdk-android": patch ---- - -Fixed RTCEngine.addTrack leaking pendingTrackResolvers entries on timeout or caller cancellation, which previously caused subsequent publishes of the same track to fail with DuplicateTrackException until the connection was torn down. diff --git a/.changeset/tiny-buses-hear.md b/.changeset/tiny-buses-hear.md deleted file mode 100644 index de52c30c0..000000000 --- a/.changeset/tiny-buses-hear.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"client-sdk-android": patch ---- - -Fix exception when resending data channel messages after a resume diff --git a/CHANGELOG.md b/CHANGELOG.md index 46bca9547..de5d3bb06 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # client-sdk-android +## 2.25.2 + +### Patch Changes + +- Fix Room.connect not properly throwing ConnectException for websocket connection failures during Room.join() - [#926](https://github.com/livekit/client-sdk-android/pull/926) ([@davidliu](https://github.com/davidliu)) + +- Fix reconnect potentially getting cancelled by websocket failure - [#926](https://github.com/livekit/client-sdk-android/pull/926) ([@davidliu](https://github.com/davidliu)) + +- Fixed RTCEngine.addTrack leaking pendingTrackResolvers entries on timeout or caller cancellation, which previously caused subsequent publishes of the same track to fail with DuplicateTrackException until the connection was torn down. - [#920](https://github.com/livekit/client-sdk-android/pull/920) ([@adrian-niculescu](https://github.com/adrian-niculescu)) + +- Fix exception when resending data channel messages after a resume - [#923](https://github.com/livekit/client-sdk-android/pull/923) ([@davidliu](https://github.com/davidliu)) + ## 2.25.1 ### Patch Changes diff --git a/README.md b/README.md index 5b1d93b3f..54e251cf6 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.25.1" + def livekit_version = "2.25.2" 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.25.2-SNAPSHOT" + // implementation "io.livekit:livekit-android:2.25.3-SNAPSHOT" } ``` diff --git a/gradle.properties b/gradle.properties index 0b0afefdc..3993aea17 100644 --- a/gradle.properties +++ b/gradle.properties @@ -33,7 +33,7 @@ kapt.use.worker.api=true ############################################################### GROUP=io.livekit -VERSION_NAME=2.25.1 +VERSION_NAME=2.25.2 POM_DESCRIPTION=LiveKit Android SDK, WebRTC Rooms diff --git a/package.json b/package.json index 42c6f700d..b603bcbf6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "client-sdk-android", - "version": "2.25.1", + "version": "2.25.2", "repository": "https://github.com/livekit/client-sdk-android.git", "license": "Apache License 2.0", "private": true,