Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/fix-connection-quality-return.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fix-empty-streams-check.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fix-hasPublished-thread-safety.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fix-local-audio-track-dispose.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fix-localparticipant-jobs-leak.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fix-pct-scope-not-cancelled.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/harden-reconnect-state.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/hip-doors-notice.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/rare-eyes-allow.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/silent-klaxon-proguard.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changeset/weak-brooms-impress.md

This file was deleted.

29 changes: 29 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,34 @@
# client-sdk-android

## 2.23.1

### Patch Changes

- Fixed non-local return in `onConnectionQuality` that caused lost connection quality updates for remaining participants when one participant was not found in the list. - [#817](https://github.com/livekit/client-sdk-android/pull/817) ([@adrian-niculescu](https://github.com/adrian-niculescu))

- Fixed impossible empty streams check in Room.onAddTrack that could crash if WebRTC called onAddTrack with an empty streams array. - [#816](https://github.com/livekit/client-sdk-android/pull/816) ([@adrian-niculescu](https://github.com/adrian-niculescu))

- Improve thread-safety and reconnection reliability for hasPublished flag. - [#814](https://github.com/livekit/client-sdk-android/pull/814) ([@adrian-niculescu](https://github.com/adrian-niculescu))

- Fixed `ConcurrentModificationException` in `LocalAudioTrack.dispose()` when sinks are registered. - [#820](https://github.com/livekit/client-sdk-android/pull/820) ([@adrian-niculescu](https://github.com/adrian-niculescu))

- Fix LocalParticipant jobs map clean-up when unpublishing tracks. - [#807](https://github.com/livekit/client-sdk-android/pull/807) ([@adrian-niculescu](https://github.com/adrian-niculescu))

- Fixed PeerConnectionTransport coroutine scope not being cancelled on close. - [#818](https://github.com/livekit/client-sdk-android/pull/818) ([@adrian-niculescu](https://github.com/adrian-niculescu))

- Improve reconnection reliability by hardening state flags and synchronizing data channel receive state. - [#806](https://github.com/livekit/client-sdk-android/pull/806) ([@adrian-niculescu](https://github.com/adrian-niculescu))

- Remove reference to internal OkHttp method - [#811](https://github.com/livekit/client-sdk-android/pull/811) ([@davidliu](https://github.com/davidliu))

- Increase RTC negotiation reliability by dropping outdated sdp answers and forwarding offer ids - [#813](https://github.com/livekit/client-sdk-android/pull/813) ([@davidliu](https://github.com/davidliu))

- Fixed ProGuard/R8 minification crash in release builds when using AgentAttributes. Added @Keep annotations to Klaxon-based data classes and updated ProGuard rules to prevent obfuscation of reflection-based JSON parsing classes. #808 - [#809](https://github.com/livekit/client-sdk-android/pull/809) ([@adrian-niculescu](https://github.com/adrian-niculescu))

- Update WebRTC-SDK to 137.7151.05. - [#824](https://github.com/livekit/client-sdk-android/pull/824) ([@davidliu](https://github.com/davidliu))

- Fixes echo cancellation and noise suppression failing to enable.
- Fixes microphone not shutting off when muted.

## 2.23.0

### Minor Changes
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ LiveKit for Android is available as a Maven package.
```groovy title="build.gradle"
...
dependencies {
def livekit_version = "2.23.0"
def livekit_version = "2.23.1"

implementation "io.livekit:livekit-android:$livekit_version"

Expand All @@ -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.1-SNAPSHOT"
// implementation "io.livekit:livekit-android:2.23.2-SNAPSHOT"
}
```

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ kotlin.code.style=official
###############################################################

GROUP=io.livekit
VERSION_NAME=2.23.1-SNAPSHOT
VERSION_NAME=2.23.1

POM_DESCRIPTION=LiveKit Android SDK, WebRTC Rooms

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "client-sdk-android",
"version": "2.23.0",
"version": "2.23.1",
"repository": "https://github.com/livekit/client-sdk-android.git",
"license": "Apache License 2.0",
"private": true,
Expand Down