@emartech/program-executor 3.14.0 → 3.15.0

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.
@@ -7,7 +7,7 @@ on:
7
7
  branches: [main]
8
8
 
9
9
  env:
10
- NPM_TOKEN: ${{ secrets.NPM_PUBLISHER_TOKEN }}
10
+ NPM_TOKEN: ${{ github.actor == 'dependabot[bot]' && secrets.NPM_DEPLOYER_TOKEN || secrets.NPM_PUBLISHER_TOKEN }}
11
11
  GH_TOKEN: ${{ secrets.GH_TOKEN }}
12
12
  CI_REPO_NAME: ${{ github.repository }}
13
13
  CI_COMMIT_ID: ${{ github.sha }}
@@ -61,6 +61,8 @@ jobs:
61
61
  PUBSUB_TIMEOUT: 2000
62
62
 
63
63
  dependabot-auto-merge:
64
+ if: ${{ vars.DEPENDABOT_AUTO_MERGE == 'true' }}
65
+
64
66
  needs: test
65
67
  runs-on: ubuntu-latest
66
68
 
package/package.json CHANGED
@@ -19,25 +19,25 @@
19
19
  "author": "team-shopify@emarsys.com",
20
20
  "license": "ISC",
21
21
  "dependencies": {
22
- "@emartech/json-logger": "9.1.0",
23
- "@emartech/pubsub-client-js": "^1.2.7",
24
- "@emartech/rabbitmq-client": "5.9.1",
22
+ "@emartech/json-logger": "9.2.0",
23
+ "@emartech/pubsub-client-js": "^1.5.0",
24
+ "@emartech/rabbitmq-client": "5.11.0",
25
25
  "camelcase-keys": "^6.2.2",
26
- "graphql": "^16.11.0"
26
+ "graphql": "^16.12.0"
27
27
  },
28
28
  "engines": {
29
29
  "node": "20.18.0"
30
30
  },
31
31
  "devDependencies": {
32
- "dotenv": "^17.2.1",
33
- "eslint": "^9.34.0",
32
+ "dotenv": "^17.2.3",
33
+ "eslint": "^9.39.1",
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
39
  "pg": "^8.16.3",
40
- "semantic-release": "^24.2.0"
40
+ "semantic-release": "^25.0.2"
41
41
  },
42
- "version": "3.14.0"
42
+ "version": "3.15.0"
43
43
  }