From eb27065425f2fbcc9f8a9f072d57e2dad8f95c54 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 26 Aug 2026 09:48:34 +0000 Subject: [PATCH] Version Packages --- .../forward-participant-disconnect-reason.md | 5 ----- .changeset/grumpy-buckets-guess.md | 5 ----- .changeset/light-apes-eat.md | 5 ----- .changeset/puny-grapes-watch.md | 5 ----- .changeset/salty-tigers-beg.md | 5 ----- .changeset/smart-plants-care.md | 5 ----- .../supports-adaptive-stream-detection.md | 5 ----- .changeset/token-source-require-exp.md | 5 ----- .changeset/wet-kiwis-flash.md | 5 ----- CHANGELOG.md | 22 +++++++++++++++++++ package.json | 2 +- 11 files changed, 23 insertions(+), 46 deletions(-) delete mode 100644 .changeset/forward-participant-disconnect-reason.md delete mode 100644 .changeset/grumpy-buckets-guess.md delete mode 100644 .changeset/light-apes-eat.md delete mode 100644 .changeset/puny-grapes-watch.md delete mode 100644 .changeset/salty-tigers-beg.md delete mode 100644 .changeset/smart-plants-care.md delete mode 100644 .changeset/supports-adaptive-stream-detection.md delete mode 100644 .changeset/token-source-require-exp.md delete mode 100644 .changeset/wet-kiwis-flash.md diff --git a/.changeset/forward-participant-disconnect-reason.md b/.changeset/forward-participant-disconnect-reason.md deleted file mode 100644 index 9b712c194a..0000000000 --- a/.changeset/forward-participant-disconnect-reason.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'livekit-client': patch ---- - -Forward `DisconnectReason` to the `ParticipantDisconnected` event diff --git a/.changeset/grumpy-buckets-guess.md b/.changeset/grumpy-buckets-guess.md deleted file mode 100644 index f408c2ed3d..0000000000 --- a/.changeset/grumpy-buckets-guess.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"livekit-client": patch ---- - -chore: periodically log webrtc stats diff --git a/.changeset/light-apes-eat.md b/.changeset/light-apes-eat.md deleted file mode 100644 index 9a418ab397..0000000000 --- a/.changeset/light-apes-eat.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"livekit-client": patch ---- - -fix: enqueue signal requests until queue has been drained diff --git a/.changeset/puny-grapes-watch.md b/.changeset/puny-grapes-watch.md deleted file mode 100644 index aedf7ab47a..0000000000 --- a/.changeset/puny-grapes-watch.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'livekit-client': patch ---- - -Add roomOptions.dataStream.maxPayloadByteLength to control max data stream size diff --git a/.changeset/salty-tigers-beg.md b/.changeset/salty-tigers-beg.md deleted file mode 100644 index 8e1d309ac1..0000000000 --- a/.changeset/salty-tigers-beg.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"livekit-client": patch ---- - -chore: signalling state machine diff --git a/.changeset/smart-plants-care.md b/.changeset/smart-plants-care.md deleted file mode 100644 index f709b7a183..0000000000 --- a/.changeset/smart-plants-care.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"livekit-client": patch ---- - -fix: catch unhandled ws signal errors diff --git a/.changeset/supports-adaptive-stream-detection.md b/.changeset/supports-adaptive-stream-detection.md deleted file mode 100644 index 18f1416b4f..0000000000 --- a/.changeset/supports-adaptive-stream-detection.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'livekit-client': patch ---- - -Fix `supportsAdaptiveStream` always returning `true` by comparing `typeof` against the `'undefined'` string. It now returns `false` in environments without `ResizeObserver` or `IntersectionObserver`. diff --git a/.changeset/token-source-require-exp.md b/.changeset/token-source-require-exp.md deleted file mode 100644 index 913bbda376..0000000000 --- a/.changeset/token-source-require-exp.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'livekit-client': patch ---- - -Treat TokenSource JWTs without `exp` as expired, and still honor `exp` when `nbf` is absent diff --git a/.changeset/wet-kiwis-flash.md b/.changeset/wet-kiwis-flash.md deleted file mode 100644 index 5bd929f2e2..0000000000 --- a/.changeset/wet-kiwis-flash.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'livekit-client': patch ---- - -Convert internal exports to be external in examples/demo diff --git a/CHANGELOG.md b/CHANGELOG.md index eb5fc9cc71..2466b63fda 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,27 @@ # Change Log +## 2.22.1 + +### Patch Changes + +- Forward `DisconnectReason` to the `ParticipantDisconnected` event - [#2055](https://github.com/livekit/client-sdk-js/pull/2055) ([@seonghunYang](https://github.com/seonghunYang)) + +- chore: periodically log webrtc stats - [#2064](https://github.com/livekit/client-sdk-js/pull/2064) ([@lukasIO](https://github.com/lukasIO)) + +- fix: enqueue signal requests until queue has been drained - [#2061](https://github.com/livekit/client-sdk-js/pull/2061) ([@lukasIO](https://github.com/lukasIO)) + +- Add roomOptions.dataStream.maxPayloadByteLength to control max data stream size - [#2060](https://github.com/livekit/client-sdk-js/pull/2060) ([@1egoman](https://github.com/1egoman)) + +- chore: signalling state machine - [#2046](https://github.com/livekit/client-sdk-js/pull/2046) ([@lukasIO](https://github.com/lukasIO)) + +- fix: catch unhandled ws signal errors - [#2065](https://github.com/livekit/client-sdk-js/pull/2065) ([@lukasIO](https://github.com/lukasIO)) + +- Fix `supportsAdaptiveStream` always returning `true` by comparing `typeof` against the `'undefined'` string. It now returns `false` in environments without `ResizeObserver` or `IntersectionObserver`. - [#2059](https://github.com/livekit/client-sdk-js/pull/2059) ([@mrpmohiburrahman](https://github.com/mrpmohiburrahman)) + +- Treat TokenSource JWTs without `exp` as expired, and still honor `exp` when `nbf` is absent - [#2057](https://github.com/livekit/client-sdk-js/pull/2057) ([@SashaMIT](https://github.com/SashaMIT)) + +- Convert internal exports to be external in examples/demo - [#2067](https://github.com/livekit/client-sdk-js/pull/2067) ([@1egoman](https://github.com/1egoman)) + ## 2.22.0 ### Minor Changes diff --git a/package.json b/package.json index 7737a922c4..d4cb90effb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "livekit-client", - "version": "2.22.0", + "version": "2.22.1", "description": "JavaScript/TypeScript client SDK for LiveKit", "main": "./dist/livekit-client.umd.js", "unpkg": "./dist/livekit-client.umd.js",