chore(release): release v0.42.1
This commit is contained in:
parent
c0797f3687
commit
4767bbc0a0
5 changed files with 18 additions and 5 deletions
|
|
@ -1,3 +1,3 @@
|
|||
{
|
||||
".": "0.42.0"
|
||||
".": "0.42.1"
|
||||
}
|
||||
|
|
|
|||
13
CHANGELOG.md
13
CHANGELOG.md
|
|
@ -1,5 +1,18 @@
|
|||
# Changelog
|
||||
|
||||
## [0.42.1](https://github.com/webstreamr/webstreamr/compare/v0.42.0...v0.42.1) (2025-08-14)
|
||||
|
||||
|
||||
### Miscellaneous Chores
|
||||
|
||||
* **extractor:** use all VidSrc TLDs to handle rate-limit better ([6492e6b](https://github.com/webstreamr/webstreamr/commit/6492e6be820e0e50b814aa3e661d10517184ac38))
|
||||
* use mutex per id when resolving streams ([c0797f3](https://github.com/webstreamr/webstreamr/commit/c0797f368733ae3e30bb1fb4cc92949f4a928f47))
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **extractor:** handle SaveFiles locked file ([285996c](https://github.com/webstreamr/webstreamr/commit/285996cbf6f8a8a92fd18cc365006fb980436d75))
|
||||
|
||||
## [0.42.0](https://github.com/webstreamr/webstreamr/compare/v0.41.9...v0.42.0) (2025-08-13)
|
||||
|
||||
|
||||
|
|
|
|||
4
package-lock.json
generated
4
package-lock.json
generated
|
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "webstreamr",
|
||||
"version": "0.42.0",
|
||||
"version": "0.42.1",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "webstreamr",
|
||||
"version": "0.42.0",
|
||||
"version": "0.42.1",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@isaacs/ttlcache": "^1.4.1",
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "webstreamr",
|
||||
"description": "Provides HTTP URLs from streaming websites.",
|
||||
"version": "0.42.0",
|
||||
"version": "0.42.1",
|
||||
"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.42.0', // x-release-please-version
|
||||
version: '0.42.1', // 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