chore(release): release v0.45.2 (#310)
This commit is contained in:
parent
ceb520d49d
commit
bd38329fd8
5 changed files with 25 additions and 5 deletions
|
|
@ -1,3 +1,3 @@
|
|||
{
|
||||
".": "0.45.1"
|
||||
".": "0.45.2"
|
||||
}
|
||||
|
|
|
|||
20
CHANGELOG.md
20
CHANGELOG.md
|
|
@ -1,5 +1,25 @@
|
|||
# Changelog
|
||||
|
||||
## [0.45.2](https://github.com/webstreamr/webstreamr/compare/v0.45.1...v0.45.2) (2025-09-01)
|
||||
|
||||
|
||||
### Miscellaneous Chores
|
||||
|
||||
* **deps:** update dependency @stylistic/eslint-plugin to v5.3.1 ([#309](https://github.com/webstreamr/webstreamr/issues/309)) ([285746a](https://github.com/webstreamr/webstreamr/commit/285746a4a9ba62ed17f30306f3e57ec0e8bb5f39))
|
||||
* handle NotFoundError / 404 inside source and cache it also ([4d05ac8](https://github.com/webstreamr/webstreamr/commit/4d05ac859f14ccdd123f13d7c46fea6195e17a93))
|
||||
* **source:** remove outdated comment ([2468fbd](https://github.com/webstreamr/webstreamr/commit/2468fbde4e826f4e313e202a1a2cdace655b7706))
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* catch all timeouts ([b47a512](https://github.com/webstreamr/webstreamr/commit/b47a5125870c7bd764756f38e4493e0e5b894b55))
|
||||
* **source:** consider season and episode for cache key ([ceb520d](https://github.com/webstreamr/webstreamr/commit/ceb520d49d0c9ff3056fce32075b201499805fcf))
|
||||
|
||||
|
||||
### Code Refactoring
|
||||
|
||||
* move locks into StreamController ([e109637](https://github.com/webstreamr/webstreamr/commit/e109637e48cdf4b2c1418fa00c30cf95268fbf0e))
|
||||
|
||||
## [0.45.1](https://github.com/webstreamr/webstreamr/compare/v0.45.0...v0.45.1) (2025-09-01)
|
||||
|
||||
|
||||
|
|
|
|||
4
package-lock.json
generated
4
package-lock.json
generated
|
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "webstreamr",
|
||||
"version": "0.45.1",
|
||||
"version": "0.45.2",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "webstreamr",
|
||||
"version": "0.45.1",
|
||||
"version": "0.45.2",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@isaacs/ttlcache": "^1.4.1",
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "webstreamr",
|
||||
"description": "Provides HTTP URLs from streaming websites.",
|
||||
"version": "0.45.1",
|
||||
"version": "0.45.2",
|
||||
"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.45.1', // x-release-please-version
|
||||
version: '0.45.2', // 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