chore(release): release v0.40.2 (#241)
This commit is contained in:
parent
ece3b45f59
commit
b15d93eca8
5 changed files with 22 additions and 5 deletions
|
|
@ -1,3 +1,3 @@
|
|||
{
|
||||
".": "0.40.1"
|
||||
".": "0.40.2"
|
||||
}
|
||||
|
|
|
|||
17
CHANGELOG.md
17
CHANGELOG.md
|
|
@ -1,5 +1,22 @@
|
|||
# Changelog
|
||||
|
||||
## [0.40.2](https://github.com/webstreamr/webstreamr/compare/v0.40.1...v0.40.2) (2025-07-23)
|
||||
|
||||
|
||||
### Miscellaneous Chores
|
||||
|
||||
* **deps:** update dependency @stylistic/eslint-plugin to v5.2.2 ([#240](https://github.com/webstreamr/webstreamr/issues/240)) ([4ab0c88](https://github.com/webstreamr/webstreamr/commit/4ab0c882625982c1ce53f83d98c875ca0899eeed))
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* disable health check failing for blocked issues on non-hayd.uk instances ([ece3b45](https://github.com/webstreamr/webstreamr/commit/ece3b45f59278e209f18dc3cc29a0d2e26f2d4d7))
|
||||
|
||||
|
||||
### Code Refactoring
|
||||
|
||||
* extract helpers to figure out which instance we're running on ([be8c664](https://github.com/webstreamr/webstreamr/commit/be8c664b476b834376f75968a31993031ec7b7cd))
|
||||
|
||||
## [0.40.1](https://github.com/webstreamr/webstreamr/compare/v0.40.0...v0.40.1) (2025-07-22)
|
||||
|
||||
|
||||
|
|
|
|||
4
package-lock.json
generated
4
package-lock.json
generated
|
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "webstreamr",
|
||||
"version": "0.40.1",
|
||||
"version": "0.40.2",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "webstreamr",
|
||||
"version": "0.40.1",
|
||||
"version": "0.40.2",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@isaacs/ttlcache": "^1.4.1",
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "webstreamr",
|
||||
"description": "Provides HTTP URLs from streaming websites.",
|
||||
"version": "0.40.1",
|
||||
"version": "0.40.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.40.1', // x-release-please-version
|
||||
version: '0.40.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