From 5f611984609a6707845b4fcde3e26a4d825dd13c Mon Sep 17 00:00:00 2001 From: webstreamr <210764791+webstreamr@users.noreply.github.com> Date: Mon, 1 Sep 2025 10:20:34 +0200 Subject: [PATCH] chore(release): release v0.45.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 27 +++++++++++++++++++++++++++ package-lock.json | 4 ++-- package.json | 2 +- src/utils/manifest.ts | 2 +- 5 files changed, 32 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index e564a44..0db1515 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.45.0" + ".": "0.45.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 4bf6955..43bed10 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,32 @@ # Changelog +## [0.45.1](https://github.com/webstreamr/webstreamr/compare/v0.45.0...v0.45.1) (2025-09-01) + + +### Miscellaneous Chores + +* **deps:** update jest monorepo to v30.1.2 ([#308](https://github.com/webstreamr/webstreamr/issues/308)) ([4414324](https://github.com/webstreamr/webstreamr/commit/4414324a08197671ab2360d648c14d06b5792447)) +* **deps:** update node.js to v22.19.0 ([#306](https://github.com/webstreamr/webstreamr/issues/306)) ([3044e41](https://github.com/webstreamr/webstreamr/commit/3044e41d9b3e4c3e3df94a51e549dc51886ae087)) +* **extractor:** support caching via MediaFlow Proxy ([c556d95](https://github.com/webstreamr/webstreamr/commit/c556d9500b99ece8f1c83402f35ba2516796d8bc)) +* **fetcher:** log retries ([c47f48c](https://github.com/webstreamr/webstreamr/commit/c47f48c64bf89f91d5ed0b8d2a25b1665733c82d)) +* **fetcher:** retry timeouts once ([0fc7675](https://github.com/webstreamr/webstreamr/commit/0fc76755606d235efa2f963c7460815a726816df)) +* **source:** cache source results for 3 hours ([c82a7ab](https://github.com/webstreamr/webstreamr/commit/c82a7ab75675b8fe45912febd5bf69a1cd3d2e23)) + + +### Bug Fixes + +* **extractor:** set missing viaMediaFlowProxy in Streamtape ([33ee150](https://github.com/webstreamr/webstreamr/commit/33ee150915f6cc3e07c14b26182b3ac99c379e6c)) + + +### Code Refactoring + +* **source:** introduce abstract parent class ([9da7c07](https://github.com/webstreamr/webstreamr/commit/9da7c07dc6350910d6ef30b24033fdcefc480a06)) + + +### Tests + +* disable console logging to reduce noise ([3c4507b](https://github.com/webstreamr/webstreamr/commit/3c4507b1981d284baf3058f9ca761eae5342b03e)) + ## [0.45.0](https://github.com/webstreamr/webstreamr/compare/v0.44.1...v0.45.0) (2025-08-28) diff --git a/package-lock.json b/package-lock.json index 79d9123..e5c5bee 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "webstreamr", - "version": "0.45.0", + "version": "0.45.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "webstreamr", - "version": "0.45.0", + "version": "0.45.1", "license": "MIT", "dependencies": { "@isaacs/ttlcache": "^1.4.1", diff --git a/package.json b/package.json index 8730e1c..d644e60 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "webstreamr", "description": "Provides HTTP URLs from streaming websites.", - "version": "0.45.0", + "version": "0.45.1", "type": "commonjs", "scripts": { "analyse": "tsc --noEmit --project ./tsconfig.dev.json", diff --git a/src/utils/manifest.ts b/src/utils/manifest.ts index eda1433..4068813 100644 --- a/src/utils/manifest.ts +++ b/src/utils/manifest.ts @@ -10,7 +10,7 @@ const typedEntries = (obj: T): [keyof T, T[keyof T]][] => (Obj export const buildManifest = (sources: Source[], extractors: Extractor[], config: Config): CustomManifest => { const manifest: CustomManifest = { id: envGetAppId(), - version: '0.45.0', // x-release-please-version + version: '0.45.1', // x-release-please-version name: envGetAppName(), description: 'Provides HTTP URLs from streaming websites. Configure add-on for additional languages. Add MediaFlow proxy for more URLs.', resources: [ -- 2.45.2