chore(release): release v0.22.4 (#91)
This commit is contained in:
parent
cd8ff60508
commit
d271b2c337
5 changed files with 18 additions and 5 deletions
|
|
@ -1,3 +1,3 @@
|
|||
{
|
||||
".": "0.22.3"
|
||||
".": "0.22.4"
|
||||
}
|
||||
|
|
|
|||
13
CHANGELOG.md
13
CHANGELOG.md
|
|
@ -1,5 +1,18 @@
|
|||
# Changelog
|
||||
|
||||
## [0.22.4](https://github.com/webstreamr/webstreamr/compare/v0.22.3...v0.22.4) (2025-06-01)
|
||||
|
||||
|
||||
### Miscellaneous Chores
|
||||
|
||||
* generalize forbidden/blocked handling ([2eb09fc](https://github.com/webstreamr/webstreamr/commit/2eb09fc65a1f0141abd1f9760c39cb454de00496))
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **fetcher:** use "node" as user agent explicitly ([c3a2f9f](https://github.com/webstreamr/webstreamr/commit/c3a2f9fdc6c543baf7db058ce7653877deff65ef))
|
||||
* **handler:** disable Eurostreaming as long as it doesn't work ([cd8ff60](https://github.com/webstreamr/webstreamr/commit/cd8ff605082e12ae3aee2509a3c0f2bf7ecadbb3))
|
||||
|
||||
## [0.22.3](https://github.com/webstreamr/webstreamr/compare/v0.22.2...v0.22.3) (2025-06-01)
|
||||
|
||||
|
||||
|
|
|
|||
4
package-lock.json
generated
4
package-lock.json
generated
|
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "webstreamr",
|
||||
"version": "0.22.3",
|
||||
"version": "0.22.4",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "webstreamr",
|
||||
"version": "0.22.3",
|
||||
"version": "0.22.4",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@isaacs/ttlcache": "^1.4.1",
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "webstreamr",
|
||||
"description": "Provides HTTP URLs from streaming websites.",
|
||||
"version": "0.22.3",
|
||||
"version": "0.22.4",
|
||||
"type": "commonjs",
|
||||
"scripts": {
|
||||
"analyse": "tsc --noEmit --project ./tsconfig.dev.json",
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ import { Config, ManifestWithConfig } from '../types';
|
|||
export const buildManifest = (handlers: Handler[], config: Config): ManifestWithConfig => {
|
||||
const manifest: ManifestWithConfig = {
|
||||
id: process.env['MANIFEST_ID'] || 'webstreamr',
|
||||
version: '0.22.3', // x-release-please-version
|
||||
version: '0.22.4', // x-release-please-version
|
||||
name: process.env['MANIFEST_NAME'] || 'WebStreamr',
|
||||
description: 'Provides HTTP URLs from streaming websites.',
|
||||
resources: [
|
||||
|
|
|
|||
Loading…
Reference in a new issue