chore(release): release v0.50.3 #347
5 changed files with 21 additions and 5 deletions
|
|
@ -1,3 +1,3 @@
|
|||
{
|
||||
".": "0.50.2"
|
||||
".": "0.50.3"
|
||||
}
|
||||
|
|
|
|||
16
CHANGELOG.md
16
CHANGELOG.md
|
|
@ -1,5 +1,21 @@
|
|||
# Changelog
|
||||
|
||||
## [0.50.3](https://github.com/webstreamr/webstreamr/compare/v0.50.2...v0.50.3) (2025-09-12)
|
||||
|
||||
|
||||
### Miscellaneous Chores
|
||||
|
||||
* **extractor:** set VidSrc referer again ([5429b0c](https://github.com/webstreamr/webstreamr/commit/5429b0cb7a2e2bb419158bc0df659cb9002ac345))
|
||||
* **fetcher:** bring back error retry ([69da82b](https://github.com/webstreamr/webstreamr/commit/69da82b139d952f09aa5e1b1a51c887223fd20db))
|
||||
* **fetcher:** cache only 2xx and 404 responses ([d087318](https://github.com/webstreamr/webstreamr/commit/d087318286a32a82eb5bb211fad8aba0eeba257e))
|
||||
* slightly clean-up extractor and source logging ([fdb9bff](https://github.com/webstreamr/webstreamr/commit/fdb9bff86bfb9869e8b2bdbff10d994667e1bb85))
|
||||
* **source:** disable Soaper ([cb256de](https://github.com/webstreamr/webstreamr/commit/cb256de9f8f9d7e40f76c86af1c2c21efec7dc70))
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **extractor:** cache FileLions ([b27126f](https://github.com/webstreamr/webstreamr/commit/b27126fd8e41bfdc344fb4e448c1f87844837a9e))
|
||||
|
||||
## [0.50.2](https://github.com/webstreamr/webstreamr/compare/v0.50.1...v0.50.2) (2025-09-12)
|
||||
|
||||
|
||||
|
|
|
|||
4
package-lock.json
generated
4
package-lock.json
generated
|
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "webstreamr",
|
||||
"version": "0.50.2",
|
||||
"version": "0.50.3",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "webstreamr",
|
||||
"version": "0.50.2",
|
||||
"version": "0.50.3",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@keyv/sqlite": "^4.0.5",
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "webstreamr",
|
||||
"description": "Provides HTTP URLs from streaming websites.",
|
||||
"version": "0.50.2",
|
||||
"version": "0.50.3",
|
||||
"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.50.2', // x-release-please-version
|
||||
version: '0.50.3', // 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