diff --git a/Cargo.lock b/Cargo.lock index 973656718..1517f4347 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3008,7 +3008,7 @@ dependencies = [ [[package]] name = "libwebrtc" -version = "0.3.21" +version = "0.3.22" dependencies = [ "cxx", "env_logger 0.10.2", @@ -3077,7 +3077,7 @@ checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092" [[package]] name = "livekit" -version = "0.7.26" +version = "0.7.27" dependencies = [ "anyhow", "bmrng", @@ -3133,7 +3133,7 @@ dependencies = [ [[package]] name = "livekit-ffi" -version = "0.12.41" +version = "0.12.42" dependencies = [ "bytes", "console-subscriber", @@ -6375,7 +6375,7 @@ dependencies = [ [[package]] name = "webrtc-sys" -version = "0.3.18" +version = "0.3.19" dependencies = [ "cc", "cxx", diff --git a/Cargo.toml b/Cargo.toml index cdfc0b2f2..2c940951e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -31,13 +31,13 @@ members = [ [workspace.dependencies] imgproc = { version = "0.3.15", path = "imgproc" } -libwebrtc = { version = "0.3.21", path = "libwebrtc" } -livekit = { version = "0.7.26", path = "livekit" } +libwebrtc = { version = "0.3.22", path = "libwebrtc" } +livekit = { version = "0.7.27", path = "livekit" } livekit-api = { version = "0.4.11", path = "livekit-api" } -livekit-ffi = { version = "0.12.41", path = "livekit-ffi" } +livekit-ffi = { version = "0.12.42", path = "livekit-ffi" } livekit-protocol = { version = "0.6.0", path = "livekit-protocol" } livekit-runtime = { version = "0.4.0", path = "livekit-runtime" } soxr-sys = { version = "0.1.1", path = "soxr-sys" } -webrtc-sys = { version = "0.3.18", path = "webrtc-sys" } +webrtc-sys = { version = "0.3.19", path = "webrtc-sys" } webrtc-sys-build = { version = "0.3.12", path = "webrtc-sys/build" } yuv-sys = { version = "0.3.10", path = "yuv-sys" } diff --git a/libwebrtc/CHANGELOG.md b/libwebrtc/CHANGELOG.md index 25ecb2aa0..e36745cdd 100644 --- a/libwebrtc/CHANGELOG.md +++ b/libwebrtc/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.22](https://github.com/livekit/rust-sdks/compare/rust-sdks/libwebrtc@0.3.21...rust-sdks/libwebrtc@0.3.22) - 2025-12-17 + +### Other + +- Expose WebRTC's audio_mixer ([#806](https://github.com/livekit/rust-sdks/pull/806)) + ## [0.3.21](https://github.com/livekit/rust-sdks/compare/rust-sdks/libwebrtc@0.3.20...rust-sdks/libwebrtc@0.3.21) - 2025-12-04 ### Other diff --git a/libwebrtc/Cargo.toml b/libwebrtc/Cargo.toml index a1379a57d..e62e31491 100644 --- a/libwebrtc/Cargo.toml +++ b/libwebrtc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libwebrtc" -version = "0.3.21" +version = "0.3.22" edition = "2021" homepage = "https://livekit.io" license = "Apache-2.0" diff --git a/livekit-ffi/CHANGELOG.md b/livekit-ffi/CHANGELOG.md index d3d3f832b..a57fd904c 100644 --- a/livekit-ffi/CHANGELOG.md +++ b/livekit-ffi/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.12.42](https://github.com/livekit/rust-sdks/compare/rust-sdks/livekit-ffi@0.12.41...rust-sdks/livekit-ffi@0.12.42) - 2025-12-17 + +### Other + +- Handle server initiated mute request ([#812](https://github.com/livekit/rust-sdks/pull/812)) + ## [0.12.41](https://github.com/livekit/rust-sdks/compare/rust-sdks/livekit-ffi@0.12.40...rust-sdks/livekit-ffi@0.12.41) - 2025-12-04 ### Added diff --git a/livekit-ffi/Cargo.toml b/livekit-ffi/Cargo.toml index 54e9ab53e..760b0f1c1 100644 --- a/livekit-ffi/Cargo.toml +++ b/livekit-ffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "livekit-ffi" -version = "0.12.41" +version = "0.12.42" edition = "2021" license = "Apache-2.0" description = "FFI interface for bindings in other languages" diff --git a/livekit/CHANGELOG.md b/livekit/CHANGELOG.md index 3d74b56fd..a927d4c47 100644 --- a/livekit/CHANGELOG.md +++ b/livekit/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.7.27](https://github.com/livekit/rust-sdks/compare/rust-sdks/livekit@0.7.26...rust-sdks/livekit@0.7.27) - 2025-12-17 + +### Other + +- Handle server initiated mute request ([#812](https://github.com/livekit/rust-sdks/pull/812)) + ## [0.7.26](https://github.com/livekit/rust-sdks/compare/rust-sdks/livekit@0.7.25...rust-sdks/livekit@0.7.26) - 2025-12-04 ### Added diff --git a/livekit/Cargo.toml b/livekit/Cargo.toml index b772dbdcb..71124f738 100644 --- a/livekit/Cargo.toml +++ b/livekit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "livekit" -version = "0.7.26" +version = "0.7.27" edition = "2021" license = "Apache-2.0" description = "Rust Client SDK for LiveKit" diff --git a/webrtc-sys/CHANGELOG.md b/webrtc-sys/CHANGELOG.md index 0a94acbbd..4eb93affd 100644 --- a/webrtc-sys/CHANGELOG.md +++ b/webrtc-sys/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.19](https://github.com/livekit/rust-sdks/compare/rust-sdks/webrtc-sys@0.3.18...rust-sdks/webrtc-sys@0.3.19) - 2025-12-17 + +### Fixed + +- lazy loading for additional dependencies. ([#814](https://github.com/livekit/rust-sdks/pull/814)) + +### Other + +- Expose WebRTC's audio_mixer ([#806](https://github.com/livekit/rust-sdks/pull/806)) + ## [0.3.18](https://github.com/livekit/rust-sdks/compare/rust-sdks/webrtc-sys@0.3.17...rust-sdks/webrtc-sys@0.3.18) - 2025-12-04 ### Other diff --git a/webrtc-sys/Cargo.toml b/webrtc-sys/Cargo.toml index 566b533be..0cc1616bc 100644 --- a/webrtc-sys/Cargo.toml +++ b/webrtc-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "webrtc-sys" -version = "0.3.18" +version = "0.3.19" edition = "2021" homepage = "https://livekit.io" license = "Apache-2.0"