diff --git a/.changeset/clever-emus-remember.md b/.changeset/clever-emus-remember.md deleted file mode 100644 index 3e346f5b..00000000 --- a/.changeset/clever-emus-remember.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"livekit-server-sdk": patch ---- - -Throw error on bad Twirp response status and use async/await instead of promise chaining for improved error catching diff --git a/.changeset/famous-nails-shave.md b/.changeset/famous-nails-shave.md deleted file mode 100644 index e2b55972..00000000 --- a/.changeset/famous-nails-shave.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"livekit-server-sdk": minor ---- - -Use globally available web crypto API instead of nodeJS crypto module diff --git a/.changeset/funny-meals-live.md b/.changeset/funny-meals-live.md deleted file mode 100644 index 5816d9d8..00000000 --- a/.changeset/funny-meals-live.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'livekit-server-sdk': major ---- - -Change module type to ESM diff --git a/.changeset/happy-badgers-call.md b/.changeset/happy-badgers-call.md deleted file mode 100644 index 705840fc..00000000 --- a/.changeset/happy-badgers-call.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'livekit-server-sdk': major ---- - -Require node 18 as minimum version diff --git a/.changeset/modern-schools-hug.md b/.changeset/modern-schools-hug.md deleted file mode 100644 index 01f393f4..00000000 --- a/.changeset/modern-schools-hug.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"livekit-server-sdk": major ---- - -Make `WebhookEvent` names type safe diff --git a/.changeset/orange-starfishes-smoke.md b/.changeset/orange-starfishes-smoke.md deleted file mode 100644 index bf4bd08e..00000000 --- a/.changeset/orange-starfishes-smoke.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'livekit-server-sdk': major ---- - -Token generation is now async (replaced jsonwebtoken with jose for better JS runtime support) diff --git a/.changeset/tame-wolves-shop.md b/.changeset/tame-wolves-shop.md deleted file mode 100644 index 5b820c55..00000000 --- a/.changeset/tame-wolves-shop.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'livekit-server-sdk': major ---- - -Replace protobufjs with protobuf-es diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 00000000..453f34d3 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,23 @@ +# livekit-server-sdk + +## 2.0.0 + +### Major Changes + +- Change module type to ESM - [#118](https://github.com/livekit/server-sdk-js/pull/118) ([@lukasIO](https://github.com/lukasIO)) + +- Require node 18 as minimum version - [#118](https://github.com/livekit/server-sdk-js/pull/118) ([@lukasIO](https://github.com/lukasIO)) + +- Make `WebhookEvent` names type safe - [#125](https://github.com/livekit/server-sdk-js/pull/125) ([@lukasIO](https://github.com/lukasIO)) + +- Token generation is now async (replaced jsonwebtoken with jose for better JS runtime support) - [#118](https://github.com/livekit/server-sdk-js/pull/118) ([@lukasIO](https://github.com/lukasIO)) + +- Replace protobufjs with protobuf-es - [#118](https://github.com/livekit/server-sdk-js/pull/118) ([@lukasIO](https://github.com/lukasIO)) + +### Minor Changes + +- Use globally available web crypto API instead of nodeJS crypto module - [#122](https://github.com/livekit/server-sdk-js/pull/122) ([@lukasIO](https://github.com/lukasIO)) + +### Patch Changes + +- Throw error on bad Twirp response status and use async/await instead of promise chaining for improved error catching - [#124](https://github.com/livekit/server-sdk-js/pull/124) ([@lukasIO](https://github.com/lukasIO)) diff --git a/package.json b/package.json index 9fb2f1a1..81c0104f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "livekit-server-sdk", - "version": "1.2.7", + "version": "2.0.0", "description": "Server-side SDK for LiveKit", "main": "dist/index.js", "types": "dist/index.d.ts",