diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 5fdd883..895bf0e 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.1.0" + ".": "2.0.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index c1e22ac..8244383 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,38 @@ # Changelog +## [2.0.0](https://github.com/LuanRT/googlevideo/compare/googlevideo-v1.1.0...googlevideo-v2.0.0) (2024-11-02) + + +### ⚠ BREAKING CHANGES + +* drop `cjs` support + +### Features + +* init repo ([a508925](https://github.com/LuanRT/googlevideo/commit/a508925216a7fa0b71ae1e122d0e0f77ded1c819)) +* **protos:** Add remaining onesie protos ([c352067](https://github.com/LuanRT/googlevideo/commit/c35206761a36d6188d3bf40d952db5f9255ab3bc)) + + +### Bug Fixes + +* **examples:** stop progress bars on completion ([5549a97](https://github.com/LuanRT/googlevideo/commit/5549a971736b7669fda71d6c3a4b3be6825c1e7f)) +* **onesie-request:** clone session context to prevent original modification ([fbef7bd](https://github.com/LuanRT/googlevideo/commit/fbef7bd4171737366a31ecf94b9302970c58ca1f)) +* **sabr:** Video-only playback is no longer supported ([3ab569c](https://github.com/LuanRT/googlevideo/commit/3ab569c63724b4efe264b1fe47ff8344e5d85fbe)) +* **ServerAbrStream:** Ignore duplicate sequences ([d9fb943](https://github.com/LuanRT/googlevideo/commit/d9fb9431ed1b10858b3aef8a23b67e61880a8d99)) +* **ServerAbrStream:** use optional chaining for `sequenceNumber` access ([48ef9be](https://github.com/LuanRT/googlevideo/commit/48ef9be26b3e9f1cf49fa7e02cccf79bbe4a551f)) +* **ServerAbrStream:** validate server response ([e2e885b](https://github.com/LuanRT/googlevideo/commit/e2e885bf09ca498d1fd9137b0e8daf9270eacc27)) + + +### Miscellaneous Chores + +* release 1.1.0 ([4cd1877](https://github.com/LuanRT/googlevideo/commit/4cd18770bad86f95c65cf8f4073fd9456fb91eb8)) +* release 2.0.0 ([160cae2](https://github.com/LuanRT/googlevideo/commit/160cae25e8c3f2fbeed847bfbf2fe8fe84cd40d2)) + + +### Code Refactoring + +* drop `cjs` support ([ec64dd5](https://github.com/LuanRT/googlevideo/commit/ec64dd5183cd4ca755d9ea5efae3ffeade875f75)) + ## 1.1.0 (2024-10-24) diff --git a/jsr.json b/jsr.json index 66b1a93..b34193f 100644 --- a/jsr.json +++ b/jsr.json @@ -1,6 +1,6 @@ { "name": "@luanrt/googlevideo", - "version": "1.1.0", + "version": "2.0.0", "exports": "./src/index.ts", "imports": { "@bufbuild/protobuf": "npm:@bufbuild/protobuf@^2.0.0" diff --git a/package-lock.json b/package-lock.json index ad737af..61bf291 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "googlevideo", - "version": "1.1.0", + "version": "2.0.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "googlevideo", - "version": "1.1.0", + "version": "2.0.0", "funding": [ "https://github.com/sponsors/LuanRT" ], diff --git a/package.json b/package.json index 617c144..80054a0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "googlevideo", - "version": "1.1.0", + "version": "2.0.0", "description": "A set of utilities for working with Google Video APIs.", "main": "dist/index.js", "type": "module",