From 486b0f79d5a1c26509d64fbc679951764744d4ad Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 29 Sep 2025 02:05:23 +0000 Subject: [PATCH] chore: release --- Cargo.lock | 18 +++++++++--------- Cargo.toml | 18 +++++++++--------- imgproc/CHANGELOG.md | 6 ++++++ imgproc/Cargo.toml | 2 +- libwebrtc/CHANGELOG.md | 6 ++++++ libwebrtc/Cargo.toml | 2 +- livekit-api/CHANGELOG.md | 6 ++++++ livekit-api/Cargo.toml | 2 +- livekit-ffi/CHANGELOG.md | 16 ++++++++++++++++ livekit-ffi/Cargo.toml | 2 +- livekit-protocol/CHANGELOG.md | 6 ++++++ livekit-protocol/Cargo.toml | 2 +- livekit/CHANGELOG.md | 15 +++++++++++++++ livekit/Cargo.toml | 2 +- webrtc-sys/CHANGELOG.md | 11 +++++++++++ webrtc-sys/Cargo.toml | 2 +- webrtc-sys/build/CHANGELOG.md | 6 ++++++ webrtc-sys/build/Cargo.toml | 2 +- yuv-sys/CHANGELOG.md | 6 ++++++ yuv-sys/Cargo.toml | 2 +- 20 files changed, 105 insertions(+), 27 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index dbbff8a54..bb5756d6b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1417,7 +1417,7 @@ dependencies = [ [[package]] name = "imgproc" -version = "0.3.13" +version = "0.3.14" dependencies = [ "yuv-sys", ] @@ -1634,7 +1634,7 @@ dependencies = [ [[package]] name = "libwebrtc" -version = "0.3.14" +version = "0.3.15" dependencies = [ "cxx", "env_logger 0.10.1", @@ -1690,7 +1690,7 @@ checksum = "c4cd1a83af159aa67994778be9070f0ae1bd732942279cabb14f86f986a21456" [[package]] name = "livekit" -version = "0.7.18" +version = "0.7.19" dependencies = [ "anyhow", "bmrng", @@ -1716,7 +1716,7 @@ dependencies = [ [[package]] name = "livekit-api" -version = "0.4.6" +version = "0.4.7" dependencies = [ "async-tungstenite", "base64", @@ -1746,7 +1746,7 @@ dependencies = [ [[package]] name = "livekit-ffi" -version = "0.12.33" +version = "0.12.34" dependencies = [ "bytes", "console-subscriber", @@ -1773,7 +1773,7 @@ dependencies = [ [[package]] name = "livekit-protocol" -version = "0.4.0" +version = "0.5.0" dependencies = [ "futures-util", "livekit-runtime", @@ -3501,7 +3501,7 @@ checksum = "1778a42e8b3b90bff8d0f5032bf22250792889a5cdc752aa0020c84abe3aaf10" [[package]] name = "webrtc-sys" -version = "0.3.11" +version = "0.3.12" dependencies = [ "cc", "cxx", @@ -3514,7 +3514,7 @@ dependencies = [ [[package]] name = "webrtc-sys-build" -version = "0.3.7" +version = "0.3.8" dependencies = [ "anyhow", "fs2", @@ -3876,7 +3876,7 @@ dependencies = [ [[package]] name = "yuv-sys" -version = "0.3.8" +version = "0.3.9" dependencies = [ "bindgen", "cc", diff --git a/Cargo.toml b/Cargo.toml index fcf72fcc6..d5d5dfa5e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,14 +15,14 @@ members = [ ] [workspace.dependencies] -imgproc = { version = "0.3.13", path = "imgproc" } -yuv-sys = { version = "0.3.8", path = "yuv-sys" } -libwebrtc = { version = "0.3.14", path = "libwebrtc" } -livekit-api = { version = "0.4.6", path = "livekit-api" } -livekit-ffi = { version = "0.12.33", path = "livekit-ffi" } -livekit-protocol = { version = "0.4.0", path = "livekit-protocol" } +imgproc = { version = "0.3.14", path = "imgproc" } +yuv-sys = { version = "0.3.9", path = "yuv-sys" } +libwebrtc = { version = "0.3.15", path = "libwebrtc" } +livekit-api = { version = "0.4.7", path = "livekit-api" } +livekit-ffi = { version = "0.12.34", path = "livekit-ffi" } +livekit-protocol = { version = "0.5.0", path = "livekit-protocol" } livekit-runtime = { version = "0.4.0", path = "livekit-runtime" } -livekit = { version = "0.7.18", path = "livekit" } +livekit = { version = "0.7.19", path = "livekit" } soxr-sys = { version = "0.1.0", path = "soxr-sys" } -webrtc-sys-build = { version = "0.3.7", path = "webrtc-sys/build" } -webrtc-sys = { version = "0.3.11", path = "webrtc-sys" } +webrtc-sys-build = { version = "0.3.8", path = "webrtc-sys/build" } +webrtc-sys = { version = "0.3.12", path = "webrtc-sys" } diff --git a/imgproc/CHANGELOG.md b/imgproc/CHANGELOG.md index 7dac518b8..03089bb69 100644 --- a/imgproc/CHANGELOG.md +++ b/imgproc/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.14](https://github.com/livekit/rust-sdks/compare/rust-sdks/imgproc@0.3.13...rust-sdks/imgproc@0.3.14) - 2025-09-29 + +### Other + +- updated the following local packages: yuv-sys + ## [0.3.13](https://github.com/livekit/rust-sdks/compare/rust-sdks/imgproc@0.3.12...rust-sdks/imgproc@0.3.13) - 2025-09-09 ### Other diff --git a/imgproc/Cargo.toml b/imgproc/Cargo.toml index c08caaf64..1c247458a 100644 --- a/imgproc/Cargo.toml +++ b/imgproc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "imgproc" -version = "0.3.13" +version = "0.3.14" edition = "2021" authors = ["Theo Monnom "] license = "MIT OR Apache-2.0" diff --git a/libwebrtc/CHANGELOG.md b/libwebrtc/CHANGELOG.md index c57fb1315..34788c0d6 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.15](https://github.com/livekit/rust-sdks/compare/rust-sdks/libwebrtc@0.3.14...rust-sdks/libwebrtc@0.3.15) - 2025-09-29 + +### Fixed + +- fix Builds/E2E Tests CI. ([#715](https://github.com/livekit/rust-sdks/pull/715)) + ## [0.3.14](https://github.com/livekit/rust-sdks/compare/rust-sdks/libwebrtc@0.3.13...rust-sdks/libwebrtc@0.3.14) - 2025-09-09 ### Other diff --git a/libwebrtc/Cargo.toml b/libwebrtc/Cargo.toml index 06c5c5299..59df55c59 100644 --- a/libwebrtc/Cargo.toml +++ b/libwebrtc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libwebrtc" -version = "0.3.14" +version = "0.3.15" edition = "2021" homepage = "https://livekit.io" license = "Apache-2.0" diff --git a/livekit-api/CHANGELOG.md b/livekit-api/CHANGELOG.md index 64bcc0d93..71da43d1b 100644 --- a/livekit-api/CHANGELOG.md +++ b/livekit-api/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.4.7](https://github.com/livekit/rust-sdks/compare/rust-sdks/livekit-api@0.4.6...rust-sdks/livekit-api@0.4.7) - 2025-09-29 + +### Other + +- updated the following local packages: livekit-protocol + ## [0.4.6](https://github.com/livekit/rust-sdks/compare/rust-sdks/livekit-api@0.4.5...rust-sdks/livekit-api@0.4.6) - 2025-09-03 ### Other diff --git a/livekit-api/Cargo.toml b/livekit-api/Cargo.toml index 1caeb6069..a564ec48b 100644 --- a/livekit-api/Cargo.toml +++ b/livekit-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "livekit-api" -version = "0.4.6" +version = "0.4.7" license = "Apache-2.0" description = "Rust Server SDK for LiveKit" edition = "2021" diff --git a/livekit-ffi/CHANGELOG.md b/livekit-ffi/CHANGELOG.md index dddaa3a59..e3a990864 100644 --- a/livekit-ffi/CHANGELOG.md +++ b/livekit-ffi/CHANGELOG.md @@ -7,6 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.12.34](https://github.com/livekit/rust-sdks/compare/rust-sdks/livekit-ffi@0.12.33...rust-sdks/livekit-ffi@0.12.34) - 2025-09-29 + +### Fixed + +- apply original participant fields in data messages ([#709](https://github.com/livekit/rust-sdks/pull/709)) + +### Other + +- Add send_bytes method ([#691](https://github.com/livekit/rust-sdks/pull/691)) +- Implement Display and Error for RpcError ([#719](https://github.com/livekit/rust-sdks/pull/719)) +- Fix intermittently failing E2E reliability test ([#718](https://github.com/livekit/rust-sdks/pull/718)) +- Do not modify raw packets ([#714](https://github.com/livekit/rust-sdks/pull/714)) +- Disable opus red for e2ee enabled clients ([#706](https://github.com/livekit/rust-sdks/pull/706)) +- Upgrade protocol to v1.41.0 ([#703](https://github.com/livekit/rust-sdks/pull/703)) +- Upgrade libwebrtc to m137. ([#696](https://github.com/livekit/rust-sdks/pull/696)) + ## [0.12.33](https://github.com/livekit/rust-sdks/compare/rust-sdks/livekit-ffi@0.12.32...rust-sdks/livekit-ffi@0.12.33) - 2025-09-09 ### Other diff --git a/livekit-ffi/Cargo.toml b/livekit-ffi/Cargo.toml index dc56ae659..a6d2ef0e0 100644 --- a/livekit-ffi/Cargo.toml +++ b/livekit-ffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "livekit-ffi" -version = "0.12.33" +version = "0.12.34" edition = "2021" license = "Apache-2.0" description = "FFI interface for bindings in other languages" diff --git a/livekit-protocol/CHANGELOG.md b/livekit-protocol/CHANGELOG.md index 918790197..be49e50ce 100644 --- a/livekit-protocol/CHANGELOG.md +++ b/livekit-protocol/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [0.5.0](https://github.com/livekit/rust-sdks/compare/rust-sdks/livekit-protocol@0.4.0...rust-sdks/livekit-protocol@0.5.0) - 2025-09-29 + +### Other + +- Upgrade protocol to v1.41.0 ([#703](https://github.com/livekit/rust-sdks/pull/703)) + ## [0.4.0](https://github.com/livekit/rust-sdks/compare/rust-sdks/livekit-protocol@0.3.10...rust-sdks/livekit-protocol@0.4.0) - 2025-06-17 ### Other diff --git a/livekit-protocol/Cargo.toml b/livekit-protocol/Cargo.toml index 91c49ff72..6697fda22 100644 --- a/livekit-protocol/Cargo.toml +++ b/livekit-protocol/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "livekit-protocol" -version = "0.4.0" +version = "0.5.0" edition = "2021" license = "Apache-2.0" description = "Livekit protocol and utilities for the Rust SDK" diff --git a/livekit/CHANGELOG.md b/livekit/CHANGELOG.md index e92dda36b..aa51753cd 100644 --- a/livekit/CHANGELOG.md +++ b/livekit/CHANGELOG.md @@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.7.19](https://github.com/livekit/rust-sdks/compare/rust-sdks/livekit@0.7.18...rust-sdks/livekit@0.7.19) - 2025-09-29 + +### Fixed + +- apply original participant fields in data messages ([#709](https://github.com/livekit/rust-sdks/pull/709)) + +### Other + +- Implement Display and Error for RpcError ([#719](https://github.com/livekit/rust-sdks/pull/719)) +- Fix intermittently failing E2E reliability test ([#718](https://github.com/livekit/rust-sdks/pull/718)) +- Do not modify raw packets ([#714](https://github.com/livekit/rust-sdks/pull/714)) +- Add send_bytes method ([#691](https://github.com/livekit/rust-sdks/pull/691)) +- Disable opus red for e2ee enabled clients ([#706](https://github.com/livekit/rust-sdks/pull/706)) +- Upgrade protocol to v1.41.0 ([#703](https://github.com/livekit/rust-sdks/pull/703)) + ## [0.7.18](https://github.com/livekit/rust-sdks/compare/rust-sdks/livekit@0.7.17...rust-sdks/livekit@0.7.18) - 2025-09-09 ### Other diff --git a/livekit/Cargo.toml b/livekit/Cargo.toml index 21d412fb2..41f7208e5 100644 --- a/livekit/Cargo.toml +++ b/livekit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "livekit" -version = "0.7.18" +version = "0.7.19" 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 94feecc8b..58724355e 100644 --- a/webrtc-sys/CHANGELOG.md +++ b/webrtc-sys/CHANGELOG.md @@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.12](https://github.com/livekit/rust-sdks/compare/rust-sdks/webrtc-sys@0.3.11...rust-sdks/webrtc-sys@0.3.12) - 2025-09-29 + +### Fixed + +- fix Builds/E2E Tests CI. ([#715](https://github.com/livekit/rust-sdks/pull/715)) + +### Other + +- nvidia codec improve ([#721](https://github.com/livekit/rust-sdks/pull/721)) +- Upgrade libwebrtc to m137. ([#696](https://github.com/livekit/rust-sdks/pull/696)) + ## [0.3.11](https://github.com/livekit/rust-sdks/compare/rust-sdks/webrtc-sys@0.3.10...rust-sdks/webrtc-sys@0.3.11) - 2025-09-09 ### Other diff --git a/webrtc-sys/Cargo.toml b/webrtc-sys/Cargo.toml index 949759a3a..5585ee591 100644 --- a/webrtc-sys/Cargo.toml +++ b/webrtc-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "webrtc-sys" -version = "0.3.11" +version = "0.3.12" edition = "2021" homepage = "https://livekit.io" license = "Apache-2.0" diff --git a/webrtc-sys/build/CHANGELOG.md b/webrtc-sys/build/CHANGELOG.md index d1233689b..317f4914b 100644 --- a/webrtc-sys/build/CHANGELOG.md +++ b/webrtc-sys/build/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [0.3.8](https://github.com/livekit/rust-sdks/compare/rust-sdks/webrtc-sys-build@0.3.7...rust-sdks/webrtc-sys-build@0.3.8) - 2025-09-29 + +### Other + +- Upgrade libwebrtc to m137. ([#696](https://github.com/livekit/rust-sdks/pull/696)) + ## [0.3.7](https://github.com/livekit/rust-sdks/compare/rust-sdks/webrtc-sys-build@0.3.6...rust-sdks/webrtc-sys-build@0.3.7) - 2025-06-17 ### Fixed diff --git a/webrtc-sys/build/Cargo.toml b/webrtc-sys/build/Cargo.toml index 2039d6671..e2502ae82 100644 --- a/webrtc-sys/build/Cargo.toml +++ b/webrtc-sys/build/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "webrtc-sys-build" -version = "0.3.7" +version = "0.3.8" edition = "2021" license = "Apache-2.0" description = "Build utilities when working with libwebrtc" diff --git a/yuv-sys/CHANGELOG.md b/yuv-sys/CHANGELOG.md index 63fbb702a..a58694c08 100644 --- a/yuv-sys/CHANGELOG.md +++ b/yuv-sys/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.9](https://github.com/livekit/rust-sdks/compare/rust-sdks/yuv-sys@0.3.8...rust-sdks/yuv-sys@0.3.9) - 2025-09-29 + +### Other + +- Upgrade libwebrtc to m137. ([#696](https://github.com/livekit/rust-sdks/pull/696)) + ## [0.3.8](https://github.com/livekit/rust-sdks/compare/rust-sdks/yuv-sys@0.3.7...rust-sdks/yuv-sys@0.3.8) - 2025-09-09 ### Other diff --git a/yuv-sys/Cargo.toml b/yuv-sys/Cargo.toml index c5ce8e0e3..e99043b51 100644 --- a/yuv-sys/Cargo.toml +++ b/yuv-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yuv-sys" -version = "0.3.8" +version = "0.3.9" edition = "2021" authors = ["Theo Monnom "] license = "MIT OR Apache-2.0"