Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .grype.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ ignore:
- vulnerability: CVE-2025-9230
- vulnerability: CVE-2025-9232
- vulnerability: CVE-2025-9231
- vulnerability: GHSA-3xgq-45jj-v275

# Set output format defaults
output:
Expand Down
4 changes: 3 additions & 1 deletion audit-ci.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,7 @@
// audit-ci supports reading JSON, JSONC, and JSON5 config files.
// Only use one of ["low": true, "moderate": true, "high": true, "critical": true]
"moderate": true,
"allowlist": []
"allowlist": [
"GHSA-mh29-5h37-fv8m" // js-yaml https://github.com/advisories/GHSA-mh29-5h37-fv8m
]
}
28 changes: 14 additions & 14 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ml-testing-toolkit",
"description": "Testing Toolkit for Mojaloop implementations",
"version": "18.16.4",
"version": "18.16.5-trace-id.0",
"license": "Apache-2.0",
"author": "Vijaya Kumar Guthi, ModusBox Inc. ",
"contributors": [
Expand Down Expand Up @@ -103,12 +103,12 @@
"hapi-openapi": "3.0.0",
"hapi-swagger": "17.3.2",
"ilp-packet": "3.1.3",
"js-yaml": "4.1.0",
"js-yaml": "4.1.1",
"json-refs": "3.0.15",
"json-rules-engine": "7.3.1",
"jsonwebtoken": "9.0.2",
"lodash": "4.17.21",
"mongoose": "8.19.3",
"mongoose": "8.19.4",
"multer": "2.0.2",
"mustache": "4.2.0",
"mv": "2.1.1",
Expand Down Expand Up @@ -137,7 +137,7 @@
"get-port": "7.1.0",
"jest": "29.7.0",
"jest-junit": "16.0.0",
"nodemon": "3.1.10",
"nodemon": "3.1.11",
"npm-check-updates": "19.1.2",
"nyc": "17.1.0",
"parse-strings-in-object": "1.6.0",
Expand Down
1 change: 1 addition & 0 deletions src/lib/test-outbound/outbound-initiator.js
Original file line number Diff line number Diff line change
Expand Up @@ -505,6 +505,7 @@ const setResponse = async (
if (globalConfig.testsExecution) {
assertionResults = await handleTests(convertedRequest, resp.requestSent, resp.syncResponse, resp.callback, variableData.environment, backgroundData, contextObj.requestVariables)
}
traceId = resp.syncResponse?.body?.traceId || traceId
request.appended = {
status,
assertionResults,
Expand Down