From f5f5f1b37262697bc8c0d5388b8123bb1f4f302a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 27 Nov 2024 17:56:08 +0100 Subject: [PATCH] Version Packages (#878) Co-authored-by: github-actions[bot] --- .changeset/mean-glasses-reflect.md | 6 ------ .changeset/plenty-parrots-count.md | 5 ----- .changeset/rotten-seas-itch.md | 6 ------ .changeset/slow-planes-design.md | 6 ------ .changeset/thin-vans-end.md | 6 ------ .changeset/unlucky-apples-sleep.md | 5 ----- .changeset/violet-avocados-leave.md | 6 ------ .changeset/violet-sheep-bathe.md | 5 ----- CHANGELOG.md | 18 ++++++++++++++++++ package.json | 2 +- packages/javascript/CHANGELOG.md | 18 ++++++++++++++++++ packages/javascript/package.json | 2 +- 12 files changed, 38 insertions(+), 47 deletions(-) delete mode 100644 .changeset/mean-glasses-reflect.md delete mode 100644 .changeset/plenty-parrots-count.md delete mode 100644 .changeset/rotten-seas-itch.md delete mode 100644 .changeset/slow-planes-design.md delete mode 100644 .changeset/thin-vans-end.md delete mode 100644 .changeset/unlucky-apples-sleep.md delete mode 100644 .changeset/violet-avocados-leave.md delete mode 100644 .changeset/violet-sheep-bathe.md diff --git a/.changeset/mean-glasses-reflect.md b/.changeset/mean-glasses-reflect.md deleted file mode 100644 index 59205602..00000000 --- a/.changeset/mean-glasses-reflect.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@livekit/protocol": minor -"github.com/livekit/protocol": minor ---- - -Add disconnect reason for SIP failures. diff --git a/.changeset/plenty-parrots-count.md b/.changeset/plenty-parrots-count.md deleted file mode 100644 index 13fd5d3c..00000000 --- a/.changeset/plenty-parrots-count.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@livekit/protocol": patch ---- - -Report call enabled features in SIPCallInfo diff --git a/.changeset/rotten-seas-itch.md b/.changeset/rotten-seas-itch.md deleted file mode 100644 index 87aa3fcc..00000000 --- a/.changeset/rotten-seas-itch.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@livekit/protocol": minor ---- - -add native CommonJS support (#883) - diff --git a/.changeset/slow-planes-design.md b/.changeset/slow-planes-design.md deleted file mode 100644 index 2c5a2b02..00000000 --- a/.changeset/slow-planes-design.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@livekit/protocol": minor -"github.com/livekit/protocol": minor ---- - -Map participant attributes to SIP headers. diff --git a/.changeset/thin-vans-end.md b/.changeset/thin-vans-end.md deleted file mode 100644 index 78f4193c..00000000 --- a/.changeset/thin-vans-end.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@livekit/protocol": minor -"github.com/livekit/protocol": minor ---- - -Allow setting number for SIP outbound. diff --git a/.changeset/unlucky-apples-sleep.md b/.changeset/unlucky-apples-sleep.md deleted file mode 100644 index b9509718..00000000 --- a/.changeset/unlucky-apples-sleep.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"github.com/livekit/protocol": patch ---- - -Annotate SIP errors with Twirp codes. diff --git a/.changeset/violet-avocados-leave.md b/.changeset/violet-avocados-leave.md deleted file mode 100644 index 1231daf8..00000000 --- a/.changeset/violet-avocados-leave.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@livekit/protocol": patch -"github.com/livekit/protocol": patch ---- - -Fix port type for SIPUri. diff --git a/.changeset/violet-sheep-bathe.md b/.changeset/violet-sheep-bathe.md deleted file mode 100644 index 6eaccdd7..00000000 --- a/.changeset/violet-sheep-bathe.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"github.com/livekit/protocol": patch ---- - -Require number, CIDR or auth for SIP inbound. diff --git a/CHANGELOG.md b/CHANGELOG.md index e1344449..2f3151a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,23 @@ # github.com/livekit/protocol +## 1.28.0 + +### Minor Changes + +- Add disconnect reason for SIP failures. - [#845](https://github.com/livekit/protocol/pull/845) ([@dennwc](https://github.com/dennwc)) + +- Map participant attributes to SIP headers. - [#893](https://github.com/livekit/protocol/pull/893) ([@dennwc](https://github.com/dennwc)) + +- Allow setting number for SIP outbound. - [#891](https://github.com/livekit/protocol/pull/891) ([@dennwc](https://github.com/dennwc)) + +### Patch Changes + +- Annotate SIP errors with Twirp codes. - [#879](https://github.com/livekit/protocol/pull/879) ([@dennwc](https://github.com/dennwc)) + +- Fix port type for SIPUri. - [#882](https://github.com/livekit/protocol/pull/882) ([@dennwc](https://github.com/dennwc)) + +- Require number, CIDR or auth for SIP inbound. - [#890](https://github.com/livekit/protocol/pull/890) ([@dennwc](https://github.com/dennwc)) + ## 1.27.1 ### Patch Changes diff --git a/package.json b/package.json index 70a58a54..0f4ea17c 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "github.com/livekit/protocol", "private": true, - "version": "1.27.1", + "version": "1.28.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 b2ddc25d..8fcb40e6 100644 --- a/packages/javascript/CHANGELOG.md +++ b/packages/javascript/CHANGELOG.md @@ -1,5 +1,23 @@ # @livekit/protocol +## 1.28.0 + +### Minor Changes + +- Add disconnect reason for SIP failures. - [#845](https://github.com/livekit/protocol/pull/845) ([@dennwc](https://github.com/dennwc)) + +- add native CommonJS support (#883) - [#895](https://github.com/livekit/protocol/pull/895) ([@nbsp](https://github.com/nbsp)) + +- Map participant attributes to SIP headers. - [#893](https://github.com/livekit/protocol/pull/893) ([@dennwc](https://github.com/dennwc)) + +- Allow setting number for SIP outbound. - [#891](https://github.com/livekit/protocol/pull/891) ([@dennwc](https://github.com/dennwc)) + +### Patch Changes + +- Report call enabled features in SIPCallInfo - [#884](https://github.com/livekit/protocol/pull/884) ([@biglittlebigben](https://github.com/biglittlebigben)) + +- Fix port type for SIPUri. - [#882](https://github.com/livekit/protocol/pull/882) ([@dennwc](https://github.com/dennwc)) + ## 1.27.1 ### Patch Changes diff --git a/packages/javascript/package.json b/packages/javascript/package.json index dd669d18..272d6aa5 100644 --- a/packages/javascript/package.json +++ b/packages/javascript/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/protocol", - "version": "1.27.1", + "version": "1.28.0", "description": "", "type": "module", "main": "dist/index.js",