chore(release): release v0.37.0 #217
5 changed files with 23 additions and 5 deletions
|
|
@ -1,3 +1,3 @@
|
||||||
{
|
{
|
||||||
".": "0.36.2"
|
".": "0.37.0"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
18
CHANGELOG.md
18
CHANGELOG.md
|
|
@ -1,5 +1,23 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [0.37.0](https://github.com/webstreamr/webstreamr/compare/v0.36.2...v0.37.0) (2025-07-15)
|
||||||
|
|
||||||
|
|
||||||
|
### Miscellaneous Chores
|
||||||
|
|
||||||
|
* **deps:** update dependency typescript-eslint to v8.37.0 ([#215](https://github.com/webstreamr/webstreamr/issues/215)) ([f701ed3](https://github.com/webstreamr/webstreamr/commit/f701ed39ef1726e3c1187da50d8ae9b4f3b968c5))
|
||||||
|
* **extractor:** normalize Dropload download URLs ([69afcdc](https://github.com/webstreamr/webstreamr/commit/69afcdcdb253e426585677a6ed357a02ee4691e8))
|
||||||
|
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* **source:** add PrimeWire ([8f7039b](https://github.com/webstreamr/webstreamr/commit/8f7039bbb36f39a9550f49e5b01408cf742ad88c))
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* **fetcher:** import correct Headers ([e03621d](https://github.com/webstreamr/webstreamr/commit/e03621db0bf394eedf01f491f115f348defc171a))
|
||||||
|
|
||||||
## [0.36.2](https://github.com/webstreamr/webstreamr/compare/v0.36.1...v0.36.2) (2025-07-14)
|
## [0.36.2](https://github.com/webstreamr/webstreamr/compare/v0.36.1...v0.36.2) (2025-07-14)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
4
package-lock.json
generated
4
package-lock.json
generated
|
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "webstreamr",
|
"name": "webstreamr",
|
||||||
"version": "0.36.2",
|
"version": "0.37.0",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "webstreamr",
|
"name": "webstreamr",
|
||||||
"version": "0.36.2",
|
"version": "0.37.0",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@isaacs/ttlcache": "^1.4.1",
|
"@isaacs/ttlcache": "^1.4.1",
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "webstreamr",
|
"name": "webstreamr",
|
||||||
"description": "Provides HTTP URLs from streaming websites.",
|
"description": "Provides HTTP URLs from streaming websites.",
|
||||||
"version": "0.36.2",
|
"version": "0.37.0",
|
||||||
"type": "commonjs",
|
"type": "commonjs",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"analyse": "tsc --noEmit --project ./tsconfig.dev.json",
|
"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 => {
|
export const buildManifest = (sources: Source[], config: Config): ManifestWithConfig => {
|
||||||
const manifest: ManifestWithConfig = {
|
const manifest: ManifestWithConfig = {
|
||||||
id: envGetAppId(),
|
id: envGetAppId(),
|
||||||
version: '0.36.2', // x-release-please-version
|
version: '0.37.0', // x-release-please-version
|
||||||
name: envGetAppName(),
|
name: envGetAppName(),
|
||||||
description: 'Provides HTTP URLs from streaming websites.',
|
description: 'Provides HTTP URLs from streaming websites.',
|
||||||
resources: [
|
resources: [
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue