chore(release): release v0.23.4 #113

Merged
webstreamr merged 1 commit from release-please--branches--main--components--webstreamr into main 2025-06-05 15:21:35 +00:00
5 changed files with 12 additions and 5 deletions

View file

@ -1,3 +1,3 @@
{ {
".": "0.23.3" ".": "0.23.4"
} }

View file

@ -1,5 +1,12 @@
# Changelog # Changelog
## [0.23.4](https://github.com/webstreamr/webstreamr/compare/v0.23.3...v0.23.4) (2025-06-05)
### Miscellaneous Chores
* **fetcher:** simplify queuing and allow parallel requests ([be34643](https://github.com/webstreamr/webstreamr/commit/be3464369b330819e0953fe4fe85fbf13b82f6f2))
## [0.23.3](https://github.com/webstreamr/webstreamr/compare/v0.23.2...v0.23.3) (2025-06-05) ## [0.23.3](https://github.com/webstreamr/webstreamr/compare/v0.23.2...v0.23.3) (2025-06-05)

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{ {
"name": "webstreamr", "name": "webstreamr",
"version": "0.23.3", "version": "0.23.4",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "webstreamr", "name": "webstreamr",
"version": "0.23.3", "version": "0.23.4",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@isaacs/ttlcache": "^1.4.1", "@isaacs/ttlcache": "^1.4.1",

View file

@ -1,7 +1,7 @@
{ {
"name": "webstreamr", "name": "webstreamr",
"description": "Provides HTTP URLs from streaming websites.", "description": "Provides HTTP URLs from streaming websites.",
"version": "0.23.3", "version": "0.23.4",
"type": "commonjs", "type": "commonjs",
"scripts": { "scripts": {
"analyse": "tsc --noEmit --project ./tsconfig.dev.json", "analyse": "tsc --noEmit --project ./tsconfig.dev.json",

View file

@ -9,7 +9,7 @@ const typedEntries = <T extends object>(obj: T): [keyof T, T[keyof T]][] => (Obj
export const buildManifest = (handlers: Handler[], config: Config): ManifestWithConfig => { export const buildManifest = (handlers: Handler[], config: Config): ManifestWithConfig => {
const manifest: ManifestWithConfig = { const manifest: ManifestWithConfig = {
id: envGetAppId(), id: envGetAppId(),
version: '0.23.3', // x-release-please-version version: '0.23.4', // x-release-please-version
name: envGetAppName(), name: envGetAppName(),
description: 'Provides HTTP URLs from streaming websites.', description: 'Provides HTTP URLs from streaming websites.',
resources: [ resources: [