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/cold-plants-push.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/cuddly-mugs-compare.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/new-shrimps-rest.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/tidy-mangos-scope.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/video-track-publish-unpublish-leaks.md

This file was deleted.

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

## 2.27.0

### Minor Changes

- Add `LocalAudioTrack.applyOptions`, which allows updating the audio track options on the fly. - [#974](https://github.com/livekit/client-sdk-android/pull/974) ([@davidliu](https://github.com/davidliu))

### Patch Changes

- Fix custom LocalAudioTrackOptions not applying correctly - [#974](https://github.com/livekit/client-sdk-android/pull/974) ([@davidliu](https://github.com/davidliu))

- Properly update the server info after reconnect - [#962](https://github.com/livekit/client-sdk-android/pull/962) ([@davidliu](https://github.com/davidliu))

- Scoped the protobuf consumer keep rule to the SDK's generated messages and the well-known types they embed, instead of every GeneratedMessageLite subclass in the consuming app. - [#975](https://github.com/livekit/client-sdk-android/pull/975) ([@adrian-niculescu](https://github.com/adrian-niculescu))

- Fix native memory leaks on video track publish/unpublish cycles (#521). `LocalVideoTrack.dispose()` now disposes its backing `VideoSource`, which was previously left undisposed and leaked for the lifetime of the process (only the track and capturer were released). Unpublishing a video track now also stops its `RtpTransceiver`, along with any extra transceivers added for backup codecs; since a new transceiver is created on every publish, removing the track from its sender alone left them retained until the connection closed. - [#971](https://github.com/livekit/client-sdk-android/pull/971) ([@adrian-niculescu](https://github.com/adrian-niculescu))

## 2.26.1

### Patch 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.26.1"
def livekit_version = "2.27.0"

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.26.2-SNAPSHOT"
// implementation "io.livekit:livekit-android:2.27.1-SNAPSHOT"
}
```

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ kapt.use.worker.api=true
###############################################################

GROUP=io.livekit
VERSION_NAME=2.26.2-SNAPSHOT
VERSION_NAME=2.27.0

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.26.1",
"version": "2.27.0",
"repository": "https://github.com/livekit/client-sdk-android.git",
"license": "Apache License 2.0",
"private": true,
Expand Down