chore(release): release v0.53.0 (#381)
This commit is contained in:
parent
1fb7d0c66b
commit
447153ca3c
5 changed files with 23 additions and 5 deletions
|
|
@ -1,3 +1,3 @@
|
|||
{
|
||||
".": "0.52.5"
|
||||
".": "0.53.0"
|
||||
}
|
||||
|
|
|
|||
18
CHANGELOG.md
18
CHANGELOG.md
|
|
@ -1,5 +1,23 @@
|
|||
# Changelog
|
||||
|
||||
## [0.53.0](https://github.com/webstreamr/webstreamr/compare/v0.52.5...v0.53.0) (2025-09-25)
|
||||
|
||||
|
||||
### Miscellaneous Chores
|
||||
|
||||
* **deps:** update node.js to v22.20.0 ([#380](https://github.com/webstreamr/webstreamr/issues/380)) ([7760c13](https://github.com/webstreamr/webstreamr/commit/7760c13ea9ba12932ae7d8b58503f1509bf3b0c1))
|
||||
* lock to latest node major only ([#382](https://github.com/webstreamr/webstreamr/issues/382)) ([0ff0758](https://github.com/webstreamr/webstreamr/commit/0ff0758b74772179e92852fae995314a17a50bb1))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* add source info ([1fb7d0c](https://github.com/webstreamr/webstreamr/commit/1fb7d0c66bef74f63560ac5b0d468afda17134e1))
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **source:** use iframe src from API as referer for Movix ([ae34284](https://github.com/webstreamr/webstreamr/commit/ae342845f8934e7bb99cd035122cb3636e321e88))
|
||||
|
||||
## [0.52.5](https://github.com/webstreamr/webstreamr/compare/v0.52.4...v0.52.5) (2025-09-24)
|
||||
|
||||
|
||||
|
|
|
|||
4
package-lock.json
generated
4
package-lock.json
generated
|
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "webstreamr",
|
||||
"version": "0.52.5",
|
||||
"version": "0.53.0",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "webstreamr",
|
||||
"version": "0.52.5",
|
||||
"version": "0.53.0",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@keyv/sqlite": "^4.0.5",
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "webstreamr",
|
||||
"description": "Provides HTTP URLs from streaming websites.",
|
||||
"version": "0.52.5",
|
||||
"version": "0.53.0",
|
||||
"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.52.5', // x-release-please-version
|
||||
version: '0.53.0', // 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