chore(release): release v0.53.4 (#393)
This commit is contained in:
parent
c3721c428e
commit
b5d7e95a92
5 changed files with 19 additions and 5 deletions
|
|
@ -1,3 +1,3 @@
|
|||
{
|
||||
".": "0.53.3"
|
||||
".": "0.53.4"
|
||||
}
|
||||
|
|
|
|||
14
CHANGELOG.md
14
CHANGELOG.md
|
|
@ -1,5 +1,19 @@
|
|||
# Changelog
|
||||
|
||||
## [0.53.4](https://github.com/webstreamr/webstreamr/compare/v0.53.3...v0.53.4) (2025-09-30)
|
||||
|
||||
|
||||
### Miscellaneous Chores
|
||||
|
||||
* **deps:** update dependency winston to v3.18.1 ([#392](https://github.com/webstreamr/webstreamr/issues/392)) ([c3721c4](https://github.com/webstreamr/webstreamr/commit/c3721c428e7fc6f4c15516bbfcafff29b754f026))
|
||||
* **fetcher:** add generic fetch also returning response url ([5466472](https://github.com/webstreamr/webstreamr/commit/5466472b211b56e813c12577152f090378fbcd16))
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **extractor:** handle Uqload File Not Found ([f0a66e1](https://github.com/webstreamr/webstreamr/commit/f0a66e19845a9b994f1f44cb3825e043f1697a51))
|
||||
* **source:** dynamically determine MegaKino base URL ([d6fb4c9](https://github.com/webstreamr/webstreamr/commit/d6fb4c971b7b79f41e09ec2205831d5ac3ce7afc))
|
||||
|
||||
## [0.53.3](https://github.com/webstreamr/webstreamr/compare/v0.53.2...v0.53.3) (2025-09-29)
|
||||
|
||||
|
||||
|
|
|
|||
4
package-lock.json
generated
4
package-lock.json
generated
|
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "webstreamr",
|
||||
"version": "0.53.3",
|
||||
"version": "0.53.4",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "webstreamr",
|
||||
"version": "0.53.3",
|
||||
"version": "0.53.4",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@keyv/sqlite": "^4.0.5",
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "webstreamr",
|
||||
"description": "Provides HTTP URLs from streaming websites.",
|
||||
"version": "0.53.3",
|
||||
"version": "0.53.4",
|
||||
"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.53.3', // x-release-please-version
|
||||
version: '0.53.4', // 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