From 565fef0f0f1d22025ff05c4e320d7f7f84cc1967 Mon Sep 17 00:00:00 2001 From: "knope-bot[bot]" <152252888+knope-bot[bot]@users.noreply.github.com> Date: Fri, 17 Apr 2026 13:06:47 +0000 Subject: [PATCH] Release packages --- .changeset/add_device_info_crate.md | 8 -------- .changeset/nvidia_nvenc_check.md | 5 ----- Cargo.lock | 10 +++++----- Cargo.toml | 10 +++++----- device-info/CHANGELOG.md | 5 +++++ device-info/Cargo.toml | 2 +- livekit-api/CHANGELOG.md | 6 ++++++ livekit-api/Cargo.toml | 2 +- .../npm/darwin-arm64/package.json | 2 +- livekit-ffi-node-bindings/npm/darwin-x64/package.json | 2 +- .../npm/linux-arm64-gnu/package.json | 2 +- .../npm/linux-x64-gnu/package.json | 2 +- .../npm/win32-x64-msvc/package.json | 2 +- livekit-ffi-node-bindings/package.json | 4 ++-- livekit-ffi/CHANGELOG.md | 6 ++++++ livekit-ffi/Cargo.toml | 2 +- livekit/CHANGELOG.md | 6 ++++++ livekit/Cargo.toml | 2 +- webrtc-sys/CHANGELOG.md | 6 ++++++ webrtc-sys/Cargo.toml | 2 +- 20 files changed, 51 insertions(+), 35 deletions(-) delete mode 100644 .changeset/add_device_info_crate.md delete mode 100644 .changeset/nvidia_nvenc_check.md diff --git a/.changeset/add_device_info_crate.md b/.changeset/add_device_info_crate.md deleted file mode 100644 index e55f99642..000000000 --- a/.changeset/add_device_info_crate.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -livekit: patch -livekit-api: patch -livekit-ffi: patch -device-info: patch ---- - -Add device-info crate and send device_info to telemetry - #982 (@maxheimbrock) diff --git a/.changeset/nvidia_nvenc_check.md b/.changeset/nvidia_nvenc_check.md deleted file mode 100644 index 7fe382c93..000000000 --- a/.changeset/nvidia_nvenc_check.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -webrtc-sys: patch ---- - -Add NVENC check when Nvidia GPU detected - #1015 (@chenosaurus) diff --git a/Cargo.lock b/Cargo.lock index 008f8eab0..bbdf9e7f0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1848,7 +1848,7 @@ checksum = "abd57806937c9cc163efc8ea3910e00a62e2aeb0b8119f1793a978088f8f6b04" [[package]] name = "device-info" -version = "0.1.0" +version = "0.1.1" dependencies = [ "core-foundation 0.10.1", "jni 0.21.1", @@ -3998,7 +3998,7 @@ checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092" [[package]] name = "livekit" -version = "0.7.36" +version = "0.7.37" dependencies = [ "anyhow", "base64 0.22.1", @@ -4027,7 +4027,7 @@ dependencies = [ [[package]] name = "livekit-api" -version = "0.4.18" +version = "0.4.19" dependencies = [ "async-tungstenite", "base64 0.21.7", @@ -4079,7 +4079,7 @@ dependencies = [ [[package]] name = "livekit-ffi" -version = "0.12.52" +version = "0.12.53" dependencies = [ "bytes", "console-subscriber", @@ -8726,7 +8726,7 @@ dependencies = [ [[package]] name = "webrtc-sys" -version = "0.3.27" +version = "0.3.28" dependencies = [ "cc", "cxx", diff --git a/Cargo.toml b/Cargo.toml index d16cf17a8..cfdb510ae 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -43,17 +43,17 @@ repository = "https://github.com/livekit/rust-sdks" license = "Apache-2.0" [workspace.dependencies] -device-info = { version = "0.1.0", path = "device-info" } +device-info = { version = "0.1.1", path = "device-info" } imgproc = { version = "0.3.19", path = "imgproc" } libwebrtc = { version = "0.3.29", path = "libwebrtc" } -livekit = { version = "0.7.36", path = "livekit" } -livekit-api = { version = "0.4.18", path = "livekit-api" } -livekit-ffi = { version = "0.12.52", path = "livekit-ffi" } +livekit = { version = "0.7.37", path = "livekit" } +livekit-api = { version = "0.4.19", path = "livekit-api" } +livekit-ffi = { version = "0.12.53", path = "livekit-ffi" } livekit-datatrack = { version = "0.1.3", path = "livekit-datatrack" } livekit-protocol = { version = "0.7.4", path = "livekit-protocol" } livekit-runtime = { version = "0.4.0", path = "livekit-runtime" } soxr-sys = { version = "0.1.3", path = "soxr-sys" } -webrtc-sys = { version = "0.3.27", path = "webrtc-sys" } +webrtc-sys = { version = "0.3.28", path = "webrtc-sys" } webrtc-sys-build = { version = "0.3.15", path = "webrtc-sys/build" } yuv-sys = { version = "0.3.14", path = "yuv-sys" } diff --git a/device-info/CHANGELOG.md b/device-info/CHANGELOG.md index e69de29bb..0af98b3ac 100644 --- a/device-info/CHANGELOG.md +++ b/device-info/CHANGELOG.md @@ -0,0 +1,5 @@ +## 0.1.1 (2026-04-17) + +### Fixes + +- Add device-info crate and send device_info to telemetry - #982 (@maxheimbrock) diff --git a/device-info/Cargo.toml b/device-info/Cargo.toml index 27620fd16..ec2be1c80 100644 --- a/device-info/Cargo.toml +++ b/device-info/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "device-info" -version = "0.1.0" +version = "0.1.1" edition.workspace = true repository.workspace = true license.workspace = true diff --git a/livekit-api/CHANGELOG.md b/livekit-api/CHANGELOG.md index 1237da14c..0ce649b54 100644 --- a/livekit-api/CHANGELOG.md +++ b/livekit-api/CHANGELOG.md @@ -96,6 +96,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Update protocol and add SendDataRequest nonce +## 0.4.19 (2026-04-17) + +### Fixes + +- Add device-info crate and send device_info to telemetry - #982 (@maxheimbrock) + ## 0.4.18 (2026-04-02) ### Fixes diff --git a/livekit-api/Cargo.toml b/livekit-api/Cargo.toml index fc3035591..926d5023c 100644 --- a/livekit-api/Cargo.toml +++ b/livekit-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "livekit-api" -version = "0.4.18" +version = "0.4.19" license.workspace = true description = "Rust Server SDK for LiveKit" edition.workspace = true diff --git a/livekit-ffi-node-bindings/npm/darwin-arm64/package.json b/livekit-ffi-node-bindings/npm/darwin-arm64/package.json index 90f23d5c1..0b5ba3417 100644 --- a/livekit-ffi-node-bindings/npm/darwin-arm64/package.json +++ b/livekit-ffi-node-bindings/npm/darwin-arm64/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/rtc-ffi-bindings-darwin-arm64", - "version": "0.12.52", + "version": "0.12.53", "cpu": [ "arm64" ], diff --git a/livekit-ffi-node-bindings/npm/darwin-x64/package.json b/livekit-ffi-node-bindings/npm/darwin-x64/package.json index a52c29d56..c7c9f3a87 100644 --- a/livekit-ffi-node-bindings/npm/darwin-x64/package.json +++ b/livekit-ffi-node-bindings/npm/darwin-x64/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/rtc-ffi-bindings-darwin-x64", - "version": "0.12.52", + "version": "0.12.53", "cpu": [ "x64" ], diff --git a/livekit-ffi-node-bindings/npm/linux-arm64-gnu/package.json b/livekit-ffi-node-bindings/npm/linux-arm64-gnu/package.json index fd14341f4..3d654b6e3 100644 --- a/livekit-ffi-node-bindings/npm/linux-arm64-gnu/package.json +++ b/livekit-ffi-node-bindings/npm/linux-arm64-gnu/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/rtc-ffi-bindings-linux-arm64-gnu", - "version": "0.12.52", + "version": "0.12.53", "cpu": [ "arm64" ], diff --git a/livekit-ffi-node-bindings/npm/linux-x64-gnu/package.json b/livekit-ffi-node-bindings/npm/linux-x64-gnu/package.json index 7c7d25b31..f6b1b3ba5 100644 --- a/livekit-ffi-node-bindings/npm/linux-x64-gnu/package.json +++ b/livekit-ffi-node-bindings/npm/linux-x64-gnu/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/rtc-ffi-bindings-linux-x64-gnu", - "version": "0.12.52", + "version": "0.12.53", "cpu": [ "x64" ], diff --git a/livekit-ffi-node-bindings/npm/win32-x64-msvc/package.json b/livekit-ffi-node-bindings/npm/win32-x64-msvc/package.json index ba2b151de..a5e5ec32e 100644 --- a/livekit-ffi-node-bindings/npm/win32-x64-msvc/package.json +++ b/livekit-ffi-node-bindings/npm/win32-x64-msvc/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/rtc-ffi-bindings-win32-x64-msvc", - "version": "0.12.52", + "version": "0.12.53", "cpu": [ "x64" ], diff --git a/livekit-ffi-node-bindings/package.json b/livekit-ffi-node-bindings/package.json index 0124bc439..04696aa81 100644 --- a/livekit-ffi-node-bindings/package.json +++ b/livekit-ffi-node-bindings/package.json @@ -3,7 +3,7 @@ "description": "LiveKit RTC Node FFI bindings for internal use only", "license": "Apache-2.0", "author": "LiveKit", - "version": "0.12.52", + "version": "0.12.53", "main": "index.js", "types": "index.d.ts", "type": "commonjs", @@ -60,4 +60,4 @@ "ci:artifacts": "napi artifacts" }, "packageManager": "pnpm@9.15.9+sha512.68046141893c66fad01c079231128e9afb89ef87e2691d69e4d40eee228988295fd4682181bae55b58418c3a253bde65a505ec7c5f9403ece5cc3cd37dcf2531" -} +} \ No newline at end of file diff --git a/livekit-ffi/CHANGELOG.md b/livekit-ffi/CHANGELOG.md index 6dbf7551c..b4afe5030 100644 --- a/livekit-ffi/CHANGELOG.md +++ b/livekit-ffi/CHANGELOG.md @@ -316,6 +316,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - bump libwebrtc to m125 +## 0.12.53 (2026-04-17) + +### Fixes + +- Add device-info crate and send device_info to telemetry - #982 (@maxheimbrock) + ## 0.12.52 (2026-04-02) ### Features diff --git a/livekit-ffi/Cargo.toml b/livekit-ffi/Cargo.toml index fdca2c2d6..38e16a6e3 100644 --- a/livekit-ffi/Cargo.toml +++ b/livekit-ffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "livekit-ffi" -version = "0.12.52" +version = "0.12.53" edition.workspace = true license.workspace = true description = "FFI interface for bindings in other languages" diff --git a/livekit/CHANGELOG.md b/livekit/CHANGELOG.md index db76df092..9a268f108 100644 --- a/livekit/CHANGELOG.md +++ b/livekit/CHANGELOG.md @@ -257,6 +257,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - bump libwebrtc to m125 +## 0.7.37 (2026-04-17) + +### Fixes + +- Add device-info crate and send device_info to telemetry - #982 (@maxheimbrock) + ## 0.7.36 (2026-04-02) ### Features diff --git a/livekit/Cargo.toml b/livekit/Cargo.toml index d3d3441b0..8022f8d03 100644 --- a/livekit/Cargo.toml +++ b/livekit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "livekit" -version = "0.7.36" +version = "0.7.37" edition.workspace = true license.workspace = true description = "Rust Client SDK for LiveKit" diff --git a/webrtc-sys/CHANGELOG.md b/webrtc-sys/CHANGELOG.md index d59c3a681..1cbafed79 100644 --- a/webrtc-sys/CHANGELOG.md +++ b/webrtc-sys/CHANGELOG.md @@ -165,6 +165,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - bump libwebrtc to m125 +## 0.3.28 (2026-04-17) + +### Fixes + +- Add NVENC check when Nvidia GPU detected - #1015 (@chenosaurus) + ## 0.3.27 (2026-04-02) ### Features diff --git a/webrtc-sys/Cargo.toml b/webrtc-sys/Cargo.toml index 8a7ad9a70..d1bbd8bdc 100644 --- a/webrtc-sys/Cargo.toml +++ b/webrtc-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "webrtc-sys" -version = "0.3.27" +version = "0.3.28" edition.workspace = true homepage = "https://livekit.io" license.workspace = true