Skip to content

Commit 9bd232e

Browse files
authored
feat: update meteor to 3.3.2 (Sofie-Automation#1529)
* feat: update meteor to 3.3.2 * feat: update nodejs to 22.20
1 parent 0ab9870 commit 9bd232e

File tree

21 files changed

+43
-42
lines changed

21 files changed

+43
-42
lines changed

.github/actions/setup-meteor/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ description: "Setup Meteor"
33
runs:
44
using: "composite"
55
steps:
6-
- run: curl "https://install.meteor.com/?release=3.1.2" | sh
6+
- run: curl "https://install.meteor.com/?release=3.3.2" | sh
77
shell: bash

.node-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
22.13.1
1+
22.20.0

meteor/.meteor/packages

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@
88

99
# but you can also edit it by hand.
1010

11-
12-
11+
12+
1313
1414

15-
[email protected].0 # The database Meteor supports right now
15+
[email protected].4 # The database Meteor supports right now
1616

17-
[email protected].10 # Enable ECMAScript2015+ syntax in app code
18-
[email protected].3 # Enable TypeScript syntax in .ts and .tsx modules
17+
[email protected].13 # Enable ECMAScript2015+ syntax in app code
18+
[email protected].6 # Enable TypeScript syntax in .ts and .tsx modules
1919

2020
[email protected] # Meteor's client-side reactive programming library
2121

meteor/.meteor/release

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
METEOR@3.1.2
1+
METEOR@3.3.2

meteor/.meteor/versions

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,49 +1,49 @@
11
2-
babel-compiler@7.11.3
2+
babel-compiler@7.12.2
33
44
55
6-
7-
6+
7+
88
99
1010
11-
11+
1212
13-
13+
1414
1515
16-
16+
1717
18-
18+
1919
20-
20+
2121
22-
22+
2323
2424
2525
26-
27-
28-
29-
26+
27+
28+
29+
3030
3131
32-
32+
3333
3434
3535
36-
npm-mongo@6.10.2
36+
npm-mongo@6.16.1
3737
3838
3939
4040
4141
4242
4343
44-
44+
4545
46-
47-
46+
47+
4848
4949

meteor/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ RUN yarn install && yarn build
1515

1616
# BUILD IMAGE
1717
FROM node:22
18-
RUN curl "https://install.meteor.com/?release=3.1.2" | sh
18+
RUN curl "https://install.meteor.com/?release=3.3.2" | sh
1919

2020
# Temporary change the NODE_ENV env variable, so that all libraries are installed:
2121
ENV NODE_ENV_TMP $NODE_ENV

meteor/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "1.53.0-in-development",
44
"private": true,
55
"engines": {
6-
"node": ">=22.13.1"
6+
"node": ">=22.20.0"
77
},
88
"scripts": {
99
"preinstall": "node -v",
@@ -119,6 +119,7 @@
119119
]
120120
},
121121
"meteor": {
122+
"modern": true,
122123
"mainModule": {
123124
"server": "server/main.ts"
124125
}

meteor/server/api/__tests__/client.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ describe('ClientAPI', () => {
119119
})
120120
describe('Call a failing method on the peripheralDevice', () => {
121121
let logMethodName = `not set yet`
122-
let promise: Promise<void>
122+
let promise: Promise<unknown>
123123
beforeAll(async () => {
124124
logMethodName = `${mockDeviceId}: ${mockFailingFunctionName}`
125125

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"license": "MIT",
55
"private": true,
66
"engines": {
7-
"node": ">=22.13.1"
7+
"node": ">=22.20.0"
88
},
99
"scripts": {
1010
"prepare": "husky",

packages/blueprints-integration/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"license-validate": "run -T sofie-licensecheck"
3030
},
3131
"engines": {
32-
"node": ">=22.13.1"
32+
"node": ">=22.20.0"
3333
},
3434
"files": [
3535
"/dist",

0 commit comments

Comments
 (0)