chore(release): release v0.42.0 (#276)
This commit is contained in:
parent
a12ae7aaa5
commit
c3fb400116
5 changed files with 27 additions and 5 deletions
|
|
@ -1,3 +1,3 @@
|
|||
{
|
||||
".": "0.41.9"
|
||||
".": "0.42.0"
|
||||
}
|
||||
|
|
|
|||
22
CHANGELOG.md
22
CHANGELOG.md
|
|
@ -1,5 +1,27 @@
|
|||
# Changelog
|
||||
|
||||
## [0.42.0](https://github.com/webstreamr/webstreamr/compare/v0.41.9...v0.42.0) (2025-08-13)
|
||||
|
||||
|
||||
### Miscellaneous Chores
|
||||
|
||||
* **fetcher:** retry 5xx errors up to 3 times ([a12ae7a](https://github.com/webstreamr/webstreamr/commit/a12ae7aaa5291835b23ed3da5c84fd5952f08ea0))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **extractor:** add SaveFiles support ([c9aaf8b](https://github.com/webstreamr/webstreamr/commit/c9aaf8bb8f23d52dccd58668d089bae428fe8ce5))
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* support stream resolving without config ([17da20f](https://github.com/webstreamr/webstreamr/commit/17da20f6d0c18dd7f22fb291b0bfd6256b85a79c))
|
||||
|
||||
|
||||
### Code Refactoring
|
||||
|
||||
* **extractor:** clean-up DoodStream sightly ([3e964f2](https://github.com/webstreamr/webstreamr/commit/3e964f28ff3f9a0acbc929e648f7531fbeb40468))
|
||||
|
||||
## [0.41.9](https://github.com/webstreamr/webstreamr/compare/v0.41.8...v0.41.9) (2025-08-12)
|
||||
|
||||
|
||||
|
|
|
|||
4
package-lock.json
generated
4
package-lock.json
generated
|
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "webstreamr",
|
||||
"version": "0.41.9",
|
||||
"version": "0.42.0",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "webstreamr",
|
||||
"version": "0.41.9",
|
||||
"version": "0.42.0",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@isaacs/ttlcache": "^1.4.1",
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "webstreamr",
|
||||
"description": "Provides HTTP URLs from streaming websites.",
|
||||
"version": "0.41.9",
|
||||
"version": "0.42.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.41.9', // x-release-please-version
|
||||
version: '0.42.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