From 62e1809e72166d6bbedfd20b3dee0acac70fd020 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 19 Mar 2024 13:28:20 +0100 Subject: [PATCH] Version Packages (#654) Co-authored-by: github-actions[bot] --- .changeset/olive-readers-agree.md | 6 ------ .changeset/polite-hounds-tickle.md | 5 ----- .changeset/sour-geckos-push.md | 6 ------ .changeset/stupid-spoons-work.md | 6 ------ CHANGELOG.md | 14 ++++++++++++++ package.json | 2 +- packages/javascript/CHANGELOG.md | 10 ++++++++++ packages/javascript/package.json | 2 +- 8 files changed, 26 insertions(+), 25 deletions(-) delete mode 100644 .changeset/olive-readers-agree.md delete mode 100644 .changeset/polite-hounds-tickle.md delete mode 100644 .changeset/sour-geckos-push.md delete mode 100644 .changeset/stupid-spoons-work.md diff --git a/.changeset/olive-readers-agree.md b/.changeset/olive-readers-agree.md deleted file mode 100644 index d3a3abf9..00000000 --- a/.changeset/olive-readers-agree.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"github.com/livekit/protocol": patch -"@livekit/protocol": patch ---- - -Fixed bounds check when masking short SIP numbers. diff --git a/.changeset/polite-hounds-tickle.md b/.changeset/polite-hounds-tickle.md deleted file mode 100644 index 719e7a86..00000000 --- a/.changeset/polite-hounds-tickle.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"github.com/livekit/protocol": minor ---- - -Moved CPU stats to a separate hwstats package, removing cgo dependency. diff --git a/.changeset/sour-geckos-push.md b/.changeset/sour-geckos-push.md deleted file mode 100644 index e826ce37..00000000 --- a/.changeset/sour-geckos-push.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"github.com/livekit/protocol": patch -"@livekit/protocol": patch ---- - -Add signal requests for local track updates diff --git a/.changeset/stupid-spoons-work.md b/.changeset/stupid-spoons-work.md deleted file mode 100644 index 4b3548fa..00000000 --- a/.changeset/stupid-spoons-work.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@livekit/protocol": patch -"github.com/livekit/protocol": patch ---- - -Allow sending DTMF when creating SIP participant. diff --git a/CHANGELOG.md b/CHANGELOG.md index d0311182..cedbcffc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # github.com/livekit/protocol +## 1.12.0 + +### Minor Changes + +- Moved CPU stats to a separate hwstats package, removing cgo dependency. - [#660](https://github.com/livekit/protocol/pull/660) ([@dennwc](https://github.com/dennwc)) + +### Patch Changes + +- Fixed bounds check when masking short SIP numbers. - [#650](https://github.com/livekit/protocol/pull/650) ([@dennwc](https://github.com/dennwc)) + +- Add signal requests for local track updates - [#651](https://github.com/livekit/protocol/pull/651) ([@lukasIO](https://github.com/lukasIO)) + +- Allow sending DTMF when creating SIP participant. - [#658](https://github.com/livekit/protocol/pull/658) ([@dennwc](https://github.com/dennwc)) + ## 1.11.0 ### Minor Changes diff --git a/package.json b/package.json index 264d5960..99d754cb 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "github.com/livekit/protocol", "private": true, - "version": "1.11.0", + "version": "1.12.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 347197e5..a6da2c44 100644 --- a/packages/javascript/CHANGELOG.md +++ b/packages/javascript/CHANGELOG.md @@ -1,5 +1,15 @@ # @livekit/protocol +## 1.12.0 + +### Patch Changes + +- Fixed bounds check when masking short SIP numbers. - [#650](https://github.com/livekit/protocol/pull/650) ([@dennwc](https://github.com/dennwc)) + +- Add signal requests for local track updates - [#651](https://github.com/livekit/protocol/pull/651) ([@lukasIO](https://github.com/lukasIO)) + +- Allow sending DTMF when creating SIP participant. - [#658](https://github.com/livekit/protocol/pull/658) ([@dennwc](https://github.com/dennwc)) + ## 1.11.0 ### Minor Changes diff --git a/packages/javascript/package.json b/packages/javascript/package.json index 7dbc11c5..e166457b 100644 --- a/packages/javascript/package.json +++ b/packages/javascript/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/protocol", - "version": "1.11.0", + "version": "1.12.0", "description": "", "type": "module", "main": "src/index.js",