chore(release): release v0.53.3 #390
5 changed files with 19 additions and 5 deletions
|
|
@ -1,3 +1,3 @@
|
||||||
{
|
{
|
||||||
".": "0.53.2"
|
".": "0.53.3"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
14
CHANGELOG.md
14
CHANGELOG.md
|
|
@ -1,5 +1,19 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [0.53.3](https://github.com/webstreamr/webstreamr/compare/v0.53.2...v0.53.3) (2025-09-29)
|
||||||
|
|
||||||
|
|
||||||
|
### Miscellaneous Chores
|
||||||
|
|
||||||
|
* **deps:** update dependency typescript-eslint to v8.45.0 ([#389](https://github.com/webstreamr/webstreamr/issues/389)) ([4bf2cf6](https://github.com/webstreamr/webstreamr/commit/4bf2cf632b9606bcb927e73a014da3bf993917ab))
|
||||||
|
* **source:** support similar match search in HomeCine ([e327f3c](https://github.com/webstreamr/webstreamr/commit/e327f3c7344ce5a8553eb14b5d578d3221b2c81b))
|
||||||
|
* **source:** use original title as search fallback in HomeCine and don't enforce year check ([20648ae](https://github.com/webstreamr/webstreamr/commit/20648ae4cdb5e1618268c579c34c51f7aa22bc1b))
|
||||||
|
|
||||||
|
|
||||||
|
### Tests
|
||||||
|
|
||||||
|
* fix slugger length check in FetcherMock ([0879531](https://github.com/webstreamr/webstreamr/commit/0879531478efbcff3eefaa14c362fabd0b905e36))
|
||||||
|
|
||||||
## [0.53.2](https://github.com/webstreamr/webstreamr/compare/v0.53.1...v0.53.2) (2025-09-29)
|
## [0.53.2](https://github.com/webstreamr/webstreamr/compare/v0.53.1...v0.53.2) (2025-09-29)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
4
package-lock.json
generated
4
package-lock.json
generated
|
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "webstreamr",
|
"name": "webstreamr",
|
||||||
"version": "0.53.2",
|
"version": "0.53.3",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "webstreamr",
|
"name": "webstreamr",
|
||||||
"version": "0.53.2",
|
"version": "0.53.3",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@keyv/sqlite": "^4.0.5",
|
"@keyv/sqlite": "^4.0.5",
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "webstreamr",
|
"name": "webstreamr",
|
||||||
"description": "Provides HTTP URLs from streaming websites.",
|
"description": "Provides HTTP URLs from streaming websites.",
|
||||||
"version": "0.53.2",
|
"version": "0.53.3",
|
||||||
"type": "commonjs",
|
"type": "commonjs",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"analyse": "tsc --noEmit --project ./tsconfig.dev.json",
|
"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 => {
|
export const buildManifest = (sources: Source[], extractors: Extractor[], config: Config): CustomManifest => {
|
||||||
const manifest: CustomManifest = {
|
const manifest: CustomManifest = {
|
||||||
id: envGetAppId(),
|
id: envGetAppId(),
|
||||||
version: '0.53.2', // x-release-please-version
|
version: '0.53.3', // x-release-please-version
|
||||||
name: envGetAppName(),
|
name: envGetAppName(),
|
||||||
description: 'Provides HTTP URLs from streaming websites. Configure add-on for additional languages. Add MediaFlow proxy for more URLs.',
|
description: 'Provides HTTP URLs from streaming websites. Configure add-on for additional languages. Add MediaFlow proxy for more URLs.',
|
||||||
resources: [
|
resources: [
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue