From 0142a825da7752c515af16ba4ea46c83c4ccd461 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 21 Sep 2026 06:05:17 +0000 Subject: [PATCH] Version Packages --- .changeset/configutil-derive.md | 6 ------ .changeset/configutil-static-observer.md | 6 ------ .changeset/configutil-validator.md | 6 ------ .changeset/psrpc-bus-split.md | 6 ------ .changeset/utils-leaftest.md | 6 ------ CHANGELOG.md | 14 ++++++++++++++ package.json | 2 +- packages/javascript/CHANGELOG.md | 14 ++++++++++++++ packages/javascript/package.json | 2 +- 9 files changed, 30 insertions(+), 32 deletions(-) delete mode 100644 .changeset/configutil-derive.md delete mode 100644 .changeset/configutil-static-observer.md delete mode 100644 .changeset/configutil-validator.md delete mode 100644 .changeset/psrpc-bus-split.md delete mode 100644 .changeset/utils-leaftest.md diff --git a/.changeset/configutil-derive.md b/.changeset/configutil-derive.md deleted file mode 100644 index ba3fc2d9a..000000000 --- a/.changeset/configutil-derive.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"github.com/livekit/protocol": patch -"@livekit/protocol": patch ---- - -Add `configutil.Derive` for narrowing an observable config onto a subtree diff --git a/.changeset/configutil-static-observer.md b/.changeset/configutil-static-observer.md deleted file mode 100644 index 6064b75df..000000000 --- a/.changeset/configutil-static-observer.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"github.com/livekit/protocol": patch -"@livekit/protocol": patch ---- - -Add `configutil.NewStaticObserver`, which builds an `Observer` over an already-built config with no file to watch, for stubbing observable config in tests. `EmitConfigUpdate` now also stores the config it emits, so `Load` reflects an update pushed by hand. diff --git a/.changeset/configutil-validator.md b/.changeset/configutil-validator.md deleted file mode 100644 index d7f43aa04..000000000 --- a/.changeset/configutil-validator.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"github.com/livekit/protocol": patch -"@livekit/protocol": patch ---- - -Add `configutil.Validator`, an optional builder hook run on every config load after `InitDefaults`. A config that fails validation, or whose `InitDefaults` returns an error, now fails `NewObserver`; on reload the failure is logged and the previous config stays in effect. diff --git a/.changeset/psrpc-bus-split.md b/.changeset/psrpc-bus-split.md deleted file mode 100644 index 3ca877c3c..000000000 --- a/.changeset/psrpc-bus-split.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"github.com/livekit/protocol": patch -"@livekit/protocol": patch ---- - -Update psrpc to v0.8.0 diff --git a/.changeset/utils-leaftest.md b/.changeset/utils-leaftest.md deleted file mode 100644 index cfff2e586..000000000 --- a/.changeset/utils-leaftest.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"github.com/livekit/protocol": patch -"@livekit/protocol": patch ---- - -Add `utils/leaftest`, which asserts that a package imports nothing beyond the standard library and an explicit allow list. `leaftest.Assert(t)` names the package from the working directory, so a guarded package's test carries no import path to keep in sync. Test-only imports are not counted. diff --git a/CHANGELOG.md b/CHANGELOG.md index 796cea03a..cfbfef378 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # github.com/livekit/protocol +## 1.52.1 + +### Patch Changes + +- Add `configutil.Derive` for narrowing an observable config onto a subtree - [#1795](https://github.com/livekit/protocol/pull/1795) ([@paulwe](https://github.com/paulwe)) + +- Add `configutil.NewStaticObserver`, which builds an `Observer` over an already-built config with no file to watch, for stubbing observable config in tests. `EmitConfigUpdate` now also stores the config it emits, so `Load` reflects an update pushed by hand. - [#1795](https://github.com/livekit/protocol/pull/1795) ([@paulwe](https://github.com/paulwe)) + +- Add `configutil.Validator`, an optional builder hook run on every config load after `InitDefaults`. A config that fails validation, or whose `InitDefaults` returns an error, now fails `NewObserver`; on reload the failure is logged and the previous config stays in effect. - [#1795](https://github.com/livekit/protocol/pull/1795) ([@paulwe](https://github.com/paulwe)) + +- Update psrpc to v0.8.0 - [#1808](https://github.com/livekit/protocol/pull/1808) ([@paulwe](https://github.com/paulwe)) + +- Add `utils/leaftest`, which asserts that a package imports nothing beyond the standard library and an explicit allow list. `leaftest.Assert(t)` names the package from the working directory, so a guarded package's test carries no import path to keep in sync. Test-only imports are not counted. - [#1795](https://github.com/livekit/protocol/pull/1795) ([@paulwe](https://github.com/paulwe)) + ## 1.52.0 ### Minor Changes diff --git a/package.json b/package.json index c9d025c24..7005ee2c5 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "github.com/livekit/protocol", "private": true, - "version": "1.52.0", + "version": "1.52.1", "scripts": { "changeset": "changeset", "ci:publish": "pnpm --filter @livekit/protocol run build && changeset publish" diff --git a/packages/javascript/CHANGELOG.md b/packages/javascript/CHANGELOG.md index 1a77d0d75..1892a72bc 100644 --- a/packages/javascript/CHANGELOG.md +++ b/packages/javascript/CHANGELOG.md @@ -1,5 +1,19 @@ # @livekit/protocol +## 1.52.1 + +### Patch Changes + +- Add `configutil.Derive` for narrowing an observable config onto a subtree - [#1795](https://github.com/livekit/protocol/pull/1795) ([@paulwe](https://github.com/paulwe)) + +- Add `configutil.NewStaticObserver`, which builds an `Observer` over an already-built config with no file to watch, for stubbing observable config in tests. `EmitConfigUpdate` now also stores the config it emits, so `Load` reflects an update pushed by hand. - [#1795](https://github.com/livekit/protocol/pull/1795) ([@paulwe](https://github.com/paulwe)) + +- Add `configutil.Validator`, an optional builder hook run on every config load after `InitDefaults`. A config that fails validation, or whose `InitDefaults` returns an error, now fails `NewObserver`; on reload the failure is logged and the previous config stays in effect. - [#1795](https://github.com/livekit/protocol/pull/1795) ([@paulwe](https://github.com/paulwe)) + +- Update psrpc to v0.8.0 - [#1808](https://github.com/livekit/protocol/pull/1808) ([@paulwe](https://github.com/paulwe)) + +- Add `utils/leaftest`, which asserts that a package imports nothing beyond the standard library and an explicit allow list. `leaftest.Assert(t)` names the package from the working directory, so a guarded package's test carries no import path to keep in sync. Test-only imports are not counted. - [#1795](https://github.com/livekit/protocol/pull/1795) ([@paulwe](https://github.com/paulwe)) + ## 1.52.0 ### Minor Changes diff --git a/packages/javascript/package.json b/packages/javascript/package.json index e1dd007d4..15b680dbc 100644 --- a/packages/javascript/package.json +++ b/packages/javascript/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/protocol", - "version": "1.52.0", + "version": "1.52.1", "description": "", "type": "module", "require": "dist/index.cjs",