@mojaloop/ml-testing-toolkit-client-lib 1.9.1 → 1.10.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/.grype.yaml ADDED
@@ -0,0 +1,16 @@
1
+ ignore:
2
+ # Ignore cross-spawn vulnerabilities by CVE ID due to false positive
3
+ # as grype looks at package-lock.json where it shows versions with
4
+ # vulnerabilities, npm ls shows only 7.0.6 verion is used
5
+
6
+
7
+ # Set output format defaults
8
+ output:
9
+ - "table"
10
+ - "json"
11
+
12
+ # Modify your CircleCI job to check critical count
13
+ search:
14
+ scope: "squashed"
15
+ quiet: false
16
+ check-for-app-update: false
package/.nvmrc CHANGED
@@ -1 +1 @@
1
- 18.20.4
1
+ 22.15.1
package/CHANGELOG.md CHANGED
@@ -2,6 +2,20 @@
2
2
 
3
3
  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.
4
4
 
5
+ ### [1.10.1](https://github.com/mojaloop/ml-testing-toolkit-client-lib/compare/v1.10.0...v1.10.1) (2025-07-17)
6
+
7
+
8
+ ### Chore
9
+
10
+ * add initial sbom ([#31](https://github.com/mojaloop/ml-testing-toolkit-client-lib/issues/31)) ([fd401c3](https://github.com/mojaloop/ml-testing-toolkit-client-lib/commit/fd401c3fe7b3d875919a0aba7ef58b98a77b28ea))
11
+
12
+ ## [1.10.0](https://github.com/mojaloop/ml-testing-toolkit-client-lib/compare/v1.9.1...v1.10.0) (2025-06-01)
13
+
14
+
15
+ ### Features
16
+
17
+ * bump up the node version to v22.15.1 and fix dangling jest test ([#30](https://github.com/mojaloop/ml-testing-toolkit-client-lib/issues/30)) ([ae569bb](https://github.com/mojaloop/ml-testing-toolkit-client-lib/commit/ae569bb43cf210b982fde4ef71be682bd6172327))
18
+
5
19
  ### [1.9.1](https://github.com/mojaloop/ml-testing-toolkit-client-lib/compare/v1.9.0...v1.9.1) (2025-03-25)
6
20
 
7
21
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mojaloop/ml-testing-toolkit-client-lib",
3
3
  "description": "Testing Toolkit Client Library",
4
- "version": "1.9.1",
4
+ "version": "1.10.1",
5
5
  "license": "Apache-2.0",
6
6
  "author": "Vijaya Kumar Guthi, ModusBox Inc. ",
7
7
  "contributors": [
@@ -17,7 +17,7 @@
17
17
  },
18
18
  "bugs": "https://github.com/mojaloop/ml-testing-toolkit-client-lib/issues",
19
19
  "engines": {
20
- "node": ">=18.x"
20
+ "node": ">=22.x"
21
21
  },
22
22
  "config": {},
23
23
  "bin": {
@@ -36,7 +36,10 @@
36
36
  ]
37
37
  },
38
38
  "pre-commit": [
39
- "standard"
39
+ "lint",
40
+ "dep:check",
41
+ "audit:check",
42
+ "test"
40
43
  ],
41
44
  "scripts": {
42
45
  "start": "node src/index.js",
@@ -48,7 +51,10 @@
48
51
  "test:coverage": "jest --coverage --coverageThreshold='{}' --testMatch '**/test/unit/**/*.test.js'",
49
52
  "test:coverage-check": "jest --coverage --testMatch '**/test/unit/**/*.test.js'",
50
53
  "test:junit": "jest --reporters=default --reporters=jest-junit --testMatch '**/test/unit/**/*.test.js'",
51
- "test:integration": "./test/integration-runner.sh ",
54
+ "test:int1": "./test/integration-runner.sh ",
55
+ "test:integration": "echo 'integration tests not defined'",
56
+ "test:functional": "echo 'functional tests not defined'",
57
+ "test:xunit": "npm run test:unit",
52
58
  "cover": "npx nyc --all report --reporter=lcov npm run test",
53
59
  "lint": "npm run standard",
54
60
  "lint:fix": "npm run standard:fix",
@@ -63,16 +69,16 @@
63
69
  "snapshot": "npx standard-version --no-verify --skip.changelog --prerelease snapshot --releaseCommitMessageFormat 'chore(snapshot): {{currentTag}}'"
64
70
  },
65
71
  "dependencies": {
66
- "@mojaloop/central-services-logger": "11.7.0",
67
- "@mojaloop/ml-testing-toolkit-shared-lib": "14.0.4",
68
- "@mojaloop/sdk-standard-components": "19.11.0",
72
+ "@mojaloop/central-services-logger": "11.9.0",
73
+ "@mojaloop/ml-testing-toolkit-shared-lib": "14.2.0",
74
+ "@mojaloop/sdk-standard-components": "19.16.0",
69
75
  "@slack/webhook": "7.0.5",
70
76
  "atob": "2.1.2",
71
77
  "aws-sdk": "2.1692.0",
72
- "axios": "1.8.4",
78
+ "axios": "1.10.0",
73
79
  "cli-table3": "0.6.5",
74
- "commander": "13.1.0",
75
- "dotenv": "16.4.7",
80
+ "commander": "14.0.0",
81
+ "dotenv": "17.2.0",
76
82
  "fs": "0.0.1-security",
77
83
  "lodash": "4.17.21",
78
84
  "mv": "2.1.1",
@@ -85,14 +91,14 @@
85
91
  },
86
92
  "devDependencies": {
87
93
  "audit-ci": "7.1.0",
88
- "jest": "29.7.0",
94
+ "jest": "30.0.4",
89
95
  "jest-junit": "16.0.0",
90
- "npm-check-updates": "17.1.16",
96
+ "npm-check-updates": "18.0.1",
91
97
  "nyc": "17.1.0",
92
98
  "parse-strings-in-object": "1.6.0",
93
99
  "pre-commit": "1.2.2",
94
100
  "replace": "1.2.2",
95
- "sinon": "20.0.0",
101
+ "sinon": "21.0.0",
96
102
  "standard": "17.1.2",
97
103
  "standard-version": "9.5.0"
98
104
  },