chore(release): release v0.39.0 (#224)
This commit is contained in:
parent
f3f61c85cc
commit
70e6e670f3
5 changed files with 24 additions and 5 deletions
|
|
@ -1,3 +1,3 @@
|
|||
{
|
||||
".": "0.38.1"
|
||||
".": "0.39.0"
|
||||
}
|
||||
|
|
|
|||
19
CHANGELOG.md
19
CHANGELOG.md
|
|
@ -1,5 +1,24 @@
|
|||
# Changelog
|
||||
|
||||
## [0.39.0](https://github.com/webstreamr/webstreamr/compare/v0.38.1...v0.39.0) (2025-07-18)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **extractor:** add Fastream via MediaFlow Proxy ([f3f61c8](https://github.com/webstreamr/webstreamr/commit/f3f61c85cce79f57b15abe74f60075aee413d073))
|
||||
* **source:** add HomeCine ([5759a31](https://github.com/webstreamr/webstreamr/commit/5759a311aa7c434e721a7cdebaca4752c110522c))
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **deps:** update dependency undici to v7.12.0 ([#223](https://github.com/webstreamr/webstreamr/issues/223)) ([603bcff](https://github.com/webstreamr/webstreamr/commit/603bcff935172db253a6a73008c143c233b15838))
|
||||
* **extractor:** do not skip external blocked URLs ([533470d](https://github.com/webstreamr/webstreamr/commit/533470d0809768308a7fcde29c85c8403ebe4454))
|
||||
|
||||
|
||||
### Code Refactoring
|
||||
|
||||
* make TMDB detail fetching more DRY ([f6dcd74](https://github.com/webstreamr/webstreamr/commit/f6dcd74dfbfd3696c6462b1963c7e2645eb3d99f))
|
||||
|
||||
## [0.38.1](https://github.com/webstreamr/webstreamr/compare/v0.38.0...v0.38.1) (2025-07-18)
|
||||
|
||||
|
||||
|
|
|
|||
4
package-lock.json
generated
4
package-lock.json
generated
|
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "webstreamr",
|
||||
"version": "0.38.1",
|
||||
"version": "0.39.0",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "webstreamr",
|
||||
"version": "0.38.1",
|
||||
"version": "0.39.0",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@isaacs/ttlcache": "^1.4.1",
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "webstreamr",
|
||||
"description": "Provides HTTP URLs from streaming websites.",
|
||||
"version": "0.38.1",
|
||||
"version": "0.39.0",
|
||||
"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.38.1', // x-release-please-version
|
||||
version: '0.39.0', // x-release-please-version
|
||||
name: envGetAppName(),
|
||||
description: 'Provides HTTP URLs from streaming websites.',
|
||||
resources: [
|
||||
|
|
|
|||
Loading…
Reference in a new issue