chore(release): release v0.39.1 (#225)
This commit is contained in:
parent
8ad5a8f8e6
commit
75a5133004
5 changed files with 18 additions and 5 deletions
|
|
@ -1,3 +1,3 @@
|
|||
{
|
||||
".": "0.39.0"
|
||||
".": "0.39.1"
|
||||
}
|
||||
|
|
|
|||
13
CHANGELOG.md
13
CHANGELOG.md
|
|
@ -1,5 +1,18 @@
|
|||
# Changelog
|
||||
|
||||
## [0.39.1](https://github.com/webstreamr/webstreamr/compare/v0.39.0...v0.39.1) (2025-07-20)
|
||||
|
||||
|
||||
### Miscellaneous Chores
|
||||
|
||||
* add explicit info that we can't fix 5xx errors ([8ad5a8f](https://github.com/webstreamr/webstreamr/commit/8ad5a8f8e69842d801fde2eaea22e2c77af82804))
|
||||
* disable all console functions in favor of logger ([d1e410e](https://github.com/webstreamr/webstreamr/commit/d1e410ef33d95b9d24955dbe36224f6646979a12))
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* use correct request ID header in context ([1a37662](https://github.com/webstreamr/webstreamr/commit/1a37662502c68effdb153b887ba47f495b17585d))
|
||||
|
||||
## [0.39.0](https://github.com/webstreamr/webstreamr/compare/v0.38.1...v0.39.0) (2025-07-18)
|
||||
|
||||
|
||||
|
|
|
|||
4
package-lock.json
generated
4
package-lock.json
generated
|
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "webstreamr",
|
||||
"version": "0.39.0",
|
||||
"version": "0.39.1",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "webstreamr",
|
||||
"version": "0.39.0",
|
||||
"version": "0.39.1",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@isaacs/ttlcache": "^1.4.1",
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "webstreamr",
|
||||
"description": "Provides HTTP URLs from streaming websites.",
|
||||
"version": "0.39.0",
|
||||
"version": "0.39.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.39.0', // x-release-please-version
|
||||
version: '0.39.1', // x-release-please-version
|
||||
name: envGetAppName(),
|
||||
description: 'Provides HTTP URLs from streaming websites.',
|
||||
resources: [
|
||||
|
|
|
|||
Loading…
Reference in a new issue