Skip to content

Commit 5ac7596

Browse files
committed
v1.53.0-alpha.0
1 parent 1d11901 commit 5ac7596

File tree

43 files changed

+325
-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

+325
-106
lines changed

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,27 @@
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.53.0-alpha.0](https://github.com/Sofie-Automation/sofie-package-manager/compare/v1.52.0...v1.53.0-alpha.0) (2025-09-22)
7+
8+
9+
### Bug Fixes
10+
11+
* add a `checkCompatibilityWithAccessor` accessor method, which allows PM to make an early pick of an accessor combination, and exclude certain accessor combination that ar unviable. ([acb1bb3](https://github.com/Sofie-Automation/sofie-package-manager/commit/acb1bb34eb9761e4e9ca0c561753e725d2b20bf9))
12+
* add support for streaming input data into ffmpeg ([c34c006](https://github.com/Sofie-Automation/sofie-package-manager/commit/c34c006c18977db6707d358ddcb2965047963e7b))
13+
* docker images using CMD instead of ENTRYPOINT ([#219](https://github.com/Sofie-Automation/sofie-package-manager/issues/219)) ([af7afe3](https://github.com/Sofie-Automation/sofie-package-manager/commit/af7afe319824557b8639f089c45d9811fbb711e7))
14+
* ensure the same FTP client is not used for download & upload ([8776cff](https://github.com/Sofie-Automation/sofie-package-manager/commit/8776cffe2cf664e3124600f5576d3a214bb74517))
15+
* ftp support ([f919631](https://github.com/Sofie-Automation/sofie-package-manager/commit/f919631f132a4b3df8eeae81c5436bfa0ae96583))
16+
* refactoring & fixes after code review ([2981d38](https://github.com/Sofie-Automation/sofie-package-manager/commit/2981d388ad13bd15776f53fb57502b0a7c285ea6))
17+
18+
19+
### Features
20+
21+
* add FTP accessor ([9d087f1](https://github.com/Sofie-Automation/sofie-package-manager/commit/9d087f16010abe858d849d5451d976dadce53cdc))
22+
23+
24+
25+
26+
627
# [1.52.0](https://github.com/Sofie-Automation/sofie-package-manager/compare/v1.52.0-alpha.5...v1.52.0) (2025-07-01)
728

829
**Note:** Version bump only for package package-manager-monorepo

apps/appcontainer-node/app/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
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.53.0-alpha.0](https://github.com/nrkno/sofie-package-manager/compare/v1.52.0...v1.53.0-alpha.0) (2025-09-22)
7+
8+
**Note:** Version bump only for package @appcontainer-node/app
9+
10+
11+
12+
13+
614
# [1.52.0](https://github.com/Sofie-Automation/sofie-package-manager/compare/v1.52.0-alpha.5...v1.52.0) (2025-07-01)
715

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

apps/appcontainer-node/app/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@appcontainer-node/app",
3-
"version": "1.52.0",
3+
"version": "1.53.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.52.0"
18+
"@appcontainer-node/generic": "1.53.0-alpha.0"
1919
},
2020
"prettier": "@sofie-automation/code-standard-preset/.prettierrc.json",
2121
"engines": {

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

Lines changed: 8 additions & 0 deletions
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.53.0-alpha.0](https://github.com/nrkno/sofie-package-manager/compare/v1.52.0...v1.53.0-alpha.0) (2025-09-22)
7+
8+
**Note:** Version bump only for package @appcontainer-node/generic
9+
10+
11+
12+
13+
614
# [1.52.0](https://github.com/Sofie-Automation/sofie-package-manager/compare/v1.52.0-alpha.5...v1.52.0) (2025-07-01)
715

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

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@appcontainer-node/generic",
3-
"version": "1.52.0",
3+
"version": "1.53.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.52.0",
18-
"@sofie-package-manager/worker": "1.52.0",
17+
"@sofie-package-manager/api": "1.53.0-alpha.0",
18+
"@sofie-package-manager/worker": "1.53.0-alpha.0",
1919
"underscore": "^1.12.0"
2020
},
2121
"devDependencies": {

apps/html-renderer/app/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
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.53.0-alpha.0](https://github.com/nrkno/sofie-package-manager/compare/v1.52.0...v1.53.0-alpha.0) (2025-09-22)
7+
8+
**Note:** Version bump only for package @html-renderer/app
9+
10+
11+
12+
13+
614
# [1.52.0](https://github.com/Sofie-Automation/sofie-package-manager/compare/v1.52.0-alpha.5...v1.52.0) (2025-07-01)
715

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

apps/html-renderer/app/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@html-renderer/app",
3-
"version": "1.52.0",
3+
"version": "1.53.0-alpha.0",
44
"description": "HTML-renderer",
55
"private": true,
66
"main": "dist/index.js",
@@ -26,9 +26,9 @@
2626
]
2727
},
2828
"dependencies": {
29-
"@html-renderer/generic": "1.52.0",
29+
"@html-renderer/generic": "1.53.0-alpha.0",
3030
"@sofie-automation/shared-lib": "1.52.0-nightly-release52-20250110-120624-cb59dd9.0",
31-
"@sofie-package-manager/api": "1.52.0",
31+
"@sofie-package-manager/api": "1.53.0-alpha.0",
3232
"portfinder": "^1.0.32",
3333
"tslib": "^2.1.0",
3434
"ws": "^8.17.1",

apps/html-renderer/packages/generic/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
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.53.0-alpha.0](https://github.com/nrkno/sofie-package-manager/compare/v1.52.0...v1.53.0-alpha.0) (2025-09-22)
7+
8+
**Note:** Version bump only for package @html-renderer/generic
9+
10+
11+
12+
13+
614
# [1.52.0](https://github.com/Sofie-Automation/sofie-package-manager/compare/v1.52.0-alpha.5...v1.52.0) (2025-07-01)
715

816
**Note:** Version bump only for package @html-renderer/generic

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@html-renderer/generic",
3-
"version": "1.52.0",
3+
"version": "1.53.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.52.0"
29+
"@sofie-package-manager/api": "1.53.0-alpha.0"
3030
},
3131
"devDependencies": {
3232
"rimraf": "^5.0.5"

apps/http-server/app/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
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.53.0-alpha.0](https://github.com/nrkno/sofie-package-manager/compare/v1.52.0...v1.53.0-alpha.0) (2025-09-22)
7+
8+
9+
### Bug Fixes
10+
11+
* docker images using CMD instead of ENTRYPOINT ([#219](https://github.com/nrkno/sofie-package-manager/issues/219)) ([af7afe3](https://github.com/nrkno/sofie-package-manager/commit/af7afe319824557b8639f089c45d9811fbb711e7))
12+
13+
14+
15+
16+
617
# [1.52.0](https://github.com/Sofie-Automation/sofie-package-manager/compare/v1.52.0-alpha.5...v1.52.0) (2025-07-01)
718

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

0 commit comments

Comments
 (0)