chore(release): release v0.46.3 #321
5 changed files with 12 additions and 5 deletions
|
|
@ -1,3 +1,3 @@
|
||||||
{
|
{
|
||||||
".": "0.46.2"
|
".": "0.46.3"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,12 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [0.46.3](https://github.com/webstreamr/webstreamr/compare/v0.46.2...v0.46.3) (2025-09-04)
|
||||||
|
|
||||||
|
|
||||||
|
### Miscellaneous Chores
|
||||||
|
|
||||||
|
* allow forcing the IP check in the /live endpoint ([cf79473](https://github.com/webstreamr/webstreamr/commit/cf79473fad96dbac083522646dfcc1018fcc075c))
|
||||||
|
|
||||||
## [0.46.2](https://github.com/webstreamr/webstreamr/compare/v0.46.1...v0.46.2) (2025-09-04)
|
## [0.46.2](https://github.com/webstreamr/webstreamr/compare/v0.46.1...v0.46.2) (2025-09-04)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
4
package-lock.json
generated
4
package-lock.json
generated
|
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "webstreamr",
|
"name": "webstreamr",
|
||||||
"version": "0.46.2",
|
"version": "0.46.3",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "webstreamr",
|
"name": "webstreamr",
|
||||||
"version": "0.46.2",
|
"version": "0.46.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.46.2",
|
"version": "0.46.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.46.2', // x-release-please-version
|
version: '0.46.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