diff --git a/.changeset/fancy-bananas-fix.md b/.changeset/fancy-bananas-fix.md deleted file mode 100644 index 630a9d301..000000000 --- a/.changeset/fancy-bananas-fix.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"github.com/livekit/protocol": minor ---- - -Add numbers field to SIPDispatchRuleInfo for filtering calls by called number diff --git a/.changeset/good-jeans-check.md b/.changeset/good-jeans-check.md deleted file mode 100644 index 46f9f4fed..000000000 --- a/.changeset/good-jeans-check.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@livekit/protocol": patch ---- - -skip logging redacted fields with zero values diff --git a/.changeset/loud-flowers-sing.md b/.changeset/loud-flowers-sing.md deleted file mode 100644 index 88cb7bea3..000000000 --- a/.changeset/loud-flowers-sing.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@livekit/protocol": patch ---- - -redact metadata in agent protos diff --git a/.changeset/ninety-trainers-remember.md b/.changeset/ninety-trainers-remember.md deleted file mode 100644 index 883d6c5d7..000000000 --- a/.changeset/ninety-trainers-remember.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@livekit/protocol": patch ---- - -update observability codegen diff --git a/.changeset/shiny-geckos-pay.md b/.changeset/shiny-geckos-pay.md deleted file mode 100644 index 025968d0b..000000000 --- a/.changeset/shiny-geckos-pay.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"github.com/livekit/protocol": patch ---- - -Changing the wording on duplicate dispatch rule error message diff --git a/.changeset/sip-client-params.md b/.changeset/sip-client-params.md deleted file mode 100644 index 497f4c0be..000000000 --- a/.changeset/sip-client-params.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"github.com/livekit/protocol": patch ---- - -Allow passing ClientParams to SIP RPC client. diff --git a/.changeset/sip-proj-id.md b/.changeset/sip-proj-id.md deleted file mode 100644 index e83f3c979..000000000 --- a/.changeset/sip-proj-id.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@livekit/protocol": patch -"github.com/livekit/protocol": patch ---- - -Add project ID to internal SIPCall info. diff --git a/.changeset/sixty-years-occur.md b/.changeset/sixty-years-occur.md deleted file mode 100644 index e4c124c50..000000000 --- a/.changeset/sixty-years-occur.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@livekit/protocol": patch ---- - -feat(whatsapp): add disconnect reason field for disconnect request diff --git a/.changeset/sour-socks-care.md b/.changeset/sour-socks-care.md deleted file mode 100644 index 10024d532..000000000 --- a/.changeset/sour-socks-care.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@livekit/protocol": patch ---- - -redact egress assume_role_external_id in logs diff --git a/.changeset/three-plums-end.md b/.changeset/three-plums-end.md deleted file mode 100644 index 8bcac9b67..000000000 --- a/.changeset/three-plums-end.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@livekit/protocol": patch ---- - -temporarily move extension ids to avoid etcd conflict diff --git a/.changeset/tracer-jaeger.md b/.changeset/tracer-jaeger.md deleted file mode 100644 index 4aef3e8f3..000000000 --- a/.changeset/tracer-jaeger.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"github.com/livekit/protocol": patch ---- - -Add helper for setting Jaeger tracing. diff --git a/.changeset/wild-suns-approve.md b/.changeset/wild-suns-approve.md deleted file mode 100644 index 4296750c9..000000000 --- a/.changeset/wild-suns-approve.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@livekit/protocol": patch -"github.com/livekit/protocol": patch ---- - -Store repair ssrc in TrackInfo for migration purposes. diff --git a/CHANGELOG.md b/CHANGELOG.md index cedad2a2d..ab7617ff0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,23 @@ # github.com/livekit/protocol +## 1.44.0 + +### Minor Changes + +- Add numbers field to SIPDispatchRuleInfo for filtering calls by called number - [#1351](https://github.com/livekit/protocol/pull/1351) ([@civilcoder55](https://github.com/civilcoder55)) + +### Patch Changes + +- Changing the wording on duplicate dispatch rule error message - [#1343](https://github.com/livekit/protocol/pull/1343) ([@alexlivekit](https://github.com/alexlivekit)) + +- Allow passing ClientParams to SIP RPC client. - [#1356](https://github.com/livekit/protocol/pull/1356) ([@dennwc](https://github.com/dennwc)) + +- Add project ID to internal SIPCall info. - [#1346](https://github.com/livekit/protocol/pull/1346) ([@dennwc](https://github.com/dennwc)) + +- Add helper for setting Jaeger tracing. - [#1355](https://github.com/livekit/protocol/pull/1355) ([@dennwc](https://github.com/dennwc)) + +- Store repair ssrc in TrackInfo for migration purposes. - [#1348](https://github.com/livekit/protocol/pull/1348) ([@boks1971](https://github.com/boks1971)) + ## 1.43.4 ### Patch Changes diff --git a/package.json b/package.json index 24c5573f4..4f379162b 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "github.com/livekit/protocol", "private": true, - "version": "1.43.4", + "version": "1.44.0", "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 722d54715..7a471b068 100644 --- a/packages/javascript/CHANGELOG.md +++ b/packages/javascript/CHANGELOG.md @@ -1,5 +1,25 @@ # @livekit/protocol +## 1.44.0 + +### Patch Changes + +- skip logging redacted fields with zero values - [#1338](https://github.com/livekit/protocol/pull/1338) ([@paulwe](https://github.com/paulwe)) + +- redact metadata in agent protos - [#1344](https://github.com/livekit/protocol/pull/1344) ([@paulwe](https://github.com/paulwe)) + +- update observability codegen - [#1335](https://github.com/livekit/protocol/pull/1335) ([@paulwe](https://github.com/paulwe)) + +- Add project ID to internal SIPCall info. - [#1346](https://github.com/livekit/protocol/pull/1346) ([@dennwc](https://github.com/dennwc)) + +- feat(whatsapp): add disconnect reason field for disconnect request - [#1341](https://github.com/livekit/protocol/pull/1341) ([@anunaym14](https://github.com/anunaym14)) + +- redact egress assume_role_external_id in logs - [#1337](https://github.com/livekit/protocol/pull/1337) ([@paulwe](https://github.com/paulwe)) + +- temporarily move extension ids to avoid etcd conflict - [#1352](https://github.com/livekit/protocol/pull/1352) ([@paulwe](https://github.com/paulwe)) + +- Store repair ssrc in TrackInfo for migration purposes. - [#1348](https://github.com/livekit/protocol/pull/1348) ([@boks1971](https://github.com/boks1971)) + ## 1.43.4 ### Patch Changes diff --git a/packages/javascript/package.json b/packages/javascript/package.json index ce295420a..4bf45cac4 100644 --- a/packages/javascript/package.json +++ b/packages/javascript/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/protocol", - "version": "1.43.4", + "version": "1.44.0", "description": "", "type": "module", "require": "dist/index.cjs",