Skip to content

Commit 3155b09

Browse files
committed
v1.51.0-alpha.0
1 parent f6dcb99 commit 3155b09

File tree

43 files changed

+411
-106
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+411
-106
lines changed

CHANGELOG.md

+39
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,45 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [1.51.0-alpha.0](https://github.com/nrkno/tv-automation-package-manager/compare/v1.50.7...v1.51.0-alpha.0) (2025-01-08)
7+
8+
9+
### Bug Fixes
10+
11+
* add a `force` parameter to appcontainer.requestSpinDown() ([3255189](https://github.com/nrkno/tv-automation-package-manager/commit/3255189663d06d91e90d812bfc9a705589c5ba0d))
12+
* add option to HTTP Accessor to either send a HEAD or GET to retrieve initial info ([e98854c](https://github.com/nrkno/tv-automation-package-manager/commit/e98854c32955c122aa6bf68a2ac47aa121448f40))
13+
* allow baseUrl to be optional for HTTP Accessor ([92c575f](https://github.com/nrkno/tv-automation-package-manager/commit/92c575fa767cb3adba649619c16ca312b0253065))
14+
* allow stringified JSON object as storeObject value. Also add some error handling ([0e589bf](https://github.com/nrkno/tv-automation-package-manager/commit/0e589bfb1809cc68f3ef6bf14a95ef02953966ce))
15+
* change default `minRunningApps` to 1 ([8694b77](https://github.com/nrkno/tv-automation-package-manager/commit/8694b77f34242445430d84ebe1badc6baa93c704))
16+
* change how render width, height and scale works for html_template expectedPackages ([7fcdf70](https://github.com/nrkno/tv-automation-package-manager/commit/7fcdf700fda413b94f39e7fb6107e26ee7dd9713))
17+
* **Config:** Add unit to description of config field ([de0f43b](https://github.com/nrkno/tv-automation-package-manager/commit/de0f43b0090dd59293c98dc6ee59206675a7c09e))
18+
* default to png as screenshot ([9bc6a52](https://github.com/nrkno/tv-automation-package-manager/commit/9bc6a52482486d65ba674cf800c002101cc5701d))
19+
* escape paths in args ([6c17eae](https://github.com/nrkno/tv-automation-package-manager/commit/6c17eae206bf548167e121ed2e429cdca46daa84))
20+
* fix issue in HelpfulEventEmitter where it logged false errors ([7d36627](https://github.com/nrkno/tv-automation-package-manager/commit/7d36627323faa030d6bec0506ab4a416b3e49d5d))
21+
* handle bad http respnse codes better ([1ad7b2d](https://github.com/nrkno/tv-automation-package-manager/commit/1ad7b2dd6b0828c49b54cc4613ddd0ae92b9fddc))
22+
* html-renderer lookup paths on linux ([40e12d3](https://github.com/nrkno/tv-automation-package-manager/commit/40e12d3083b385a2cddf8ea93cdaa522fbed7073))
23+
* html-renderer: add support for transparent backgrounds ([c3775a7](https://github.com/nrkno/tv-automation-package-manager/commit/c3775a71783e3ca915d950cb44055ed7e3f4f60e))
24+
* html-renderer: bug in background color and cropping ([e3e0242](https://github.com/nrkno/tv-automation-package-manager/commit/e3e024264f05e433dee6c6d3878201d4950536cd))
25+
* make failureLimit to be passed through into appContainer ([f03434a](https://github.com/nrkno/tv-automation-package-manager/commit/f03434abfc909a0cdc04d8bea753d805163a6bad))
26+
* no need to re-throw in the catch ([8331ef4](https://github.com/nrkno/tv-automation-package-manager/commit/8331ef4c9b89fca091ccaf0f5176fedc21f0bcbf))
27+
* pin electron version. fix build of html-renderer on linux ([1b06fbb](https://github.com/nrkno/tv-automation-package-manager/commit/1b06fbbda9144524f37b4f542427963dbcd3507a))
28+
* reject absolute file paths ([cf207e6](https://github.com/nrkno/tv-automation-package-manager/commit/cf207e602a7b8c6b9efeca740e8c5bf657569a8c))
29+
* remove outputPrefix for html-template expectations ([43e9887](https://github.com/nrkno/tv-automation-package-manager/commit/43e9887445c117dc6935960a0d881fd19c3d34dd))
30+
* rename supperHEAD to useGETinsteadOfHead ([c75757e](https://github.com/nrkno/tv-automation-package-manager/commit/c75757e9c65ec0babf080652c20d0af50895a767))
31+
* run HTMLRenderer using `yarn start` script when in development mode ([f3164b4](https://github.com/nrkno/tv-automation-package-manager/commit/f3164b48616710f5cd043475f4f0c9963400782e))
32+
* update default config and change severity of warning ([b567535](https://github.com/nrkno/tv-automation-package-manager/commit/b567535927cbd2cfed32773ffaa39cb631d7ad41))
33+
34+
35+
### Features
36+
37+
* add HTML Renderer ([8610b6e](https://github.com/nrkno/tv-automation-package-manager/commit/8610b6ebdb4bef441f9e56a3b3be512f3ccbcfad))
38+
* refactor the failure tracking to track periods of time with failures within them ([d33f973](https://github.com/nrkno/tv-automation-package-manager/commit/d33f973fb5d7c67f442365dd29778e24766b0466))
39+
* track failures in Workers in a time period (SOFIE-3355) ([732fa19](https://github.com/nrkno/tv-automation-package-manager/commit/732fa19fad801ae3be5600645fb5899d81aa11a0))
40+
41+
42+
43+
44+
645
## [1.50.7](https://github.com/nrkno/tv-automation-package-manager/compare/v1.50.6...v1.50.7) (2024-07-04)
746

847

apps/appcontainer-node/app/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [1.51.0-alpha.0](https://github.com/nrkno/sofie-package-manager/compare/v1.50.7...v1.51.0-alpha.0) (2025-01-08)
7+
8+
**Note:** Version bump only for package @appcontainer-node/app
9+
10+
11+
12+
13+
614
# [1.50.5](https://github.com/nrkno/tv-automation-package-manager/compare/v1.50.4...v1.50.5) (2024-04-09)
715

816
**Note:** Version bump only for package @appcontainer-node/app

apps/appcontainer-node/app/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@appcontainer-node/app",
3-
"version": "1.50.6",
3+
"version": "1.51.0-alpha.0",
44
"description": "AppContainer-Node.js",
55
"private": true,
66
"scripts": {
@@ -15,7 +15,7 @@
1515
"typescript": "*"
1616
},
1717
"dependencies": {
18-
"@appcontainer-node/generic": "1.50.6"
18+
"@appcontainer-node/generic": "1.51.0-alpha.0"
1919
},
2020
"prettier": "@sofie-automation/code-standard-preset/.prettierrc.json",
2121
"engines": {

apps/appcontainer-node/packages/generic/CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,24 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [1.51.0-alpha.0](https://github.com/nrkno/sofie-package-manager/compare/v1.50.7...v1.51.0-alpha.0) (2025-01-08)
7+
8+
9+
### Bug Fixes
10+
11+
* add a `force` parameter to appcontainer.requestSpinDown() ([3255189](https://github.com/nrkno/sofie-package-manager/commit/3255189663d06d91e90d812bfc9a705589c5ba0d))
12+
* html-renderer lookup paths on linux ([40e12d3](https://github.com/nrkno/sofie-package-manager/commit/40e12d3083b385a2cddf8ea93cdaa522fbed7073))
13+
* make failureLimit to be passed through into appContainer ([f03434a](https://github.com/nrkno/sofie-package-manager/commit/f03434abfc909a0cdc04d8bea753d805163a6bad))
14+
15+
16+
### Features
17+
18+
* refactor the failure tracking to track periods of time with failures within them ([d33f973](https://github.com/nrkno/sofie-package-manager/commit/d33f973fb5d7c67f442365dd29778e24766b0466))
19+
20+
21+
22+
23+
624
# [1.50.5](https://github.com/nrkno/tv-automation-package-manager/compare/v1.50.4...v1.50.5) (2024-04-09)
725

826
### Bug Fixes

apps/appcontainer-node/packages/generic/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@appcontainer-node/generic",
3-
"version": "1.50.6",
3+
"version": "1.51.0-alpha.0",
44
"private": true,
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",
@@ -14,8 +14,8 @@
1414
"typescript": "*"
1515
},
1616
"dependencies": {
17-
"@sofie-package-manager/api": "1.50.6",
18-
"@sofie-package-manager/worker": "1.50.6",
17+
"@sofie-package-manager/api": "1.51.0-alpha.0",
18+
"@sofie-package-manager/worker": "1.51.0-alpha.0",
1919
"underscore": "^1.12.0"
2020
},
2121
"devDependencies": {

apps/html-renderer/app/CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
# [1.51.0-alpha.0](https://github.com/nrkno/sofie-package-manager/compare/v1.50.7...v1.51.0-alpha.0) (2025-01-08)
7+
8+
9+
### Bug Fixes
10+
11+
* html-renderer: add support for transparent backgrounds ([c3775a7](https://github.com/nrkno/sofie-package-manager/commit/c3775a71783e3ca915d950cb44055ed7e3f4f60e))
12+
* pin electron version. fix build of html-renderer on linux ([1b06fbb](https://github.com/nrkno/sofie-package-manager/commit/1b06fbbda9144524f37b4f542427963dbcd3507a))
13+
14+
15+
### Features
16+
17+
* add HTML Renderer ([8610b6e](https://github.com/nrkno/sofie-package-manager/commit/8610b6ebdb4bef441f9e56a3b3be512f3ccbcfad))

apps/html-renderer/app/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@html-renderer/app",
3-
"version": "1.50.5",
3+
"version": "1.51.0-alpha.0",
44
"description": "HTML-renderer",
55
"private": true,
66
"main": "dist/index.js",
@@ -30,8 +30,8 @@
3030
"ws": "*"
3131
},
3232
"dependencies": {
33-
"@html-renderer/generic": "1.50.5",
34-
"@sofie-package-manager/api": "1.50.6",
33+
"@html-renderer/generic": "1.51.0-alpha.0",
34+
"@sofie-package-manager/api": "1.51.0-alpha.0",
3535
"portfinder": "^1.0.32",
3636
"tslib": "^2.1.0",
3737
"yargs": "^17.7.2"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
# [1.51.0-alpha.0](https://github.com/nrkno/sofie-package-manager/compare/v1.50.7...v1.51.0-alpha.0) (2025-01-08)
7+
8+
9+
### Bug Fixes
10+
11+
* default to png as screenshot ([9bc6a52](https://github.com/nrkno/sofie-package-manager/commit/9bc6a52482486d65ba674cf800c002101cc5701d))
12+
* html-renderer: add support for transparent backgrounds ([c3775a7](https://github.com/nrkno/sofie-package-manager/commit/c3775a71783e3ca915d950cb44055ed7e3f4f60e))
13+
* html-renderer: bug in background color and cropping ([e3e0242](https://github.com/nrkno/sofie-package-manager/commit/e3e024264f05e433dee6c6d3878201d4950536cd))
14+
* pin electron version. fix build of html-renderer on linux ([1b06fbb](https://github.com/nrkno/sofie-package-manager/commit/1b06fbbda9144524f37b4f542427963dbcd3507a))
15+
16+
17+
### Features
18+
19+
* add HTML Renderer ([8610b6e](https://github.com/nrkno/sofie-package-manager/commit/8610b6ebdb4bef441f9e56a3b3be512f3ccbcfad))

apps/html-renderer/packages/generic/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@html-renderer/generic",
3-
"version": "1.50.5",
3+
"version": "1.51.0-alpha.0",
44
"private": true,
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",
@@ -26,7 +26,7 @@
2626
"electron": "*"
2727
},
2828
"dependencies": {
29-
"@sofie-package-manager/api": "1.50.6"
29+
"@sofie-package-manager/api": "1.51.0-alpha.0"
3030
},
3131
"devDependencies": {
3232
"rimraf": "^5.0.5"

apps/http-server/app/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [1.51.0-alpha.0](https://github.com/nrkno/sofie-package-manager/compare/v1.50.7...v1.51.0-alpha.0) (2025-01-08)
7+
8+
**Note:** Version bump only for package @http-server/app
9+
10+
11+
12+
13+
614
## [1.50.7](https://github.com/nrkno/tv-automation-package-manager/compare/v1.50.6...v1.50.7) (2024-07-04)
715

816
**Note:** Version bump only for package @http-server/app

apps/http-server/app/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@http-server/app",
3-
"version": "1.50.7",
3+
"version": "1.51.0-alpha.0",
44
"description": "Upload to and serve proxies of packages",
55
"private": true,
66
"scripts": {
@@ -11,7 +11,7 @@
1111
"start": "node dist/index.js"
1212
},
1313
"dependencies": {
14-
"@http-server/generic": "1.50.7",
14+
"@http-server/generic": "1.51.0-alpha.0",
1515
"rimraf": "^5.0.5"
1616
},
1717
"prettier": "@sofie-automation/code-standard-preset/.prettierrc.json",

apps/http-server/packages/generic/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [1.51.0-alpha.0](https://github.com/nrkno/sofie-package-manager/compare/v1.50.7...v1.51.0-alpha.0) (2025-01-08)
7+
8+
9+
### Bug Fixes
10+
11+
* reject absolute file paths ([cf207e6](https://github.com/nrkno/sofie-package-manager/commit/cf207e602a7b8c6b9efeca740e8c5bf657569a8c))
12+
13+
14+
15+
16+
617
## [1.50.7](https://github.com/nrkno/tv-automation-package-manager/compare/v1.50.6...v1.50.7) (2024-07-04)
718

819

apps/http-server/packages/generic/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@http-server/generic",
3-
"version": "1.50.7",
3+
"version": "1.51.0-alpha.0",
44
"private": true,
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",
@@ -11,7 +11,7 @@
1111
},
1212
"dependencies": {
1313
"@koa/cors": "^5.0.0",
14-
"@sofie-package-manager/api": "1.50.6",
14+
"@sofie-package-manager/api": "1.51.0-alpha.0",
1515
"koa": "^2.14.1",
1616
"koa-bodyparser": "^4.3.0",
1717
"koa-range": "^0.3.0",

apps/package-manager/app/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [1.51.0-alpha.0](https://github.com/nrkno/sofie-package-manager/compare/v1.50.7...v1.51.0-alpha.0) (2025-01-08)
7+
8+
**Note:** Version bump only for package @package-manager/app
9+
10+
11+
12+
13+
614
# [1.50.5](https://github.com/nrkno/tv-automation-package-manager/compare/v1.50.4...v1.50.5) (2024-04-09)
715

816
**Note:** Version bump only for package @package-manager/app

apps/package-manager/app/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@package-manager/app",
3-
"version": "1.50.6",
3+
"version": "1.51.0-alpha.0",
44
"private": true,
55
"scripts": {
66
"build": "yarn rimraf dist && yarn build:main",
@@ -15,7 +15,7 @@
1515
"typescript": "*"
1616
},
1717
"dependencies": {
18-
"@package-manager/generic": "1.50.6"
18+
"@package-manager/generic": "1.51.0-alpha.0"
1919
},
2020
"prettier": "@sofie-automation/code-standard-preset/.prettierrc.json",
2121
"engines": {

apps/package-manager/packages/generic/CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [1.51.0-alpha.0](https://github.com/nrkno/sofie-package-manager/compare/v1.50.7...v1.51.0-alpha.0) (2025-01-08)
7+
8+
9+
### Bug Fixes
10+
11+
* remove outputPrefix for html-template expectations ([43e9887](https://github.com/nrkno/sofie-package-manager/commit/43e9887445c117dc6935960a0d881fd19c3d34dd))
12+
13+
14+
### Features
15+
16+
* add HTML Renderer ([8610b6e](https://github.com/nrkno/sofie-package-manager/commit/8610b6ebdb4bef441f9e56a3b3be512f3ccbcfad))
17+
18+
19+
20+
21+
622
# [1.50.5](https://github.com/nrkno/tv-automation-package-manager/compare/v1.50.4...v1.50.5) (2024-04-09)
723

824
### Bug Fixes

apps/package-manager/packages/generic/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@package-manager/generic",
3-
"version": "1.50.6",
3+
"version": "1.51.0-alpha.0",
44
"private": true,
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",
@@ -15,9 +15,9 @@
1515
},
1616
"dependencies": {
1717
"@parcel/watcher": "^2.3.0",
18-
"@sofie-package-manager/api": "1.50.6",
19-
"@sofie-package-manager/expectation-manager": "1.50.6",
20-
"@sofie-package-manager/worker": "1.50.6",
18+
"@sofie-package-manager/api": "1.51.0-alpha.0",
19+
"@sofie-package-manager/expectation-manager": "1.51.0-alpha.0",
20+
"@sofie-package-manager/worker": "1.51.0-alpha.0",
2121
"data-store": "^4.0.3",
2222
"deep-extend": "^0.6.0",
2323
"fast-clone": "^1.5.13",

apps/quantel-http-transformer-proxy/app/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [1.51.0-alpha.0](https://github.com/nrkno/sofie-package-manager/compare/v1.50.7...v1.51.0-alpha.0) (2025-01-08)
7+
8+
**Note:** Version bump only for package @quantel-http-transformer-proxy/app
9+
10+
11+
12+
13+
614
# [1.50.5](https://github.com/nrkno/tv-automation-package-manager/compare/v1.50.4...v1.50.5) (2024-04-09)
715

816
**Note:** Version bump only for package @quantel-http-transformer-proxy/app

apps/quantel-http-transformer-proxy/app/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@quantel-http-transformer-proxy/app",
3-
"version": "1.50.6",
3+
"version": "1.51.0-alpha.0",
44
"description": "Proxy for a Quantel HTTP Transformer",
55
"private": true,
66
"scripts": {
@@ -10,7 +10,7 @@
1010
"start": "node dist/index.js"
1111
},
1212
"dependencies": {
13-
"@quantel-http-transformer-proxy/generic": "1.50.6"
13+
"@quantel-http-transformer-proxy/generic": "1.51.0-alpha.0"
1414
},
1515
"prettier": "@sofie-automation/code-standard-preset/.prettierrc.json",
1616
"engines": {

apps/quantel-http-transformer-proxy/packages/generic/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [1.51.0-alpha.0](https://github.com/nrkno/sofie-package-manager/compare/v1.50.7...v1.51.0-alpha.0) (2025-01-08)
7+
8+
**Note:** Version bump only for package @quantel-http-transformer-proxy/generic
9+
10+
11+
12+
13+
614
# [1.50.5](https://github.com/nrkno/tv-automation-package-manager/compare/v1.50.4...v1.50.5) (2024-04-09)
715

816
**Note:** Version bump only for package @quantel-http-transformer-proxy/generic

0 commit comments

Comments
 (0)