chore(release): release v0.46.5 (#323)
This commit is contained in:
parent
b589c25bb5
commit
120f10139c
5 changed files with 18 additions and 5 deletions
|
|
@ -1,3 +1,3 @@
|
|||
{
|
||||
".": "0.46.4"
|
||||
".": "0.46.5"
|
||||
}
|
||||
|
|
|
|||
13
CHANGELOG.md
13
CHANGELOG.md
|
|
@ -1,5 +1,18 @@
|
|||
# Changelog
|
||||
|
||||
## [0.46.5](https://github.com/webstreamr/webstreamr/compare/v0.46.4...v0.46.5) (2025-09-05)
|
||||
|
||||
|
||||
### Miscellaneous Chores
|
||||
|
||||
* **extractor:** do only one VidSrc request per domain at a time ([b589c25](https://github.com/webstreamr/webstreamr/commit/b589c25bb543a59e84e2f89bc248b0ef7f5fbe0c))
|
||||
* **fetcher:** wait out short rate limits and retry ([211babe](https://github.com/webstreamr/webstreamr/commit/211babec3767543728f5a9ba5c75d61c57700167))
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **fetcher:** fix TTL for rate limit cache ([e846900](https://github.com/webstreamr/webstreamr/commit/e8469003845b1af32236d480af72748fdd24fb72))
|
||||
|
||||
## [0.46.4](https://github.com/webstreamr/webstreamr/compare/v0.46.3...v0.46.4) (2025-09-04)
|
||||
|
||||
|
||||
|
|
|
|||
4
package-lock.json
generated
4
package-lock.json
generated
|
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "webstreamr",
|
||||
"version": "0.46.4",
|
||||
"version": "0.46.5",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "webstreamr",
|
||||
"version": "0.46.4",
|
||||
"version": "0.46.5",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@keyv/sqlite": "^4.0.5",
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "webstreamr",
|
||||
"description": "Provides HTTP URLs from streaming websites.",
|
||||
"version": "0.46.4",
|
||||
"version": "0.46.5",
|
||||
"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.46.4', // x-release-please-version
|
||||
version: '0.46.5', // 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