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",