chore(release): release v0.29.1 (#146)
This commit is contained in:
parent
f7042b94ef
commit
161e78f95f
5 changed files with 18 additions and 5 deletions
|
|
@ -1,3 +1,3 @@
|
|||
{
|
||||
".": "0.29.0"
|
||||
".": "0.29.1"
|
||||
}
|
||||
|
|
|
|||
13
CHANGELOG.md
13
CHANGELOG.md
|
|
@ -1,5 +1,18 @@
|
|||
# Changelog
|
||||
|
||||
## [0.29.1](https://github.com/webstreamr/webstreamr/compare/v0.29.0...v0.29.1) (2025-06-17)
|
||||
|
||||
|
||||
### Miscellaneous Chores
|
||||
|
||||
* **deps:** update dependency typescript-eslint to v8.34.1 ([#145](https://github.com/webstreamr/webstreamr/issues/145)) ([aa9085c](https://github.com/webstreamr/webstreamr/commit/aa9085c2631bc37cd31e28ae3cb44c800f140181))
|
||||
* **fetcher:** remember recent timeouts and throw if count is too high ([f7042b9](https://github.com/webstreamr/webstreamr/commit/f7042b94ef7da5de1c5d581ee5236df910508317))
|
||||
|
||||
|
||||
### Code Refactoring
|
||||
|
||||
* avoid leaking fetch internals by introducing TimeoutError ([e1f5192](https://github.com/webstreamr/webstreamr/commit/e1f5192f4bfc210cd1d944869b06ca1046d6786f))
|
||||
|
||||
## [0.29.0](https://github.com/webstreamr/webstreamr/compare/v0.28.4...v0.29.0) (2025-06-16)
|
||||
|
||||
|
||||
|
|
|
|||
4
package-lock.json
generated
4
package-lock.json
generated
|
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "webstreamr",
|
||||
"version": "0.29.0",
|
||||
"version": "0.29.1",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "webstreamr",
|
||||
"version": "0.29.0",
|
||||
"version": "0.29.1",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@isaacs/ttlcache": "^1.4.1",
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "webstreamr",
|
||||
"description": "Provides HTTP URLs from streaming websites.",
|
||||
"version": "0.29.0",
|
||||
"version": "0.29.1",
|
||||
"type": "commonjs",
|
||||
"scripts": {
|
||||
"analyse": "tsc --noEmit --project ./tsconfig.dev.json",
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ const typedEntries = <T extends object>(obj: T): [keyof T, T[keyof T]][] => (Obj
|
|||
export const buildManifest = (sources: Source[], config: Config): ManifestWithConfig => {
|
||||
const manifest: ManifestWithConfig = {
|
||||
id: envGetAppId(),
|
||||
version: '0.29.0', // x-release-please-version
|
||||
version: '0.29.1', // x-release-please-version
|
||||
name: envGetAppName(),
|
||||
description: 'Provides HTTP URLs from streaming websites.',
|
||||
resources: [
|
||||
|
|
|
|||
Loading…
Reference in a new issue