Skip to content

Commit e560a4c

Browse files
committed
Merge branch 'release51' into release52
2 parents 8c154af + 5bc0155 commit e560a4c

File tree

16 files changed

+99
-54
lines changed

16 files changed

+99
-54
lines changed

.github/workflows/node.yaml

Lines changed: 9 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -587,13 +587,17 @@ jobs:
587587
yarn
588588
env:
589589
CI: true
590-
- name: Run generator
590+
- name: Build OpenAPI client library
591+
run: |
592+
cd packages/openapi
593+
yarn build
594+
env:
595+
CI: true
596+
- name: Generate OpenAPI docs and server
591597
run: |
592598
cd packages/openapi
593-
594599
yarn gendocs
595600
yarn genserver
596-
yarn genclient:ts
597601
env:
598602
CI: true
599603

@@ -682,7 +686,7 @@ jobs:
682686
else
683687
# make dependencies of `determine-npm-tag` available
684688
yarn install --mode=skip-build
685-
689+
686690
cd packages
687691
PACKAGE_NAME="@sofie-automation/shared-lib"
688692
PUBLISHED_VERSION=$(yarn npm info --json $PACKAGE_NAME | jq -c '.version' -r)
@@ -700,19 +704,11 @@ jobs:
700704
yarn build
701705
env:
702706
CI: true
703-
- name: Generate OpenAPI client library
704-
if: ${{ steps.do-publish.outputs.tag }}
705-
uses: hatamiarash7/[email protected]
706-
with:
707-
generator: typescript-fetch
708-
openapi-file: ./packages/openapi/api/actions.yaml
709-
output-dir: ./packages/openapi/client/ts
710-
command-args: -p supportsES6=true
711707
- name: Build OpenAPI client library
712708
if: ${{ steps.do-publish.outputs.tag }}
713709
run: |
714710
cd packages/openapi
715-
yarn build:main
711+
yarn build
716712
env:
717713
CI: true
718714
- name: Modify dependencies to use npm packages

.github/workflows/prerelease-libs.yml

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -131,19 +131,12 @@ jobs:
131131
yarn build
132132
env:
133133
CI: true
134-
- name: Generate OpenAPI client library
135-
if: ${{ steps.do-publish.outputs.tag }}
136-
uses: hatamiarash7/[email protected]
137-
with:
138-
generator: typescript-fetch
139-
openapi-file: ./packages/openapi/api/actions.yaml
140-
output-dir: ./packages/openapi/client/ts
141-
command-args: -p supportsES6=true
134+
142135
- name: Build OpenAPI client library
143-
if: ${{ steps.do-publish.outputs.tag }}
136+
if: ${{ steps.do-publish.outputs.publish }}
144137
run: |
145138
cd packages/openapi
146-
yarn build:main
139+
yarn build
147140
env:
148141
CI: true
149142
- name: Modify dependencies to use npm packages

meteor/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@
22

33
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.
44

5+
## [1.51.0-in-testing.3](https://github.com/nrkno/sofie-core/compare/v1.51.0-in-testing.2...v1.51.0-in-testing.3) (2024-09-25)
6+
7+
## [1.51.0-in-testing.2](https://github.com/nrkno/sofie-core/compare/v1.51.0-in-testing.1...v1.51.0-in-testing.2) (2024-09-24)
8+
9+
10+
### Bug Fixes
11+
12+
* allow replacement in replaceInfinitesFromPreviousPlayhead ([ebb154d](https://github.com/nrkno/sofie-core/commit/ebb154d6b59369588da400d8d921a00e41b84dc8))
13+
* **BucketPanel:** Bucket AdLibs don't trigger when created before Rundown activation (SOFIE-3478) ([a16d977](https://github.com/nrkno/sofie-core/commit/a16d9777a301a6d7d69ea00be02b70c53cb9bdcc))
14+
* **LinePartTimeline:** make rules for findMainPiece consistent, make infinite graphics Pieces display correctly ([153d100](https://github.com/nrkno/sofie-core/commit/153d100fb659546201a654af5c566b513951df88))
15+
* **NoraFloatingInspector:** prevent Segment crash when trying to show a Piece with an invalid Nora `previewPayload` ([4a3a2e7](https://github.com/nrkno/sofie-core/commit/4a3a2e779c144b1c9e88c187cce2e5c80d34626d))
16+
* resolve an issue with prompter moving when Parts become PartInstances and the prompter position is juuuust right ([a670a73](https://github.com/nrkno/sofie-core/commit/a670a73fa6bfb8331921a2bedd9c927952cfffcf))
17+
518
## [1.51.0-in-testing.0](https://github.com/nrkno/sofie-core/compare/v1.50.4...v1.51.0-in-testing.0) (2024-08-19)
619

720

packages/blueprints-integration/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
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-in-testing.3](https://github.com/nrkno/sofie-core/compare/v1.51.0-in-testing.2...v1.51.0-in-testing.3) (2024-09-25)
7+
8+
**Note:** Version bump only for package @sofie-automation/blueprints-integration
9+
10+
11+
12+
13+
14+
# [1.51.0-in-testing.2](https://github.com/nrkno/sofie-core/compare/v1.51.0-in-testing.1...v1.51.0-in-testing.2) (2024-09-24)
15+
16+
**Note:** Version bump only for package @sofie-automation/blueprints-integration
17+
18+
19+
20+
21+
622
# [1.51.0-in-testing.1](https://github.com/nrkno/sofie-core/compare/v1.51.0-in-testing.0...v1.51.0-in-testing.1) (2024-09-06)
723

824

packages/job-worker/src/playout/timeline/piece.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ export function getPieceEnableInsidePart(
108108
if (partHasEndTime && partTimings.toPartPostroll) {
109109
if (!pieceEnable.duration) {
110110
// make sure that the control object is shortened correctly
111-
pieceEnable.duration = `#${partGroupId} - ${partTimings.toPartPostroll}`
111+
pieceEnable.end = `#${partGroupId} - ${partTimings.toPartPostroll}`
112112
}
113113
}
114114

packages/job-worker/src/playout/timeline/rundown.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,8 @@ export function buildTimelineObjsForRundown(
146146
// If there is a valid autonext out of the current part, then calculate the duration
147147
currentPartEnable.duration =
148148
partInstancesInfo.current.partInstance.part.expectedDuration +
149-
partInstancesInfo.current.calculatedTimings.toPartDelay
149+
partInstancesInfo.current.calculatedTimings.toPartDelay +
150+
partInstancesInfo.current.calculatedTimings.toPartPostroll // autonext should have the postroll added to it to not confuse the timeline
150151

151152
if (
152153
typeof currentPartEnable.start === 'number' &&

packages/lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
"version": "1.52.0-in-development",
33
"npmClient": "yarn",
44
"useWorkspaces": true
5-
}
5+
}

packages/mos-gateway/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
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-in-testing.3](https://github.com/nrkno/sofie-core/compare/v1.51.0-in-testing.2...v1.51.0-in-testing.3) (2024-09-25)
7+
8+
**Note:** Version bump only for package mos-gateway
9+
10+
11+
12+
13+
14+
# [1.51.0-in-testing.2](https://github.com/nrkno/sofie-core/compare/v1.51.0-in-testing.1...v1.51.0-in-testing.2) (2024-09-24)
15+
16+
**Note:** Version bump only for package mos-gateway
17+
18+
19+
20+
21+
622
# [1.51.0-in-testing.1](https://github.com/nrkno/sofie-core/compare/v1.51.0-in-testing.0...v1.51.0-in-testing.1) (2024-09-06)
723

824

packages/playout-gateway/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
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-in-testing.3](https://github.com/nrkno/sofie-core/compare/v1.51.0-in-testing.2...v1.51.0-in-testing.3) (2024-09-25)
7+
8+
**Note:** Version bump only for package playout-gateway
9+
10+
11+
12+
13+
14+
# [1.51.0-in-testing.2](https://github.com/nrkno/sofie-core/compare/v1.51.0-in-testing.1...v1.51.0-in-testing.2) (2024-09-24)
15+
16+
**Note:** Version bump only for package playout-gateway
17+
18+
19+
20+
21+
622
# [1.51.0-in-testing.1](https://github.com/nrkno/sofie-core/compare/v1.51.0-in-testing.0...v1.51.0-in-testing.1) (2024-09-06)
723

824

packages/server-core-integration/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
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-in-testing.3](https://github.com/nrkno/sofie-core/compare/v1.51.0-in-testing.2...v1.51.0-in-testing.3) (2024-09-25)
7+
8+
**Note:** Version bump only for package @sofie-automation/server-core-integration
9+
10+
11+
12+
13+
14+
# [1.51.0-in-testing.2](https://github.com/nrkno/sofie-core/compare/v1.51.0-in-testing.1...v1.51.0-in-testing.2) (2024-09-24)
15+
16+
**Note:** Version bump only for package @sofie-automation/server-core-integration
17+
18+
19+
20+
21+
622
# [1.51.0-in-testing.1](https://github.com/nrkno/sofie-core/compare/v1.51.0-in-testing.0...v1.51.0-in-testing.1) (2024-09-06)
723

824
**Note:** Version bump only for package @sofie-automation/server-core-integration

0 commit comments

Comments
 (0)