chore(release): release v0.41.9 #274
5 changed files with 18 additions and 5 deletions
|
|
@ -1,3 +1,3 @@
|
|||
{
|
||||
".": "0.41.8"
|
||||
".": "0.41.9"
|
||||
}
|
||||
|
|
|
|||
13
CHANGELOG.md
13
CHANGELOG.md
|
|
@ -1,5 +1,18 @@
|
|||
# Changelog
|
||||
|
||||
## [0.41.9](https://github.com/webstreamr/webstreamr/compare/v0.41.8...v0.41.9) (2025-08-12)
|
||||
|
||||
|
||||
### Miscellaneous Chores
|
||||
|
||||
* clean-up critical error handling ([1a5cad4](https://github.com/webstreamr/webstreamr/commit/1a5cad40a2eedf1eb848157cb1944a8ca556d775))
|
||||
* **extractor:** add new DoodStream domains ([8a81a5c](https://github.com/webstreamr/webstreamr/commit/8a81a5c14e5f85fb218ae673378ab8c9303506da))
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **source:** keep using jsdom for now because of performance issues ([2d96e1d](https://github.com/webstreamr/webstreamr/commit/2d96e1db8fed5c4ce564cf81cb472d17c08fb44e))
|
||||
|
||||
## [0.41.8](https://github.com/webstreamr/webstreamr/compare/v0.41.7...v0.41.8) (2025-08-12)
|
||||
|
||||
|
||||
|
|
|
|||
4
package-lock.json
generated
4
package-lock.json
generated
|
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "webstreamr",
|
||||
"version": "0.41.8",
|
||||
"version": "0.41.9",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "webstreamr",
|
||||
"version": "0.41.8",
|
||||
"version": "0.41.9",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@isaacs/ttlcache": "^1.4.1",
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "webstreamr",
|
||||
"description": "Provides HTTP URLs from streaming websites.",
|
||||
"version": "0.41.8",
|
||||
"version": "0.41.9",
|
||||
"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.8', // x-release-please-version
|
||||
version: '0.41.9', // 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