Skip to content

Commit 06122ab

Browse files
committed
Revert "Merge remote-tracking branch 'origin/upstream/set-next-from-here' into bbc-release52"
This reverts commit 1d3ac7f, reversing changes made to 14bad34.
1 parent 57afb68 commit 06122ab

File tree

20 files changed

+95
-155
lines changed

20 files changed

+95
-155
lines changed

meteor/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "automation-core",
3-
"version": "1.53.0-in-development",
3+
"version": "1.52.0-in-testing.0",
44
"private": true,
55
"engines": {
66
"node": ">=22.11"
@@ -103,7 +103,7 @@
103103
"eslint-plugin-node": "^11.1.0",
104104
"eslint-plugin-prettier": "^4.2.1",
105105
"fast-clone": "^1.5.13",
106-
"glob": "^11.0.1",
106+
"glob": "^8.1.0",
107107
"i18next-conv": "^10.2.0",
108108
"i18next-scanner": "^4.6.0",
109109
"jest": "^29.7.0",

meteor/scripts/extract-i18next-pot.mjs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,12 @@
2727
* SOFTWARE.
2828
*/
2929

30+
import { promisify } from 'util'
3031
import fs from 'fs'
3132
import yargs from 'yargs'
3233
import { Parser } from 'i18next-scanner'
3334
import converter from 'i18next-conv'
34-
import { glob } from 'glob'
35+
import glob from 'glob'
3536

3637
const args = yargs(process.argv)
3738
.option('files', {
@@ -65,6 +66,8 @@ const args = yargs(process.argv)
6566
.help()
6667
.alias('help', 'h').argv
6768

69+
const pGlob = promisify(glob)
70+
6871
const parserOptions = {
6972
// Include react helpers into parsing
7073
attr: {
@@ -98,7 +101,7 @@ console.log('Extracting translatable strings...')
98101
console.log('This process may print out some error messages, but the translation template should work fine.')
99102
console.log('──────\n')
100103

101-
const files = await glob(fileGlob)
104+
const files = await pGlob(fileGlob)
102105

103106
// console.debug('Loading content of ' + files.length + ' files')
104107

meteor/scripts/i18n-compile-json.mjs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
1-
import { glob } from 'glob'
1+
import { promisify } from 'util'
2+
import glob from 'glob'
23
import { spawn } from 'child_process'
34

5+
const pGlob = promisify(glob)
6+
47
/*************************************************
58
69
This script goes through all of the languages (.po files)
@@ -11,7 +14,7 @@ and compiles the json-files (used in production).
1114
const errors = []
1215
const failedLanguages = []
1316
// List all po-files:
14-
const poFiles = await glob('./i18n/*.po')
17+
const poFiles = await pGlob('./i18n/*.po')
1518

1619
const languages = []
1720
for (const poFile of poFiles) {

meteor/server/migration/currentSystemVersion.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,7 @@
5151
* 1.50.0: Release 50 (2024-02-23)
5252
* 1.51.0: Release 51 (TBD)
5353
* 1.52.0: Release 52 (TBD)
54-
* 1.53.0: Release 53 (TBD)
5554
*/
5655

5756
// Note: Only set this to release versions, (ie X.Y.Z), not pre-releases (ie X.Y.Z-0-pre-release)
58-
export const CURRENT_SYSTEM_VERSION = '1.53.0'
57+
export const CURRENT_SYSTEM_VERSION = '1.52.0'

meteor/yarn.lock

Lines changed: 11 additions & 76 deletions
Original file line numberDiff line numberDiff line change
@@ -1078,7 +1078,7 @@ __metadata:
10781078
version: 0.0.0-use.local
10791079
resolution: "@sofie-automation/blueprints-integration@portal:../packages/blueprints-integration::locator=automation-core%40workspace%3A."
10801080
dependencies:
1081-
"@sofie-automation/shared-lib": "npm:1.53.0-in-development"
1081+
"@sofie-automation/shared-lib": "npm:1.52.0-in-testing.0"
10821082
tslib: "npm:^2.8.1"
10831083
type-fest: "npm:^4.33.0"
10841084
languageName: node
@@ -1119,8 +1119,8 @@ __metadata:
11191119
version: 0.0.0-use.local
11201120
resolution: "@sofie-automation/corelib@portal:../packages/corelib::locator=automation-core%40workspace%3A."
11211121
dependencies:
1122-
"@sofie-automation/blueprints-integration": "npm:1.53.0-in-development"
1123-
"@sofie-automation/shared-lib": "npm:1.53.0-in-development"
1122+
"@sofie-automation/blueprints-integration": "npm:1.52.0-in-testing.0"
1123+
"@sofie-automation/shared-lib": "npm:1.52.0-in-testing.0"
11241124
fast-clone: "npm:^1.5.13"
11251125
i18next: "npm:^21.10.0"
11261126
influx: "npm:^5.9.7"
@@ -1151,9 +1151,9 @@ __metadata:
11511151
resolution: "@sofie-automation/job-worker@portal:../packages/job-worker::locator=automation-core%40workspace%3A."
11521152
dependencies:
11531153
"@slack/webhook": "npm:^7.0.4"
1154-
"@sofie-automation/blueprints-integration": "npm:1.53.0-in-development"
1155-
"@sofie-automation/corelib": "npm:1.53.0-in-development"
1156-
"@sofie-automation/shared-lib": "npm:1.53.0-in-development"
1154+
"@sofie-automation/blueprints-integration": "npm:1.52.0-in-testing.0"
1155+
"@sofie-automation/corelib": "npm:1.52.0-in-testing.0"
1156+
"@sofie-automation/shared-lib": "npm:1.52.0-in-testing.0"
11571157
amqplib: "npm:^0.10.5"
11581158
deepmerge: "npm:^4.3.1"
11591159
elastic-apm-node: "npm:^4.11.0"
@@ -1173,9 +1173,9 @@ __metadata:
11731173
resolution: "@sofie-automation/meteor-lib@portal:../packages/meteor-lib::locator=automation-core%40workspace%3A."
11741174
dependencies:
11751175
"@mos-connection/helper": "npm:^4.2.2"
1176-
"@sofie-automation/blueprints-integration": "npm:1.53.0-in-development"
1177-
"@sofie-automation/corelib": "npm:1.53.0-in-development"
1178-
"@sofie-automation/shared-lib": "npm:1.53.0-in-development"
1176+
"@sofie-automation/blueprints-integration": "npm:1.52.0-in-testing.0"
1177+
"@sofie-automation/corelib": "npm:1.52.0-in-testing.0"
1178+
"@sofie-automation/shared-lib": "npm:1.52.0-in-testing.0"
11791179
deep-extend: "npm:0.6.0"
11801180
semver: "npm:^7.6.3"
11811181
type-fest: "npm:^4.33.0"
@@ -2259,7 +2259,7 @@ __metadata:
22592259
eslint-plugin-node: "npm:^11.1.0"
22602260
eslint-plugin-prettier: "npm:^4.2.1"
22612261
fast-clone: "npm:^1.5.13"
2262-
glob: "npm:^11.0.1"
2262+
glob: "npm:^8.1.0"
22632263
i18next: "npm:^21.10.0"
22642264
i18next-conv: "npm:^10.2.0"
22652265
i18next-scanner: "npm:^4.6.0"
@@ -5098,22 +5098,6 @@ __metadata:
50985098
languageName: node
50995099
linkType: hard
51005100

5101-
"glob@npm:^11.0.1":
5102-
version: 11.0.1
5103-
resolution: "glob@npm:11.0.1"
5104-
dependencies:
5105-
foreground-child: "npm:^3.1.0"
5106-
jackspeak: "npm:^4.0.1"
5107-
minimatch: "npm:^10.0.0"
5108-
minipass: "npm:^7.1.2"
5109-
package-json-from-dist: "npm:^1.0.0"
5110-
path-scurry: "npm:^2.0.0"
5111-
bin:
5112-
glob: dist/esm/bin.mjs
5113-
checksum: 10/57b12a05cc25f1c38f3b24cf6ea7a8bacef11e782c4b9a8c5b0bef3e6c5bcb8c4548cb31eb4115592e0490a024c1bde7359c470565608dd061d3b21179740457
5114-
languageName: node
5115-
linkType: hard
5116-
51175101
"glob@npm:^7.0.0, glob@npm:^7.1.1, glob@npm:^7.1.3, glob@npm:^7.1.4":
51185102
version: 7.2.3
51195103
resolution: "glob@npm:7.2.3"
@@ -5128,7 +5112,7 @@ __metadata:
51285112
languageName: node
51295113
linkType: hard
51305114

5131-
"glob@npm:^8.0.1":
5115+
"glob@npm:^8.0.1, glob@npm:^8.1.0":
51325116
version: 8.1.0
51335117
resolution: "glob@npm:8.1.0"
51345118
dependencies:
@@ -6190,15 +6174,6 @@ __metadata:
61906174
languageName: node
61916175
linkType: hard
61926176

6193-
"jackspeak@npm:^4.0.1":
6194-
version: 4.0.2
6195-
resolution: "jackspeak@npm:4.0.2"
6196-
dependencies:
6197-
"@isaacs/cliui": "npm:^8.0.2"
6198-
checksum: 10/d9722f0e55f6c322c57aedf094c405f4201b834204629817187953988075521cfddb23df83e2a7b845723ca7eb0555068c5ce1556732e9c275d32a531881efa8
6199-
languageName: node
6200-
linkType: hard
6201-
62026177
"jake@npm:^10.8.5":
62036178
version: 10.9.2
62046179
resolution: "jake@npm:10.9.2"
@@ -7118,13 +7093,6 @@ __metadata:
71187093
languageName: node
71197094
linkType: hard
71207095

7121-
"lru-cache@npm:^11.0.0":
7122-
version: 11.0.2
7123-
resolution: "lru-cache@npm:11.0.2"
7124-
checksum: 10/25fcb66e9d91eaf17227c6abfe526a7bed5903de74f93bfde380eb8a13410c5e8d3f14fe447293f3f322a7493adf6f9f015c6f1df7a235ff24ec30f366e1c058
7125-
languageName: node
7126-
linkType: hard
7127-
71287096
"lru-cache@npm:^5.1.1":
71297097
version: 5.1.1
71307098
resolution: "lru-cache@npm:5.1.1"
@@ -7494,15 +7462,6 @@ __metadata:
74947462
languageName: node
74957463
linkType: hard
74967464

7497-
"minimatch@npm:^10.0.0":
7498-
version: 10.0.1
7499-
resolution: "minimatch@npm:10.0.1"
7500-
dependencies:
7501-
brace-expansion: "npm:^2.0.1"
7502-
checksum: 10/082e7ccbc090d5f8c4e4e029255d5a1d1e3af37bda837da2b8b0085b1503a1210c91ac90d9ebfe741d8a5f286ece820a1abb4f61dc1f82ce602a055d461d93f3
7503-
languageName: node
7504-
linkType: hard
7505-
75067465
"minimatch@npm:^3.0.4, minimatch@npm:^3.0.5, minimatch@npm:^3.1.1, minimatch@npm:^3.1.2":
75077466
version: 3.1.2
75087467
resolution: "minimatch@npm:3.1.2"
@@ -7637,13 +7596,6 @@ __metadata:
76377596
languageName: node
76387597
linkType: hard
76397598

7640-
"minipass@npm:^7.1.2":
7641-
version: 7.1.2
7642-
resolution: "minipass@npm:7.1.2"
7643-
checksum: 10/c25f0ee8196d8e6036661104bacd743785b2599a21de5c516b32b3fa2b83113ac89a2358465bc04956baab37ffb956ae43be679b2262bf7be15fce467ccd7950
7644-
languageName: node
7645-
linkType: hard
7646-
76477599
"minizlib@npm:^2.1.1, minizlib@npm:^2.1.2":
76487600
version: 2.1.2
76497601
resolution: "minizlib@npm:2.1.2"
@@ -8403,13 +8355,6 @@ __metadata:
84038355
languageName: node
84048356
linkType: hard
84058357

8406-
"package-json-from-dist@npm:^1.0.0":
8407-
version: 1.0.1
8408-
resolution: "package-json-from-dist@npm:1.0.1"
8409-
checksum: 10/58ee9538f2f762988433da00e26acc788036914d57c71c246bf0be1b60cdbd77dd60b6a3e1a30465f0b248aeb80079e0b34cb6050b1dfa18c06953bb1cbc7602
8410-
languageName: node
8411-
linkType: hard
8412-
84138358
"pako@npm:~1.0.5":
84148359
version: 1.0.11
84158360
resolution: "pako@npm:1.0.11"
@@ -8542,16 +8487,6 @@ __metadata:
85428487
languageName: node
85438488
linkType: hard
85448489

8545-
"path-scurry@npm:^2.0.0":
8546-
version: 2.0.0
8547-
resolution: "path-scurry@npm:2.0.0"
8548-
dependencies:
8549-
lru-cache: "npm:^11.0.0"
8550-
minipass: "npm:^7.1.2"
8551-
checksum: 10/285ae0c2d6c34ae91dc1d5378ede21981c9a2f6de1ea9ca5a88b5a270ce9763b83dbadc7a324d512211d8d36b0c540427d3d0817030849d97a60fa840a2c59ec
8552-
languageName: node
8553-
linkType: hard
8554-
85558490
"path-to-regexp@npm:^6.3.0":
85568491
version: 6.3.0
85578492
resolution: "path-to-regexp@npm:6.3.0"

packages/blueprints-integration/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sofie-automation/blueprints-integration",
3-
"version": "1.53.0-in-development",
3+
"version": "1.52.0-in-testing.0",
44
"description": "Library to define the interaction between core and the blueprints.",
55
"main": "dist/index.js",
66
"typings": "dist/index.d.ts",
@@ -38,7 +38,7 @@
3838
"/LICENSE"
3939
],
4040
"dependencies": {
41-
"@sofie-automation/shared-lib": "1.53.0-in-development",
41+
"@sofie-automation/shared-lib": "1.52.0-in-testing.0",
4242
"tslib": "^2.8.1",
4343
"type-fest": "^4.33.0"
4444
},

packages/corelib/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sofie-automation/corelib",
3-
"version": "1.53.0-in-development",
3+
"version": "1.52.0-in-testing.0",
44
"private": true,
55
"description": "Internal library for some types shared by core and workers",
66
"main": "dist/index.js",
@@ -39,8 +39,8 @@
3939
"/LICENSE"
4040
],
4141
"dependencies": {
42-
"@sofie-automation/blueprints-integration": "1.53.0-in-development",
43-
"@sofie-automation/shared-lib": "1.53.0-in-development",
42+
"@sofie-automation/blueprints-integration": "1.52.0-in-testing.0",
43+
"@sofie-automation/shared-lib": "1.52.0-in-testing.0",
4444
"fast-clone": "^1.5.13",
4545
"i18next": "^21.10.0",
4646
"influx": "^5.9.7",

packages/documentation/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sofie-documentation",
3-
"version": "1.53.0-in-development",
3+
"version": "1.52.0-in-testing.0",
44
"private": true,
55
"scripts": {
66
"docusaurus": "docusaurus",

packages/job-worker/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sofie-automation/job-worker",
3-
"version": "1.53.0-in-development",
3+
"version": "1.52.0-in-testing.0",
44
"description": "Worker for things",
55
"main": "dist/index.js",
66
"license": "MIT",
@@ -41,9 +41,9 @@
4141
],
4242
"dependencies": {
4343
"@slack/webhook": "^7.0.4",
44-
"@sofie-automation/blueprints-integration": "1.53.0-in-development",
45-
"@sofie-automation/corelib": "1.53.0-in-development",
46-
"@sofie-automation/shared-lib": "1.53.0-in-development",
44+
"@sofie-automation/blueprints-integration": "1.52.0-in-testing.0",
45+
"@sofie-automation/corelib": "1.52.0-in-testing.0",
46+
"@sofie-automation/shared-lib": "1.52.0-in-testing.0",
4747
"amqplib": "^0.10.5",
4848
"deepmerge": "^4.3.1",
4949
"elastic-apm-node": "^4.11.0",

packages/lerna.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.53.0-in-development",
3-
"npmClient": "yarn",
4-
"$schema": "node_modules/lerna/schemas/lerna-schema.json"
5-
}
2+
"version": "1.52.0-in-testing.0",
3+
"npmClient": "yarn",
4+
"$schema": "node_modules/lerna/schemas/lerna-schema.json"
5+
}

0 commit comments

Comments
 (0)