From 993feeabd1ed7c91c9be274835454d26704d6492 Mon Sep 17 00:00:00 2001 From: webstreamr <210764791+webstreamr@users.noreply.github.com> Date: Tue, 1 Jul 2025 20:07:39 +0200 Subject: [PATCH] chore(release): release v0.33.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 25 +++++++++++++++++++++++++ package-lock.json | 4 ++-- package.json | 2 +- src/utils/manifest.ts | 2 +- 5 files changed, 30 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index f9a5c05..53ecb86 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.32.5" + ".": "0.33.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d87e17..473bfcd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,30 @@ # Changelog +## [0.33.0](https://github.com/webstreamr/webstreamr/compare/v0.32.5...v0.33.0) (2025-07-01) + + +### Miscellaneous Chores + +* **deps:** update dependency @stylistic/eslint-plugin to v5.1.0 ([#190](https://github.com/webstreamr/webstreamr/issues/190)) ([4213b15](https://github.com/webstreamr/webstreamr/commit/4213b1571dc653b451510ea19b241474479e66cb)) +* **deps:** update dependency @types/jest to v30 ([#193](https://github.com/webstreamr/webstreamr/issues/193)) ([947060b](https://github.com/webstreamr/webstreamr/commit/947060b07e8f2654bc9056a38069d62c30fb4e73)) +* **deps:** update dependency @types/node to v22.15.34 ([#192](https://github.com/webstreamr/webstreamr/issues/192)) ([091bb44](https://github.com/webstreamr/webstreamr/commit/091bb44ccd6171371c6c919d0081cbd4d8b829e7)) +* **deps:** update dependency typescript-eslint to v8.35.1 ([#194](https://github.com/webstreamr/webstreamr/issues/194)) ([ac78e68](https://github.com/webstreamr/webstreamr/commit/ac78e6831b42308ecac1c9d15b0e90be41544f49)) +* **extractor:** add viaMediaFlowProxy flag to extractors ([8c8bfd6](https://github.com/webstreamr/webstreamr/commit/8c8bfd6051b88c036d539713f33f6f1bf4282c2e)) +* **extractor:** simplify type and passing of height ([b88eba0](https://github.com/webstreamr/webstreamr/commit/b88eba017d59bc14dc6d3e326d008a23698bbdb2)) +* remove warmup ([bf2187b](https://github.com/webstreamr/webstreamr/commit/bf2187bbbdd397a4189427ca9b96b29219339ab3)) + + +### Features + +* add Japanese and Korean to languages for VixSrc ([81434ff](https://github.com/webstreamr/webstreamr/commit/81434fff0e19e3df56d6069bfc62608fd8402192)) +* **extractor:** implement Streamtape via MediaFlow Proxy ([9d3ce24](https://github.com/webstreamr/webstreamr/commit/9d3ce24b9031256ef0d7c2ee4d7dfb16ab58ba8b)) +* make multi sources explicitly configurable ([a0ed13f](https://github.com/webstreamr/webstreamr/commit/a0ed13f18ee2e37ca5a940cbdb2adadfbda0ca3d)) + + +### Bug Fixes + +* **source:** update Frembed domain ([0fe5659](https://github.com/webstreamr/webstreamr/commit/0fe5659f08fad23edd1d1aba0722616f5fb8aabd)) + ## [0.32.5](https://github.com/webstreamr/webstreamr/compare/v0.32.4...v0.32.5) (2025-06-28) diff --git a/package-lock.json b/package-lock.json index 26190cf..39af0e3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "webstreamr", - "version": "0.32.5", + "version": "0.33.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "webstreamr", - "version": "0.32.5", + "version": "0.33.0", "license": "MIT", "dependencies": { "@isaacs/ttlcache": "^1.4.1", diff --git a/package.json b/package.json index 77678a8..1815f64 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "webstreamr", "description": "Provides HTTP URLs from streaming websites.", - "version": "0.32.5", + "version": "0.33.0", "type": "commonjs", "scripts": { "analyse": "tsc --noEmit --project ./tsconfig.dev.json", diff --git a/src/utils/manifest.ts b/src/utils/manifest.ts index 6a502f3..bb68465 100644 --- a/src/utils/manifest.ts +++ b/src/utils/manifest.ts @@ -8,7 +8,7 @@ const typedEntries = (obj: T): [keyof T, T[keyof T]][] => (Obj export const buildManifest = (sources: Source[], config: Config): ManifestWithConfig => { const manifest: ManifestWithConfig = { id: envGetAppId(), - version: '0.32.5', // x-release-please-version + version: '0.33.0', // x-release-please-version name: envGetAppName(), description: 'Provides HTTP URLs from streaming websites.', resources: [ -- 2.45.2