chore(release): release v0.58.9
This commit is contained in:
parent
d71aa240e7
commit
0e6495769f
5 changed files with 15 additions and 5 deletions
|
|
@ -1,3 +1,3 @@
|
|||
{
|
||||
".": "0.58.8"
|
||||
".": "0.58.9"
|
||||
}
|
||||
|
|
|
|||
10
CHANGELOG.md
10
CHANGELOG.md
|
|
@ -1,5 +1,15 @@
|
|||
# Changelog
|
||||
|
||||
## [0.58.9](https://github.com/webstreamr/webstreamr/compare/v0.58.8...v0.58.9) (2025-12-12)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **extractor:** fix HubCloud picking up incorrect FSL URLs ([e438f3c](https://github.com/webstreamr/webstreamr/commit/e438f3cbbde4ccf5614f574a8816db722751fcee))
|
||||
* **extractor:** handle FileMoon with missing height info in packed ([d44e0a2](https://github.com/webstreamr/webstreamr/commit/d44e0a2588fddc332d5bc833936e42fcd5ca2667))
|
||||
* **extractor:** use extractorId per HubCloud sub hoster again for better bingeGroup ([d71aa24](https://github.com/webstreamr/webstreamr/commit/d71aa240e7a29d34b82bc171bafd1b576c2efa89))
|
||||
* **source:** resolve MegaKino dynamically and cache for an hour ([258e35c](https://github.com/webstreamr/webstreamr/commit/258e35c94db461a2efcb9089d640024ab123bdb6))
|
||||
|
||||
## [0.58.8](https://github.com/webstreamr/webstreamr/compare/v0.58.7...v0.58.8) (2025-12-11)
|
||||
|
||||
|
||||
|
|
|
|||
4
package-lock.json
generated
4
package-lock.json
generated
|
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "webstreamr",
|
||||
"version": "0.58.8",
|
||||
"version": "0.58.9",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "webstreamr",
|
||||
"version": "0.58.8",
|
||||
"version": "0.58.9",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@keyv/sqlite": "^4.0.5",
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "webstreamr",
|
||||
"description": "Provides HTTP URLs from streaming websites.",
|
||||
"version": "0.58.8",
|
||||
"version": "0.58.9",
|
||||
"type": "commonjs",
|
||||
"scripts": {
|
||||
"analyse": "tsc --noEmit --project ./tsconfig.dev.json",
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ const typedEntries = <T extends object>(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.58.8', // x-release-please-version
|
||||
version: '0.58.9', // 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: [
|
||||
|
|
|
|||
Loading…
Reference in a new issue