@emartech/program-executor 3.15.0 → 3.16.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/main.yaml +2 -2
- package/.nvmrc +1 -1
- package/docker-compose.yml +1 -1
- package/package.json +5 -5
- package/src/index-pubsub-e2e.test.js +1 -3
|
@@ -40,10 +40,10 @@ jobs:
|
|
|
40
40
|
gcloud beta emulators pubsub start --project=some-project-id --host-port=0.0.0.0:8085 &
|
|
41
41
|
- name: Check out repository
|
|
42
42
|
uses: actions/checkout@v4
|
|
43
|
-
- name: Use Node
|
|
43
|
+
- name: Use Node 24.12.0 version
|
|
44
44
|
uses: actions/setup-node@v3
|
|
45
45
|
with:
|
|
46
|
-
node-version: "
|
|
46
|
+
node-version: "24.12.0"
|
|
47
47
|
- name: Set NPM token
|
|
48
48
|
run: npm config set '//registry.npmjs.org/:_authToken' "${{ env.NPM_TOKEN }}"
|
|
49
49
|
- name: npm dependencies
|
package/.nvmrc
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
24.12.0
|
package/docker-compose.yml
CHANGED
package/package.json
CHANGED
|
@@ -20,24 +20,24 @@
|
|
|
20
20
|
"license": "ISC",
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@emartech/json-logger": "9.2.0",
|
|
23
|
-
"@emartech/pubsub-client-js": "^1.
|
|
23
|
+
"@emartech/pubsub-client-js": "^1.6.2",
|
|
24
24
|
"@emartech/rabbitmq-client": "5.11.0",
|
|
25
25
|
"camelcase-keys": "^6.2.2",
|
|
26
26
|
"graphql": "^16.12.0"
|
|
27
27
|
},
|
|
28
28
|
"engines": {
|
|
29
|
-
"node": "
|
|
29
|
+
"node": "24.12.0"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"dotenv": "^17.2.3",
|
|
33
|
-
"eslint": "^9.39.
|
|
33
|
+
"eslint": "^9.39.2",
|
|
34
34
|
"eslint-config-emarsys": "5.1.0",
|
|
35
35
|
"eslint-plugin-no-only-tests": "^3.3.0",
|
|
36
36
|
"eslint-plugin-security": "^3.0.1",
|
|
37
37
|
"jest": "29.0.0",
|
|
38
38
|
"knex": "^3.1.0",
|
|
39
|
-
"pg": "^8.
|
|
39
|
+
"pg": "^8.17.1",
|
|
40
40
|
"semantic-release": "^25.0.2"
|
|
41
41
|
},
|
|
42
|
-
"version": "3.
|
|
42
|
+
"version": "3.16.1"
|
|
43
43
|
}
|
|
@@ -103,9 +103,7 @@ describe('ProgramExecutor', function () {
|
|
|
103
103
|
tableName: 'programs',
|
|
104
104
|
topicName: topicName,
|
|
105
105
|
projectId: 'some-project-id',
|
|
106
|
-
pubSubMaxExtensionMinutes: 20
|
|
107
|
-
pubSubMinAckDeadline: 10,
|
|
108
|
-
pubSubMaxAckDeadline: {"millis":600000}
|
|
106
|
+
pubSubMaxExtensionMinutes: 20
|
|
109
107
|
};
|
|
110
108
|
const result = await e2eTestReuse.beforeEach(topicName);
|
|
111
109
|
mockConstructorSpy = result.mockConstructorSpy;
|