From 00a7b7b052d1602ecb6524b55d0ba0e3a3128454 Mon Sep 17 00:00:00 2001 From: "knope-bot[bot]" <152252888+knope-bot[bot]@users.noreply.github.com> Date: Fri, 3 Jul 2026 11:42:21 +0000 Subject: [PATCH] Release packages --- .changeset/feat_auto_failover_apis_with_lk_cloud.md | 7 ------- .changeset/turn_single_peerconnection_off_by_default.md | 6 ------ Cargo.lock | 6 +++--- Cargo.toml | 6 +++--- livekit-api/CHANGELOG.md | 6 ++++++ livekit-api/Cargo.toml | 2 +- livekit-ffi-node-bindings/npm/darwin-arm64/package.json | 2 +- livekit-ffi-node-bindings/npm/darwin-x64/package.json | 2 +- livekit-ffi-node-bindings/npm/linux-arm64-gnu/package.json | 2 +- livekit-ffi-node-bindings/npm/linux-x64-gnu/package.json | 2 +- livekit-ffi-node-bindings/npm/win32-x64-msvc/package.json | 2 +- livekit-ffi-node-bindings/package.json | 2 +- livekit-ffi/CHANGELOG.md | 7 +++++++ livekit-ffi/Cargo.toml | 2 +- livekit/CHANGELOG.md | 7 +++++++ livekit/Cargo.toml | 2 +- 16 files changed, 35 insertions(+), 28 deletions(-) delete mode 100644 .changeset/feat_auto_failover_apis_with_lk_cloud.md delete mode 100644 .changeset/turn_single_peerconnection_off_by_default.md diff --git a/.changeset/feat_auto_failover_apis_with_lk_cloud.md b/.changeset/feat_auto_failover_apis_with_lk_cloud.md deleted file mode 100644 index f3dcb0adb..000000000 --- a/.changeset/feat_auto_failover_apis_with_lk_cloud.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -livekit: patch -livekit-api: minor -livekit-ffi: patch ---- - -feat: auto failover APIs with LK Cloud - #1196 (@davidzhao) diff --git a/.changeset/turn_single_peerconnection_off_by_default.md b/.changeset/turn_single_peerconnection_off_by_default.md deleted file mode 100644 index 777442986..000000000 --- a/.changeset/turn_single_peerconnection_off_by_default.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -livekit: patch -livekit-ffi: patch ---- - -Turn single peerconnection off by default - #1206 (@cnderrauber) diff --git a/Cargo.lock b/Cargo.lock index bb3cd69b8..993cbb34b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3888,7 +3888,7 @@ checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092" [[package]] name = "livekit" -version = "0.7.50" +version = "0.7.51" dependencies = [ "anyhow", "base64 0.22.1", @@ -3920,7 +3920,7 @@ dependencies = [ [[package]] name = "livekit-api" -version = "0.5.4" +version = "0.5.5" dependencies = [ "async-tungstenite", "base64 0.21.7", @@ -3978,7 +3978,7 @@ dependencies = [ [[package]] name = "livekit-ffi" -version = "0.12.68" +version = "0.12.69" dependencies = [ "bytes", "console-subscriber", diff --git a/Cargo.toml b/Cargo.toml index 93d4a11df..9e743cdef 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -47,9 +47,9 @@ license = "Apache-2.0" device-info = { version = "0.1.1", path = "device-info" } imgproc = { version = "0.3.19", path = "imgproc" } libwebrtc = { version = "0.3.39", path = "libwebrtc" } -livekit = { version = "0.7.50", path = "livekit" } -livekit-api = { version = "0.5.4", path = "livekit-api" } -livekit-ffi = { version = "0.12.68", path = "livekit-ffi" } +livekit = { version = "0.7.51", path = "livekit" } +livekit-api = { version = "0.5.5", path = "livekit-api" } +livekit-ffi = { version = "0.12.69", path = "livekit-ffi" } livekit-datatrack = { version = "0.1.9", path = "livekit-datatrack" } livekit-protocol = { version = "0.7.10", path = "livekit-protocol" } livekit-runtime = { version = "0.4.0", path = "livekit-runtime" } diff --git a/livekit-api/CHANGELOG.md b/livekit-api/CHANGELOG.md index 055e2eb60..16e486406 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.5.5 (2026-07-03) + +### Features + +- feat: auto failover APIs with LK Cloud - #1196 (@davidzhao) + ## 0.5.4 (2026-06-24) ### Fixes diff --git a/livekit-api/Cargo.toml b/livekit-api/Cargo.toml index 8afd55fc7..94eb13efb 100644 --- a/livekit-api/Cargo.toml +++ b/livekit-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "livekit-api" -version = "0.5.4" +version = "0.5.5" 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 bdacd8139..5e60b969e 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.68", + "version": "0.12.69", "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 580cfc1a2..d92dc5079 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.68", + "version": "0.12.69", "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 b5acc56dc..d7b30ef4c 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.68", + "version": "0.12.69", "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 9edafd976..119fd9df3 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.68", + "version": "0.12.69", "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 f3f60a2db..d25f6ac8b 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.68", + "version": "0.12.69", "cpu": [ "x64" ], diff --git a/livekit-ffi-node-bindings/package.json b/livekit-ffi-node-bindings/package.json index 0adac8d85..4588c5238 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.68", + "version": "0.12.69", "main": "index.js", "types": "index.d.ts", "type": "commonjs", diff --git a/livekit-ffi/CHANGELOG.md b/livekit-ffi/CHANGELOG.md index 04f3d3216..0689f6511 100644 --- a/livekit-ffi/CHANGELOG.md +++ b/livekit-ffi/CHANGELOG.md @@ -316,6 +316,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - bump libwebrtc to m125 +## 0.12.69 (2026-07-03) + +### Fixes + +- feat: auto failover APIs with LK Cloud - #1196 (@davidzhao) +- Turn single peerconnection off by default - #1206 (@cnderrauber) + ## 0.12.68 (2026-06-30) ### Features diff --git a/livekit-ffi/Cargo.toml b/livekit-ffi/Cargo.toml index a869bb71f..bb6ec758c 100644 --- a/livekit-ffi/Cargo.toml +++ b/livekit-ffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "livekit-ffi" -version = "0.12.68" +version = "0.12.69" 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 b678836fe..489a59b5f 100644 --- a/livekit/CHANGELOG.md +++ b/livekit/CHANGELOG.md @@ -257,6 +257,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - bump libwebrtc to m125 +## 0.7.51 (2026-07-03) + +### Fixes + +- feat: auto failover APIs with LK Cloud - #1196 (@davidzhao) +- Turn single peerconnection off by default - #1206 (@cnderrauber) + ## 0.7.50 (2026-06-30) ### Features diff --git a/livekit/Cargo.toml b/livekit/Cargo.toml index 3eb83261e..e8429076c 100644 --- a/livekit/Cargo.toml +++ b/livekit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "livekit" -version = "0.7.50" +version = "0.7.51" edition.workspace = true license.workspace = true description = "Rust Client SDK for LiveKit"