From bc9db819a3436774686a19d212c1fe77f89ae3bf Mon Sep 17 00:00:00 2001 From: Johan Nyman Date: Fri, 25 Nov 2022 15:05:15 +0100 Subject: [PATCH 1/3] fix: support for multiple smartbulls --- .../src/generateExpectations/nrk/smartbull.ts | 73 ++++++++++--------- 1 file changed, 37 insertions(+), 36 deletions(-) diff --git a/apps/package-manager/packages/generic/src/generateExpectations/nrk/smartbull.ts b/apps/package-manager/packages/generic/src/generateExpectations/nrk/smartbull.ts index bd55a777..a7ded3a7 100644 --- a/apps/package-manager/packages/generic/src/generateExpectations/nrk/smartbull.ts +++ b/apps/package-manager/packages/generic/src/generateExpectations/nrk/smartbull.ts @@ -32,61 +32,62 @@ export function getSmartbullExpectedPackages( logger: LoggerInstance, expectedPackages: ExpectedPackageWrap[] ): ExpectedPackageWrapMediaFile[] { - let orgSmartbullExpectedPackage: ExpectedPackageWrap | undefined = undefined + const orgSmartbullExpectedPackages: ExpectedPackageWrap[] = [] // Find the smartbull package: for (const packageWrap of expectedPackages) { if (expectedPackageIsSmartbull(packageWrap)) { // hack - orgSmartbullExpectedPackage = packageWrap + orgSmartbullExpectedPackages.push(packageWrap) } } // Find smartbull source packages: - const smartbullExpectations: ExpectedPackageWrap[] = [] + const smartbullExpectations: ExpectedPackageWrapMediaFile[] = [] for (const packageWrap of expectedPackages) { if (expectedPackageIsSmartbullSource(packageWrap)) { // Set the smartbull priority: packageWrap.priority = PriorityMagnitude.PLAY_SOON - smartbullExpectations.push(packageWrap) + smartbullExpectations.push(packageWrap as ExpectedPackageWrapMediaFile) } } - // Handle Smartbull: - const smartbulls: ExpectedPackageWrapMediaFile[] = [] - if (orgSmartbullExpectedPackage && smartbullExpectations.length > 0) { - // Sort alphabetically on filePath: - smartbullExpectations.sort((a, b) => { - const expA = a.expectedPackage as ExpectedPackage.ExpectedPackageMediaFile - const expB = b.expectedPackage as ExpectedPackage.ExpectedPackageMediaFile + // Sort smartbulls alphabetically on filePath: + smartbullExpectations.sort((a, b) => { + // Lowest first: + if (a.expectedPackage.content.filePath > b.expectedPackage.content.filePath) return 1 + if (a.expectedPackage.content.filePath < b.expectedPackage.content.filePath) return -1 - // lowest first: - if (expA.content.filePath > expB.content.filePath) return 1 - if (expA.content.filePath < expB.content.filePath) return -1 + // Lowest first: (lower is better) + if (a.priority > b.priority) return 1 + if (a.priority < b.priority) return -1 - return 0 - }) - // Pick the last one: - const bestSmartbull = smartbullExpectations[smartbullExpectations.length - 1] as - | ExpectedPackageWrapMediaFile - | undefined - if (bestSmartbull) { - if (orgSmartbullExpectedPackage.expectedPackage.type === ExpectedPackage.PackageType.MEDIA_FILE) { - const org = orgSmartbullExpectedPackage as ExpectedPackageWrapMediaFile + return 0 + }) + // Pick the last one: + const bestSmartbull = + smartbullExpectations.length > 0 ? smartbullExpectations[smartbullExpectations.length - 1] : undefined - const newPackage: ExpectedPackageWrapMediaFile = { - ...org, - expectedPackage: { - ...org.expectedPackage, - // Take these from bestSmartbull: - content: bestSmartbull.expectedPackage.content, - version: {}, // Don't even use bestSmartbull.expectedPackage.version, - sources: bestSmartbull.expectedPackage.sources, - }, - } - smartbulls.push(newPackage) - } else logger.warn('orgSmartbullExpectation is not a MEDIA_FILE') - } + if (!bestSmartbull) return [] + + // Handle Smartbull: + const smartbulls: ExpectedPackageWrapMediaFile[] = [] + for (const orgSmartbullExpectedPackage of orgSmartbullExpectedPackages) { + if (orgSmartbullExpectedPackage.expectedPackage.type === ExpectedPackage.PackageType.MEDIA_FILE) { + const org = orgSmartbullExpectedPackage as ExpectedPackageWrapMediaFile + + const newPackage: ExpectedPackageWrapMediaFile = { + ...org, + expectedPackage: { + ...org.expectedPackage, + // Take these from bestSmartbull: + content: bestSmartbull.expectedPackage.content, + version: {}, // Don't even use bestSmartbull.expectedPackage.version, + sources: bestSmartbull.expectedPackage.sources, + }, + } + smartbulls.push(newPackage) + } else logger.warn('orgSmartbullExpectation is not a MEDIA_FILE') } return smartbulls } From eb4aaa36ae0a93697f38d263a6f526f82ca2077d Mon Sep 17 00:00:00 2001 From: Jan Starzak Date: Thu, 1 Dec 2022 17:19:36 +0100 Subject: [PATCH 2/3] fix: blackDetectRegex expects black_duration to be a number with a decimal point It can be an integer too. --- .../workers/windowsWorker/expectationHandlers/lib/scan.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared/packages/worker/src/worker/workers/windowsWorker/expectationHandlers/lib/scan.ts b/shared/packages/worker/src/worker/workers/windowsWorker/expectationHandlers/lib/scan.ts index b909f13d..a1945134 100644 --- a/shared/packages/worker/src/worker/workers/windowsWorker/expectationHandlers/lib/scan.ts +++ b/shared/packages/worker/src/worker/workers/windowsWorker/expectationHandlers/lib/scan.ts @@ -322,7 +322,7 @@ export function scanMoreInfo( const durationRegex = /Duration:\s?(\d+):(\d+):([\d.]+)/ const sceneRegex = /Parsed_showinfo_(.*)pts_time:([\d.]+)\s+/g const blackDetectRegex = - /(black_start:)(\d+(.\d+)?)( black_end:)(\d+(.\d+)?)( black_duration:)(\d+(.\d+))?/g + /(black_start:)(\d+(.\d+)?)( black_end:)(\d+(.\d+)?)( black_duration:)(\d+(.\d+)?)/g const freezeDetectStart = /(lavfi\.freezedetect\.freeze_start: )(\d+(.\d+)?)/g const freezeDetectDuration = /(lavfi\.freezedetect\.freeze_duration: )(\d+(.\d+)?)/g const freezeDetectEnd = /(lavfi\.freezedetect\.freeze_end: )(\d+(.\d+)?)/g From d594338ccaa49264a61c755db0e69b9510683ec2 Mon Sep 17 00:00:00 2001 From: Johan Nyman Date: Mon, 5 Dec 2022 17:35:34 +0100 Subject: [PATCH 3/3] v1.39.4-alpha.0 --- CHANGELOG.md | 13 +++++++++++++ apps/appcontainer-node/app/CHANGELOG.md | 8 ++++++++ apps/appcontainer-node/app/package.json | 4 ++-- .../appcontainer-node/packages/generic/CHANGELOG.md | 8 ++++++++ .../appcontainer-node/packages/generic/package.json | 4 ++-- apps/package-manager/app/CHANGELOG.md | 8 ++++++++ apps/package-manager/app/package.json | 4 ++-- apps/package-manager/packages/generic/CHANGELOG.md | 11 +++++++++++ apps/package-manager/packages/generic/package.json | 6 +++--- apps/single-app/app/CHANGELOG.md | 8 ++++++++ apps/single-app/app/package.json | 8 ++++---- apps/worker/app/CHANGELOG.md | 8 ++++++++ apps/worker/app/package.json | 4 ++-- apps/worker/packages/generic/CHANGELOG.md | 8 ++++++++ apps/worker/packages/generic/package.json | 4 ++-- lerna.json | 2 +- shared/packages/expectationManager/CHANGELOG.md | 8 ++++++++ shared/packages/expectationManager/package.json | 4 ++-- shared/packages/worker/CHANGELOG.md | 11 +++++++++++ shared/packages/worker/package.json | 2 +- tests/internal-tests/CHANGELOG.md | 8 ++++++++ tests/internal-tests/package.json | 8 ++++---- 22 files changed, 124 insertions(+), 25 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 71831705..2689a01d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,19 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.39.4-alpha.0](https://github.com/nrkno/tv-automation-package-manager/compare/v1.39.3...v1.39.4-alpha.0) (2022-12-05) + + +### Bug Fixes + +* blackDetectRegex expects black_duration to be a number with a decimal point ([eb4aaa3](https://github.com/nrkno/tv-automation-package-manager/commit/eb4aaa36ae0a93697f38d263a6f526f82ca2077d)) +* blackDetectRegex expects black_duration to be a number with a decimal point ([#19](https://github.com/nrkno/tv-automation-package-manager/issues/19)) ([bb23fba](https://github.com/nrkno/tv-automation-package-manager/commit/bb23fba5dd9ffb97ee8791bd3342bbf0e482aa73)) +* support for multiple smartbulls ([bc9db81](https://github.com/nrkno/tv-automation-package-manager/commit/bc9db819a3436774686a19d212c1fe77f89ae3bf)) + + + + + ## [1.39.3](https://github.com/nrkno/tv-automation-package-manager/compare/v1.39.2...v1.39.3) (2022-11-30) diff --git a/apps/appcontainer-node/app/CHANGELOG.md b/apps/appcontainer-node/app/CHANGELOG.md index 094e7458..726f42f8 100644 --- a/apps/appcontainer-node/app/CHANGELOG.md +++ b/apps/appcontainer-node/app/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.39.4-alpha.0](https://github.com/nrkno/tv-automation-package-manager/compare/v1.39.3...v1.39.4-alpha.0) (2022-12-05) + +**Note:** Version bump only for package @appcontainer-node/app + + + + + ## [1.39.3](https://github.com/nrkno/tv-automation-package-manager/compare/v1.39.2...v1.39.3) (2022-11-30) **Note:** Version bump only for package @appcontainer-node/app diff --git a/apps/appcontainer-node/app/package.json b/apps/appcontainer-node/app/package.json index 53619d3a..6a0be10f 100644 --- a/apps/appcontainer-node/app/package.json +++ b/apps/appcontainer-node/app/package.json @@ -1,6 +1,6 @@ { "name": "@appcontainer-node/app", - "version": "1.39.3", + "version": "1.39.4-alpha.0", "description": "AppContainer-Node.js", "private": true, "scripts": { @@ -16,7 +16,7 @@ "nexe": "^3.3.7" }, "dependencies": { - "@appcontainer-node/generic": "1.39.3" + "@appcontainer-node/generic": "1.39.4-alpha.0" }, "peerDependencies": { "@sofie-automation/blueprints-integration": "*" diff --git a/apps/appcontainer-node/packages/generic/CHANGELOG.md b/apps/appcontainer-node/packages/generic/CHANGELOG.md index 208cba1a..efb63c2e 100644 --- a/apps/appcontainer-node/packages/generic/CHANGELOG.md +++ b/apps/appcontainer-node/packages/generic/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.39.4-alpha.0](https://github.com/nrkno/tv-automation-package-manager/compare/v1.39.3...v1.39.4-alpha.0) (2022-12-05) + +**Note:** Version bump only for package @appcontainer-node/generic + + + + + ## [1.39.3](https://github.com/nrkno/tv-automation-package-manager/compare/v1.39.2...v1.39.3) (2022-11-30) **Note:** Version bump only for package @appcontainer-node/generic diff --git a/apps/appcontainer-node/packages/generic/package.json b/apps/appcontainer-node/packages/generic/package.json index 2119d8f0..2582229b 100644 --- a/apps/appcontainer-node/packages/generic/package.json +++ b/apps/appcontainer-node/packages/generic/package.json @@ -1,6 +1,6 @@ { "name": "@appcontainer-node/generic", - "version": "1.39.3", + "version": "1.39.4-alpha.0", "private": true, "main": "dist/index.js", "types": "dist/index.d.ts", @@ -15,7 +15,7 @@ }, "dependencies": { "@sofie-package-manager/api": "1.39.2", - "@sofie-package-manager/worker": "1.39.3", + "@sofie-package-manager/worker": "1.39.4-alpha.0", "underscore": "^1.12.0" }, "devDependencies": { diff --git a/apps/package-manager/app/CHANGELOG.md b/apps/package-manager/app/CHANGELOG.md index 95822194..f1a493e3 100644 --- a/apps/package-manager/app/CHANGELOG.md +++ b/apps/package-manager/app/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.39.4-alpha.0](https://github.com/nrkno/tv-automation-package-manager/compare/v1.39.3...v1.39.4-alpha.0) (2022-12-05) + +**Note:** Version bump only for package @package-manager/app + + + + + ## [1.39.3](https://github.com/nrkno/tv-automation-package-manager/compare/v1.39.2...v1.39.3) (2022-11-30) **Note:** Version bump only for package @package-manager/app diff --git a/apps/package-manager/app/package.json b/apps/package-manager/app/package.json index c7371488..3f79eb61 100644 --- a/apps/package-manager/app/package.json +++ b/apps/package-manager/app/package.json @@ -1,6 +1,6 @@ { "name": "@package-manager/app", - "version": "1.39.3", + "version": "1.39.4-alpha.0", "private": true, "scripts": { "build": "rimraf dist && yarn build:main", @@ -15,7 +15,7 @@ "nexe": "^3.3.7" }, "dependencies": { - "@package-manager/generic": "1.39.3" + "@package-manager/generic": "1.39.4-alpha.0" }, "peerDependencies": { "@sofie-automation/blueprints-integration": "*" diff --git a/apps/package-manager/packages/generic/CHANGELOG.md b/apps/package-manager/packages/generic/CHANGELOG.md index 7839f42d..0d195f6d 100644 --- a/apps/package-manager/packages/generic/CHANGELOG.md +++ b/apps/package-manager/packages/generic/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.39.4-alpha.0](https://github.com/nrkno/tv-automation-package-manager/compare/v1.39.3...v1.39.4-alpha.0) (2022-12-05) + + +### Bug Fixes + +* support for multiple smartbulls ([bc9db81](https://github.com/nrkno/tv-automation-package-manager/commit/bc9db819a3436774686a19d212c1fe77f89ae3bf)) + + + + + ## [1.39.3](https://github.com/nrkno/tv-automation-package-manager/compare/v1.39.2...v1.39.3) (2022-11-30) **Note:** Version bump only for package @package-manager/generic diff --git a/apps/package-manager/packages/generic/package.json b/apps/package-manager/packages/generic/package.json index 5873e376..67a86e8f 100644 --- a/apps/package-manager/packages/generic/package.json +++ b/apps/package-manager/packages/generic/package.json @@ -1,6 +1,6 @@ { "name": "@package-manager/generic", - "version": "1.39.3", + "version": "1.39.4-alpha.0", "private": true, "main": "dist/index.js", "types": "dist/index.d.ts", @@ -16,8 +16,8 @@ }, "dependencies": { "@sofie-package-manager/api": "1.39.2", - "@sofie-package-manager/expectation-manager": "1.39.3", - "@sofie-package-manager/worker": "1.39.3", + "@sofie-package-manager/expectation-manager": "1.39.4-alpha.0", + "@sofie-package-manager/worker": "1.39.4-alpha.0", "chokidar": "^3.5.1", "deep-extend": "^0.6.0", "fast-clone": "^1.5.13", diff --git a/apps/single-app/app/CHANGELOG.md b/apps/single-app/app/CHANGELOG.md index 65f2e8d4..2b3cd6f5 100644 --- a/apps/single-app/app/CHANGELOG.md +++ b/apps/single-app/app/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.39.4-alpha.0](https://github.com/nrkno/tv-automation-package-manager/compare/v1.39.3...v1.39.4-alpha.0) (2022-12-05) + +**Note:** Version bump only for package @single-app/app + + + + + ## [1.39.3](https://github.com/nrkno/tv-automation-package-manager/compare/v1.39.2...v1.39.3) (2022-11-30) **Note:** Version bump only for package @single-app/app diff --git a/apps/single-app/app/package.json b/apps/single-app/app/package.json index 7508af62..3089c0ac 100644 --- a/apps/single-app/app/package.json +++ b/apps/single-app/app/package.json @@ -1,6 +1,6 @@ { "name": "@single-app/app", - "version": "1.39.3", + "version": "1.39.4-alpha.0", "description": "Package Manager, http-proxy etc.. all in one application", "private": true, "scripts": { @@ -16,12 +16,12 @@ "nexe": "^3.3.7" }, "dependencies": { - "@appcontainer-node/generic": "1.39.3", + "@appcontainer-node/generic": "1.39.4-alpha.0", "@http-server/generic": "1.39.2", - "@package-manager/generic": "1.39.3", + "@package-manager/generic": "1.39.4-alpha.0", "@quantel-http-transformer-proxy/generic": "1.39.2", "@sofie-package-manager/api": "1.39.2", - "@sofie-package-manager/worker": "1.39.3", + "@sofie-package-manager/worker": "1.39.4-alpha.0", "@sofie-package-manager/workforce": "1.39.2", "underscore": "^1.12.0" }, diff --git a/apps/worker/app/CHANGELOG.md b/apps/worker/app/CHANGELOG.md index 2c4f7667..93f92651 100644 --- a/apps/worker/app/CHANGELOG.md +++ b/apps/worker/app/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.39.4-alpha.0](https://github.com/nrkno/tv-automation-package-manager/compare/v1.39.3...v1.39.4-alpha.0) (2022-12-05) + +**Note:** Version bump only for package @worker/app + + + + + ## [1.39.3](https://github.com/nrkno/tv-automation-package-manager/compare/v1.39.2...v1.39.3) (2022-11-30) **Note:** Version bump only for package @worker/app diff --git a/apps/worker/app/package.json b/apps/worker/app/package.json index 786b31c7..4230001d 100644 --- a/apps/worker/app/package.json +++ b/apps/worker/app/package.json @@ -1,6 +1,6 @@ { "name": "@worker/app", - "version": "1.39.3", + "version": "1.39.4-alpha.0", "description": "Boilerplace", "private": true, "scripts": { @@ -17,7 +17,7 @@ "nexe": "^3.3.7" }, "dependencies": { - "@worker/generic": "1.39.3" + "@worker/generic": "1.39.4-alpha.0" }, "peerDependencies": { "@sofie-automation/blueprints-integration": "*" diff --git a/apps/worker/packages/generic/CHANGELOG.md b/apps/worker/packages/generic/CHANGELOG.md index e7ad2f89..8476f6d8 100644 --- a/apps/worker/packages/generic/CHANGELOG.md +++ b/apps/worker/packages/generic/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.39.4-alpha.0](https://github.com/nrkno/tv-automation-package-manager/compare/v1.39.3...v1.39.4-alpha.0) (2022-12-05) + +**Note:** Version bump only for package @worker/generic + + + + + ## [1.39.3](https://github.com/nrkno/tv-automation-package-manager/compare/v1.39.2...v1.39.3) (2022-11-30) **Note:** Version bump only for package @worker/generic diff --git a/apps/worker/packages/generic/package.json b/apps/worker/packages/generic/package.json index ade1884d..a40f6f42 100644 --- a/apps/worker/packages/generic/package.json +++ b/apps/worker/packages/generic/package.json @@ -1,6 +1,6 @@ { "name": "@worker/generic", - "version": "1.39.3", + "version": "1.39.4-alpha.0", "private": true, "main": "dist/index.js", "types": "dist/index.d.ts", @@ -15,7 +15,7 @@ }, "dependencies": { "@sofie-package-manager/api": "1.39.2", - "@sofie-package-manager/worker": "1.39.3" + "@sofie-package-manager/worker": "1.39.4-alpha.0" }, "devDependencies": { "lint-staged": "^7.2.0" diff --git a/lerna.json b/lerna.json index 775d885b..1859cebc 100644 --- a/lerna.json +++ b/lerna.json @@ -4,7 +4,7 @@ "apps/**", "tests/**" ], - "version": "1.39.3", + "version": "1.39.4-alpha.0", "npmClient": "yarn", "useWorkspaces": true } diff --git a/shared/packages/expectationManager/CHANGELOG.md b/shared/packages/expectationManager/CHANGELOG.md index 53184782..080359f7 100644 --- a/shared/packages/expectationManager/CHANGELOG.md +++ b/shared/packages/expectationManager/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.39.4-alpha.0](https://github.com/nrkno/tv-automation-package-manager/compare/v1.39.3...v1.39.4-alpha.0) (2022-12-05) + +**Note:** Version bump only for package @sofie-package-manager/expectation-manager + + + + + ## [1.39.3](https://github.com/nrkno/tv-automation-package-manager/compare/v1.39.2...v1.39.3) (2022-11-30) **Note:** Version bump only for package @sofie-package-manager/expectation-manager diff --git a/shared/packages/expectationManager/package.json b/shared/packages/expectationManager/package.json index 88a79512..360f7794 100644 --- a/shared/packages/expectationManager/package.json +++ b/shared/packages/expectationManager/package.json @@ -1,6 +1,6 @@ { "name": "@sofie-package-manager/expectation-manager", - "version": "1.39.3", + "version": "1.39.4-alpha.0", "main": "dist/index.js", "types": "dist/index.d.ts", "license": "MIT", @@ -18,7 +18,7 @@ }, "dependencies": { "@sofie-package-manager/api": "1.39.2", - "@sofie-package-manager/worker": "1.39.3", + "@sofie-package-manager/worker": "1.39.4-alpha.0", "@supercharge/promise-pool": "^1.7.0", "underscore": "^1.12.0" }, diff --git a/shared/packages/worker/CHANGELOG.md b/shared/packages/worker/CHANGELOG.md index f06f4694..cfdea2b8 100644 --- a/shared/packages/worker/CHANGELOG.md +++ b/shared/packages/worker/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.39.4-alpha.0](https://github.com/nrkno/tv-automation-package-manager/compare/v1.39.3...v1.39.4-alpha.0) (2022-12-05) + + +### Bug Fixes + +* blackDetectRegex expects black_duration to be a number with a decimal point ([#19](https://github.com/nrkno/tv-automation-package-manager/issues/19)) ([bb23fba](https://github.com/nrkno/tv-automation-package-manager/commit/bb23fba5dd9ffb97ee8791bd3342bbf0e482aa73)) + + + + + ## [1.39.3](https://github.com/nrkno/tv-automation-package-manager/compare/v1.39.2...v1.39.3) (2022-11-30) diff --git a/shared/packages/worker/package.json b/shared/packages/worker/package.json index f66536c6..98e57afb 100644 --- a/shared/packages/worker/package.json +++ b/shared/packages/worker/package.json @@ -1,6 +1,6 @@ { "name": "@sofie-package-manager/worker", - "version": "1.39.3", + "version": "1.39.4-alpha.0", "main": "dist/index.js", "types": "dist/index.d.ts", "license": "MIT", diff --git a/tests/internal-tests/CHANGELOG.md b/tests/internal-tests/CHANGELOG.md index 536d695b..db7e4dbf 100644 --- a/tests/internal-tests/CHANGELOG.md +++ b/tests/internal-tests/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.39.4-alpha.0](https://github.com/nrkno/tv-automation-package-manager/compare/v1.39.3...v1.39.4-alpha.0) (2022-12-05) + +**Note:** Version bump only for package @tests/internal-tests + + + + + ## [1.39.3](https://github.com/nrkno/tv-automation-package-manager/compare/v1.39.2...v1.39.3) (2022-11-30) **Note:** Version bump only for package @tests/internal-tests diff --git a/tests/internal-tests/package.json b/tests/internal-tests/package.json index 1896e67a..e64e7e8b 100644 --- a/tests/internal-tests/package.json +++ b/tests/internal-tests/package.json @@ -1,6 +1,6 @@ { "name": "@tests/internal-tests", - "version": "1.39.3", + "version": "1.39.4-alpha.0", "description": "Internal tests", "private": true, "scripts": { @@ -18,10 +18,10 @@ }, "dependencies": { "@http-server/generic": "1.39.2", - "@package-manager/generic": "1.39.3", + "@package-manager/generic": "1.39.4-alpha.0", "@sofie-package-manager/api": "1.39.2", - "@sofie-package-manager/expectation-manager": "1.39.3", - "@sofie-package-manager/worker": "1.39.3", + "@sofie-package-manager/expectation-manager": "1.39.4-alpha.0", + "@sofie-package-manager/worker": "1.39.4-alpha.0", "@sofie-package-manager/workforce": "1.39.2", "underscore": "^1.12.0" },