ml-testing-toolkit 18.18.0 → 18.20.0-infitx.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.
- package/.grype.yaml +12 -15
- package/CHANGELOG.md +7 -0
- package/audit-ci.jsonc +2 -1
- package/package.json +4 -4
- package/{sbom-v18.17.3.csv → sbom-v18.19.0.csv} +48 -47
- package/src/lib/api-server.js +10 -10
- package/src/lib/scripting-engines/postman-sandbox.js +9 -114
- package/src/lib/scripting-engines/vm-javascript-sandbox.js +1 -115
- package/src/lib/test-outbound/outbound-initiator.js +4 -12
package/.grype.yaml
CHANGED
|
@@ -1,28 +1,25 @@
|
|
|
1
1
|
ignore:
|
|
2
|
+
# fast-xml-parser vulnerability
|
|
2
3
|
- vulnerability: GHSA-37qj-frw5-hhjh
|
|
3
|
-
|
|
4
|
+
# lodash vulnerabilities
|
|
4
5
|
- vulnerability: GHSA-xxjr-mmjv-4gpg
|
|
5
|
-
|
|
6
|
+
# @isaacs/brace-expansion vulnerability
|
|
6
7
|
- vulnerability: GHSA-7h2j-956f-4vf2
|
|
7
|
-
|
|
8
|
+
# busybox vulnerabilities
|
|
8
9
|
- vulnerability: CVE-2025-60876
|
|
9
|
-
|
|
10
|
+
# glob vulnerabilities
|
|
10
11
|
- vulnerability: GHSA-5j98-mcp5-4vw2
|
|
11
|
-
|
|
12
|
-
reason: "glob 10.4.5→10.5.0 and 11.0.3→11.1.0"
|
|
12
|
+
# tar vulnerabilities
|
|
13
13
|
- vulnerability: GHSA-34x7-hfp2-rc4v
|
|
14
|
-
reason: "tar 7.5.1→7.5.7"
|
|
15
|
-
- vulnerability: GHSA-73rr-hh4g-fpgx
|
|
16
|
-
reason: "diff 8.0.2→8.0.3"
|
|
17
14
|
- vulnerability: GHSA-r6q2-hw4h-h46w
|
|
18
|
-
reason: "tar 7.5.1→7.5.4"
|
|
19
|
-
- vulnerability: GHSA-3966-f6p6-2qr9
|
|
20
|
-
reason: "npm 11.6.2"
|
|
21
15
|
- vulnerability: GHSA-8qq5-rm4j-mr97
|
|
22
|
-
reason: "tar 7.5.1→7.5.3"
|
|
23
16
|
- vulnerability: GHSA-29xp-372q-xqph
|
|
24
|
-
|
|
25
|
-
|
|
17
|
+
# diff vulnerability
|
|
18
|
+
- vulnerability: GHSA-73rr-hh4g-fpgx
|
|
19
|
+
# npm vulnerability
|
|
20
|
+
- vulnerability: GHSA-3966-f6p6-2qr9
|
|
21
|
+
- vulnerability: GHSA-43fc-jf86-j433
|
|
22
|
+
# Set output format defaults
|
|
26
23
|
output:
|
|
27
24
|
- "table"
|
|
28
25
|
- "json"
|
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,11 @@
|
|
|
1
1
|
# Changelog: [mojaloop/thirdparty-api-svc](https://github.com/mojaloop/thirdparty-api-svc)
|
|
2
|
+
## [18.19.0](https://github.com/mojaloop/ml-testing-toolkit/compare/v18.18.0...v18.19.0) (2026-02-06)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* revert performance-optimization ([#367](https://github.com/mojaloop/ml-testing-toolkit/issues/367)) ([5b7c6c5](https://github.com/mojaloop/ml-testing-toolkit/commit/5b7c6c52d8ffe949ca16fa8374bea3fbc08c1a0c)), closes [#366](https://github.com/mojaloop/ml-testing-toolkit/issues/366)
|
|
8
|
+
|
|
2
9
|
## [18.18.0](https://github.com/mojaloop/ml-testing-toolkit/compare/v18.17.3...v18.18.0) (2026-02-06)
|
|
3
10
|
|
|
4
11
|
|
package/audit-ci.jsonc
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ml-testing-toolkit",
|
|
3
3
|
"description": "Testing Toolkit for Mojaloop implementations",
|
|
4
|
-
"version": "18.
|
|
4
|
+
"version": "18.20.0-infitx.0",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": "Vijaya Kumar Guthi, ModusBox Inc. ",
|
|
7
7
|
"contributors": [
|
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
"genexec": "pkg -t node8-win ."
|
|
72
72
|
},
|
|
73
73
|
"dependencies": {
|
|
74
|
-
"@elastic/elasticsearch": "9.3.
|
|
74
|
+
"@elastic/elasticsearch": "9.3.1",
|
|
75
75
|
"@hapi/basic": "7.0.2",
|
|
76
76
|
"@hapi/boom": "10.0.1",
|
|
77
77
|
"@hapi/good": "9.0.1",
|
|
@@ -88,7 +88,7 @@
|
|
|
88
88
|
"adm-zip": "0.5.16",
|
|
89
89
|
"ajv-formats": "3.0.1",
|
|
90
90
|
"atob": "2.1.2",
|
|
91
|
-
"axios": "1.13.
|
|
91
|
+
"axios": "1.13.5",
|
|
92
92
|
"chai": "4.4.1",
|
|
93
93
|
"connection-string": "^5.0.0",
|
|
94
94
|
"cookie-parser": "1.4.7",
|
|
@@ -108,7 +108,7 @@
|
|
|
108
108
|
"json-rules-engine": "7.3.1",
|
|
109
109
|
"jsonwebtoken": "9.0.3",
|
|
110
110
|
"lodash": "4.17.23",
|
|
111
|
-
"mongoose": "9.
|
|
111
|
+
"mongoose": "9.2.0",
|
|
112
112
|
"multer": "2.0.2",
|
|
113
113
|
"mustache": "4.2.0",
|
|
114
114
|
"mv": "2.1.1",
|