diff --git a/meteor/CHANGELOG.md b/meteor/CHANGELOG.md index d2c3a9d3ca..ab5960933e 100644 --- a/meteor/CHANGELOG.md +++ b/meteor/CHANGELOG.md @@ -2,6 +2,17 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +### [1.50.4](https://github.com/nrkno/sofie-core/compare/v1.50.3-LSG-updates...v1.50.4) (2024-07-30) + + +### Bug Fixes + +* further improve stringifyError ([0233073](https://github.com/nrkno/sofie-core/commit/02330735fd4f3b03f9bff84e4c41fb9199a4623e)) +* improve error logging: use stringifyError() ([8da63de](https://github.com/nrkno/sofie-core/commit/8da63dec44915439ea436eee9697f3774241537b)) +* **LSG:** Token "examples" does not exist when running `yarn gendocs` ([a0ea9b4](https://github.com/nrkno/sofie-core/commit/a0ea9b48997fe39e8db5ababef744c103a68509f)) +* make stringifyError handle UserError better ([e2ecc7e](https://github.com/nrkno/sofie-core/commit/e2ecc7eb48b9ad6c0d95b299d954abac577e70a7)) +* refactor VirtualElement to be a FC ([bf81baf](https://github.com/nrkno/sofie-core/commit/bf81baf9ff520ad6a9fc9b6378ce6ceeac320645)) + ### [1.50.3](https://github.com/nrkno/sofie-core/compare/v1.50.2...v1.50.3) (2024-06-24) diff --git a/meteor/package.json b/meteor/package.json index 1a565620e0..db512d753d 100644 --- a/meteor/package.json +++ b/meteor/package.json @@ -1,6 +1,6 @@ { "name": "automation-core", - "version": "1.50.3", + "version": "1.50.4", "private": true, "engines": { "node": ">=14.19.1" diff --git a/meteor/yarn.lock b/meteor/yarn.lock index 62207c18bf..b959fdb83c 100644 --- a/meteor/yarn.lock +++ b/meteor/yarn.lock @@ -2082,7 +2082,7 @@ __metadata: version: 0.0.0-use.local resolution: "@sofie-automation/blueprints-integration@portal:../packages/blueprints-integration::locator=automation-core%40workspace%3A." dependencies: - "@sofie-automation/shared-lib": 1.50.3 + "@sofie-automation/shared-lib": 1.50.4 tslib: ^2.4.0 type-fest: ^2.19.0 languageName: node @@ -2123,8 +2123,8 @@ __metadata: version: 0.0.0-use.local resolution: "@sofie-automation/corelib@portal:../packages/corelib::locator=automation-core%40workspace%3A." dependencies: - "@sofie-automation/blueprints-integration": 1.50.3 - "@sofie-automation/shared-lib": 1.50.3 + "@sofie-automation/blueprints-integration": 1.50.4 + "@sofie-automation/shared-lib": 1.50.4 fast-clone: ^1.5.13 i18next: ^21.9.1 influx: ^5.9.3 @@ -2155,9 +2155,9 @@ __metadata: resolution: "@sofie-automation/job-worker@portal:../packages/job-worker::locator=automation-core%40workspace%3A." dependencies: "@slack/webhook": ^6.1.0 - "@sofie-automation/blueprints-integration": 1.50.3 - "@sofie-automation/corelib": 1.50.3 - "@sofie-automation/shared-lib": 1.50.3 + "@sofie-automation/blueprints-integration": 1.50.4 + "@sofie-automation/corelib": 1.50.4 + "@sofie-automation/shared-lib": 1.50.4 amqplib: ^0.10.3 deepmerge: ^4.3.1 elastic-apm-node: ^3.43.0 diff --git a/packages/blueprints-integration/CHANGELOG.md b/packages/blueprints-integration/CHANGELOG.md index b547bc181f..ca99a53bf2 100644 --- a/packages/blueprints-integration/CHANGELOG.md +++ b/packages/blueprints-integration/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.50.4](https://github.com/nrkno/tv-automation-server-core/compare/v1.50.3-LSG-updates...v1.50.4) (2024-07-30) + +**Note:** Version bump only for package @sofie-automation/blueprints-integration + + + + + ## [1.50.3](https://github.com/nrkno/tv-automation-server-core/compare/v1.50.2...v1.50.3) (2024-06-24) **Note:** Version bump only for package @sofie-automation/blueprints-integration diff --git a/packages/blueprints-integration/package.json b/packages/blueprints-integration/package.json index 16bbb4b312..fde026582b 100644 --- a/packages/blueprints-integration/package.json +++ b/packages/blueprints-integration/package.json @@ -1,6 +1,6 @@ { "name": "@sofie-automation/blueprints-integration", - "version": "1.50.3", + "version": "1.50.4", "description": "Library to define the interaction between core and the blueprints.", "main": "dist/index.js", "typings": "dist/index.d.ts", @@ -38,7 +38,7 @@ "/LICENSE" ], "dependencies": { - "@sofie-automation/shared-lib": "1.50.3", + "@sofie-automation/shared-lib": "1.50.4", "tslib": "^2.4.0", "type-fest": "^2.19.0" }, diff --git a/packages/corelib/package.json b/packages/corelib/package.json index 9287cce58f..0d26799e42 100644 --- a/packages/corelib/package.json +++ b/packages/corelib/package.json @@ -1,6 +1,6 @@ { "name": "@sofie-automation/corelib", - "version": "1.50.3", + "version": "1.50.4", "private": true, "description": "Internal library for some types shared by core and workers", "main": "dist/index.js", @@ -39,8 +39,8 @@ "/LICENSE" ], "dependencies": { - "@sofie-automation/blueprints-integration": "1.50.3", - "@sofie-automation/shared-lib": "1.50.3", + "@sofie-automation/blueprints-integration": "1.50.4", + "@sofie-automation/shared-lib": "1.50.4", "fast-clone": "^1.5.13", "i18next": "^21.9.1", "influx": "^5.9.3", diff --git a/packages/documentation/package.json b/packages/documentation/package.json index f4dedc4eb5..d95532143e 100644 --- a/packages/documentation/package.json +++ b/packages/documentation/package.json @@ -1,6 +1,6 @@ { "name": "sofie-documentation", - "version": "1.50.3", + "version": "1.50.4", "private": true, "scripts": { "docusaurus": "docusaurus", diff --git a/packages/job-worker/package.json b/packages/job-worker/package.json index 7dd8b13a1c..5ce5041061 100644 --- a/packages/job-worker/package.json +++ b/packages/job-worker/package.json @@ -1,6 +1,6 @@ { "name": "@sofie-automation/job-worker", - "version": "1.50.3", + "version": "1.50.4", "description": "Worker for things", "main": "dist/index.js", "license": "MIT", @@ -41,9 +41,9 @@ ], "dependencies": { "@slack/webhook": "^6.1.0", - "@sofie-automation/blueprints-integration": "1.50.3", - "@sofie-automation/corelib": "1.50.3", - "@sofie-automation/shared-lib": "1.50.3", + "@sofie-automation/blueprints-integration": "1.50.4", + "@sofie-automation/corelib": "1.50.4", + "@sofie-automation/shared-lib": "1.50.4", "amqplib": "^0.10.3", "deepmerge": "^4.3.1", "elastic-apm-node": "^3.43.0", diff --git a/packages/lerna.json b/packages/lerna.json index 6b4655c5b3..d9f6ff6141 100644 --- a/packages/lerna.json +++ b/packages/lerna.json @@ -1,5 +1,5 @@ { - "version": "1.50.3", + "version": "1.50.4", "npmClient": "yarn", "useWorkspaces": true } diff --git a/packages/live-status-gateway/package.json b/packages/live-status-gateway/package.json index 06f772a959..e0cf67276e 100644 --- a/packages/live-status-gateway/package.json +++ b/packages/live-status-gateway/package.json @@ -1,6 +1,6 @@ { "name": "live-status-gateway", - "version": "1.50.3", + "version": "1.50.4", "private": true, "description": "Provides state from Sofie over sockets", "license": "MIT", @@ -53,10 +53,10 @@ "production" ], "dependencies": { - "@sofie-automation/blueprints-integration": "1.50.3", - "@sofie-automation/corelib": "1.50.3", - "@sofie-automation/server-core-integration": "1.50.3", - "@sofie-automation/shared-lib": "1.50.3", + "@sofie-automation/blueprints-integration": "1.50.4", + "@sofie-automation/corelib": "1.50.4", + "@sofie-automation/server-core-integration": "1.50.4", + "@sofie-automation/shared-lib": "1.50.4", "debug": "^4.3.2", "fast-clone": "^1.5.13", "influx": "^5.9.2", diff --git a/packages/mos-gateway/CHANGELOG.md b/packages/mos-gateway/CHANGELOG.md index f0dba62d33..a0ba68997e 100644 --- a/packages/mos-gateway/CHANGELOG.md +++ b/packages/mos-gateway/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.50.4](https://github.com/nrkno/tv-automation-server-core/compare/v1.50.3-LSG-updates...v1.50.4) (2024-07-30) + + +### Bug Fixes + +* improve error logging: use stringifyError() ([8da63de](https://github.com/nrkno/tv-automation-server-core/commit/8da63dec44915439ea436eee9697f3774241537b)) + + + + + ## [1.50.3](https://github.com/nrkno/tv-automation-server-core/compare/v1.50.2...v1.50.3) (2024-06-24) **Note:** Version bump only for package mos-gateway diff --git a/packages/mos-gateway/package.json b/packages/mos-gateway/package.json index ccaccf062b..76c9eadd35 100644 --- a/packages/mos-gateway/package.json +++ b/packages/mos-gateway/package.json @@ -1,6 +1,6 @@ { "name": "mos-gateway", - "version": "1.50.3", + "version": "1.50.4", "private": true, "description": "MOS-Gateway for the Sofie project", "license": "MIT", @@ -66,8 +66,8 @@ ], "dependencies": { "@mos-connection/connector": "^3.0.4", - "@sofie-automation/server-core-integration": "1.50.3", - "@sofie-automation/shared-lib": "1.50.3", + "@sofie-automation/server-core-integration": "1.50.4", + "@sofie-automation/shared-lib": "1.50.4", "tslib": "^2.4.0", "type-fest": "^2.19.0", "underscore": "^1.13.4", diff --git a/packages/openapi/package.json b/packages/openapi/package.json index 9ae630b5eb..ca2649a852 100644 --- a/packages/openapi/package.json +++ b/packages/openapi/package.json @@ -1,6 +1,6 @@ { "name": "@sofie-automation/openapi", - "version": "1.50.3", + "version": "1.50.4", "private": true, "license": "MIT", "repository": { diff --git a/packages/playout-gateway/CHANGELOG.md b/packages/playout-gateway/CHANGELOG.md index a06ce42990..51ce2aa8e7 100644 --- a/packages/playout-gateway/CHANGELOG.md +++ b/packages/playout-gateway/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.50.4](https://github.com/nrkno/tv-automation-server-core/compare/v1.50.3-LSG-updates...v1.50.4) (2024-07-30) + + +### Bug Fixes + +* improve error logging: use stringifyError() ([8da63de](https://github.com/nrkno/tv-automation-server-core/commit/8da63dec44915439ea436eee9697f3774241537b)) + + + + + ## [1.50.3](https://github.com/nrkno/tv-automation-server-core/compare/v1.50.2...v1.50.3) (2024-06-24) **Note:** Version bump only for package playout-gateway diff --git a/packages/playout-gateway/package.json b/packages/playout-gateway/package.json index a994f01ef1..8183a95b88 100644 --- a/packages/playout-gateway/package.json +++ b/packages/playout-gateway/package.json @@ -1,6 +1,6 @@ { "name": "playout-gateway", - "version": "1.50.3", + "version": "1.50.4", "private": true, "description": "Connect to Core, play stuff", "license": "MIT", @@ -56,8 +56,8 @@ "production" ], "dependencies": { - "@sofie-automation/server-core-integration": "1.50.3", - "@sofie-automation/shared-lib": "1.50.3", + "@sofie-automation/server-core-integration": "1.50.4", + "@sofie-automation/shared-lib": "1.50.4", "debug": "^4.3.3", "influx": "^5.9.3", "timeline-state-resolver": "9.0.1", diff --git a/packages/server-core-integration/CHANGELOG.md b/packages/server-core-integration/CHANGELOG.md index 0aaa4932e2..85a829f08a 100644 --- a/packages/server-core-integration/CHANGELOG.md +++ b/packages/server-core-integration/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.50.4](https://github.com/nrkno/tv-automation-server-core/compare/v1.50.3-LSG-updates...v1.50.4) (2024-07-30) + +**Note:** Version bump only for package @sofie-automation/server-core-integration + + + + + ## [1.50.3](https://github.com/nrkno/tv-automation-server-core/compare/v1.50.2...v1.50.3) (2024-06-24) **Note:** Version bump only for package @sofie-automation/server-core-integration diff --git a/packages/server-core-integration/package.json b/packages/server-core-integration/package.json index 7728a8df01..ce03404bc0 100644 --- a/packages/server-core-integration/package.json +++ b/packages/server-core-integration/package.json @@ -1,6 +1,6 @@ { "name": "@sofie-automation/server-core-integration", - "version": "1.50.3", + "version": "1.50.4", "description": "Library for connecting to Core", "main": "dist/index.js", "typings": "dist/index.d.ts", @@ -70,7 +70,7 @@ "production" ], "dependencies": { - "@sofie-automation/shared-lib": "1.50.3", + "@sofie-automation/shared-lib": "1.50.4", "ejson": "^2.2.3", "eventemitter3": "^4.0.7", "faye-websocket": "^0.11.4", diff --git a/packages/shared-lib/package.json b/packages/shared-lib/package.json index 54e3cd630f..13bcbdd014 100644 --- a/packages/shared-lib/package.json +++ b/packages/shared-lib/package.json @@ -1,6 +1,6 @@ { "name": "@sofie-automation/shared-lib", - "version": "1.50.3", + "version": "1.50.4", "description": "Library for types & values shared by core, workers and gateways", "main": "dist/index.js", "typings": "dist/index.d.ts", diff --git a/packages/yarn.lock b/packages/yarn.lock index a05ca1fe53..47a05b8d8b 100644 --- a/packages/yarn.lock +++ b/packages/yarn.lock @@ -5030,11 +5030,11 @@ __metadata: languageName: node linkType: hard -"@sofie-automation/blueprints-integration@1.50.3, @sofie-automation/blueprints-integration@workspace:blueprints-integration": +"@sofie-automation/blueprints-integration@1.50.4, @sofie-automation/blueprints-integration@workspace:blueprints-integration": version: 0.0.0-use.local resolution: "@sofie-automation/blueprints-integration@workspace:blueprints-integration" dependencies: - "@sofie-automation/shared-lib": 1.50.3 + "@sofie-automation/shared-lib": 1.50.4 tslib: ^2.4.0 type-fest: ^2.19.0 languageName: unknown @@ -5071,12 +5071,12 @@ __metadata: languageName: node linkType: hard -"@sofie-automation/corelib@1.50.3, @sofie-automation/corelib@workspace:corelib": +"@sofie-automation/corelib@1.50.4, @sofie-automation/corelib@workspace:corelib": version: 0.0.0-use.local resolution: "@sofie-automation/corelib@workspace:corelib" dependencies: - "@sofie-automation/blueprints-integration": 1.50.3 - "@sofie-automation/shared-lib": 1.50.3 + "@sofie-automation/blueprints-integration": 1.50.4 + "@sofie-automation/shared-lib": 1.50.4 fast-clone: ^1.5.13 i18next: ^21.9.1 influx: ^5.9.3 @@ -5107,9 +5107,9 @@ __metadata: resolution: "@sofie-automation/job-worker@workspace:job-worker" dependencies: "@slack/webhook": ^6.1.0 - "@sofie-automation/blueprints-integration": 1.50.3 - "@sofie-automation/corelib": 1.50.3 - "@sofie-automation/shared-lib": 1.50.3 + "@sofie-automation/blueprints-integration": 1.50.4 + "@sofie-automation/corelib": 1.50.4 + "@sofie-automation/shared-lib": 1.50.4 amqplib: ^0.10.3 deepmerge: ^4.3.1 elastic-apm-node: ^3.43.0 @@ -5139,11 +5139,11 @@ __metadata: languageName: unknown linkType: soft -"@sofie-automation/server-core-integration@1.50.3, @sofie-automation/server-core-integration@workspace:server-core-integration": +"@sofie-automation/server-core-integration@1.50.4, @sofie-automation/server-core-integration@workspace:server-core-integration": version: 0.0.0-use.local resolution: "@sofie-automation/server-core-integration@workspace:server-core-integration" dependencies: - "@sofie-automation/shared-lib": 1.50.3 + "@sofie-automation/shared-lib": 1.50.4 ejson: ^2.2.3 eventemitter3: ^4.0.7 faye-websocket: ^0.11.4 @@ -5153,7 +5153,7 @@ __metadata: languageName: unknown linkType: soft -"@sofie-automation/shared-lib@1.50.3, @sofie-automation/shared-lib@workspace:shared-lib": +"@sofie-automation/shared-lib@1.50.4, @sofie-automation/shared-lib@workspace:shared-lib": version: 0.0.0-use.local resolution: "@sofie-automation/shared-lib@workspace:shared-lib" dependencies: @@ -14992,10 +14992,10 @@ asn1@evs-broadcast/node-asn1: "@asyncapi/generator": 1.9.13 "@asyncapi/html-template": 0.26.0 "@asyncapi/nodejs-ws-template": 0.9.25 - "@sofie-automation/blueprints-integration": 1.50.3 - "@sofie-automation/corelib": 1.50.3 - "@sofie-automation/server-core-integration": 1.50.3 - "@sofie-automation/shared-lib": 1.50.3 + "@sofie-automation/blueprints-integration": 1.50.4 + "@sofie-automation/corelib": 1.50.4 + "@sofie-automation/server-core-integration": 1.50.4 + "@sofie-automation/shared-lib": 1.50.4 debug: ^4.3.2 fast-clone: ^1.5.13 influx: ^5.9.2 @@ -16076,8 +16076,8 @@ asn1@evs-broadcast/node-asn1: resolution: "mos-gateway@workspace:mos-gateway" dependencies: "@mos-connection/connector": ^3.0.4 - "@sofie-automation/server-core-integration": 1.50.3 - "@sofie-automation/shared-lib": 1.50.3 + "@sofie-automation/server-core-integration": 1.50.4 + "@sofie-automation/shared-lib": 1.50.4 tslib: ^2.4.0 type-fest: ^2.19.0 underscore: ^1.13.4 @@ -18053,8 +18053,8 @@ asn1@evs-broadcast/node-asn1: version: 0.0.0-use.local resolution: "playout-gateway@workspace:playout-gateway" dependencies: - "@sofie-automation/server-core-integration": 1.50.3 - "@sofie-automation/shared-lib": 1.50.3 + "@sofie-automation/server-core-integration": 1.50.4 + "@sofie-automation/shared-lib": 1.50.4 debug: ^4.3.3 influx: ^5.9.3 timeline-state-resolver: 9.0.1