diff --git a/.changeset/ingress-enabled-option.md b/.changeset/ingress-enabled-option.md deleted file mode 100644 index 6313f256..00000000 --- a/.changeset/ingress-enabled-option.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'livekit-server-sdk': patch ---- - -Add `enabled` option to `createIngress` and `updateIngress`. Setting `enabled: false` lets you disable an ingress session (reject new connection attempts) without deleting it, so the stream key is preserved. The field already exists on the protobuf `CreateIngressRequest`/`UpdateIngressRequest`; this exposes it through the typed `CreateIngressOptions`/`UpdateIngressOptions`. diff --git a/.changeset/require-exp-token-verify.md b/.changeset/require-exp-token-verify.md deleted file mode 100644 index d7cfc2b7..00000000 --- a/.changeset/require-exp-token-verify.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'livekit-server-sdk': patch ---- - -Require the exp claim when verifying access tokens, matching livekit/protocol#1706. diff --git a/.changeset/rpc-interceptors.md b/.changeset/rpc-interceptors.md deleted file mode 100644 index 55e515dd..00000000 --- a/.changeset/rpc-interceptors.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/rtc-node': minor ---- - -Add `RpcInterceptor` support: `LocalParticipant.addRpcInterceptor()` wraps every RPC the participant performs or handles, for logging, tracing, or payload metadata. `RpcInvocationData` now carries the invoked `method`. diff --git a/examples/agent-dispatch/CHANGELOG.md b/examples/agent-dispatch/CHANGELOG.md index dba9443b..d90109f7 100644 --- a/examples/agent-dispatch/CHANGELOG.md +++ b/examples/agent-dispatch/CHANGELOG.md @@ -1,5 +1,12 @@ # agent-dispatch +## 0.0.34 + +### Patch Changes + +- Updated dependencies [[`b10c764`](https://github.com/livekit/node-sdks/commit/b10c7640c109c04b84ebaf7f48774ea38b8d4e9a), [`2114d03`](https://github.com/livekit/node-sdks/commit/2114d03d223edda76759f83cd461098d81311b5a)]: + - livekit-server-sdk@2.19.1 + ## 0.0.33 ### Patch Changes diff --git a/examples/agent-dispatch/package.json b/examples/agent-dispatch/package.json index efd611ed..38e56173 100644 --- a/examples/agent-dispatch/package.json +++ b/examples/agent-dispatch/package.json @@ -1,6 +1,6 @@ { "name": "agent-dispatch", - "version": "0.0.33", + "version": "0.0.34", "description": "An example demonstrating dispatching agents with an API call", "private": true, "author": "LiveKit", diff --git a/packages/livekit-rtc/CHANGELOG.md b/packages/livekit-rtc/CHANGELOG.md index 852055e3..b28766dd 100644 --- a/packages/livekit-rtc/CHANGELOG.md +++ b/packages/livekit-rtc/CHANGELOG.md @@ -1,5 +1,11 @@ # @livekit/rtc-node +## 1.1.0 + +### Minor Changes + +- Add `RpcInterceptor` support: `LocalParticipant.addRpcInterceptor()` wraps every RPC the participant performs or handles, for logging, tracing, or payload metadata. `RpcInvocationData` now carries the invoked `method`. - [#724](https://github.com/livekit/node-sdks/pull/724) ([@davidzhao](https://github.com/davidzhao)) + ## 1.0.0 ### Major Changes diff --git a/packages/livekit-rtc/package.json b/packages/livekit-rtc/package.json index a4f5dbb0..7282a074 100644 --- a/packages/livekit-rtc/package.json +++ b/packages/livekit-rtc/package.json @@ -3,7 +3,7 @@ "description": "LiveKit RTC Node", "license": "Apache-2.0", "author": "LiveKit", - "version": "1.0.0", + "version": "1.1.0", "main": "dist/index.cjs", "types": "dist/index.d.cts", "exports": { diff --git a/packages/livekit-server-sdk/CHANGELOG.md b/packages/livekit-server-sdk/CHANGELOG.md index e9ebffa9..2d80951d 100644 --- a/packages/livekit-server-sdk/CHANGELOG.md +++ b/packages/livekit-server-sdk/CHANGELOG.md @@ -1,5 +1,13 @@ # livekit-server-sdk +## 2.19.1 + +### Patch Changes + +- Add `enabled` option to `createIngress` and `updateIngress`. Setting `enabled: false` lets you disable an ingress session (reject new connection attempts) without deleting it, so the stream key is preserved. The field already exists on the protobuf `CreateIngressRequest`/`UpdateIngressRequest`; this exposes it through the typed `CreateIngressOptions`/`UpdateIngressOptions`. - [#692](https://github.com/livekit/node-sdks/pull/692) ([@stefanking-difference](https://github.com/stefanking-difference)) + +- Require the exp claim when verifying access tokens, matching livekit/protocol#1706. - [#710](https://github.com/livekit/node-sdks/pull/710) ([@SashaMIT](https://github.com/SashaMIT)) + ## 2.19.0 ### Minor Changes diff --git a/packages/livekit-server-sdk/package.json b/packages/livekit-server-sdk/package.json index d17b3920..93139e1d 100644 --- a/packages/livekit-server-sdk/package.json +++ b/packages/livekit-server-sdk/package.json @@ -1,6 +1,6 @@ { "name": "livekit-server-sdk", - "version": "2.19.0", + "version": "2.19.1", "description": "Server-side SDK for LiveKit", "main": "dist/index.js", "require": "dist/index.cjs",