@mojaloop/ml-testing-toolkit-client-lib 1.10.0 → 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/.circleci/config.yml +1 -1
- package/CHANGELOG.md +7 -0
- package/package.json +7 -7
- package/sbom-v1.10.0.csv +1326 -0
- package/test/unit/client.test.js +1 -1
- package/test/unit/listener.test.js +2 -2
- package/test/unit/logger.test.js +4 -4
- package/test/unit/monitoring-mode.test.js +1 -1
- package/test/unit/outbound-mode.test.js +7 -7
- package/test/unit/router.test.js +9 -9
package/.circleci/config.yml
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
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
|
+
|
|
5
12
|
## [1.10.0](https://github.com/mojaloop/ml-testing-toolkit-client-lib/compare/v1.9.1...v1.10.0) (2025-06-01)
|
|
6
13
|
|
|
7
14
|
|
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.10.
|
|
4
|
+
"version": "1.10.1",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": "Vijaya Kumar Guthi, ModusBox Inc. ",
|
|
7
7
|
"contributors": [
|
|
@@ -70,15 +70,15 @@
|
|
|
70
70
|
},
|
|
71
71
|
"dependencies": {
|
|
72
72
|
"@mojaloop/central-services-logger": "11.9.0",
|
|
73
|
-
"@mojaloop/ml-testing-toolkit-shared-lib": "14.0
|
|
74
|
-
"@mojaloop/sdk-standard-components": "19.
|
|
73
|
+
"@mojaloop/ml-testing-toolkit-shared-lib": "14.2.0",
|
|
74
|
+
"@mojaloop/sdk-standard-components": "19.16.0",
|
|
75
75
|
"@slack/webhook": "7.0.5",
|
|
76
76
|
"atob": "2.1.2",
|
|
77
77
|
"aws-sdk": "2.1692.0",
|
|
78
|
-
"axios": "1.
|
|
78
|
+
"axios": "1.10.0",
|
|
79
79
|
"cli-table3": "0.6.5",
|
|
80
80
|
"commander": "14.0.0",
|
|
81
|
-
"dotenv": "
|
|
81
|
+
"dotenv": "17.2.0",
|
|
82
82
|
"fs": "0.0.1-security",
|
|
83
83
|
"lodash": "4.17.21",
|
|
84
84
|
"mv": "2.1.1",
|
|
@@ -91,14 +91,14 @@
|
|
|
91
91
|
},
|
|
92
92
|
"devDependencies": {
|
|
93
93
|
"audit-ci": "7.1.0",
|
|
94
|
-
"jest": "
|
|
94
|
+
"jest": "30.0.4",
|
|
95
95
|
"jest-junit": "16.0.0",
|
|
96
96
|
"npm-check-updates": "18.0.1",
|
|
97
97
|
"nyc": "17.1.0",
|
|
98
98
|
"parse-strings-in-object": "1.6.0",
|
|
99
99
|
"pre-commit": "1.2.2",
|
|
100
100
|
"replace": "1.2.2",
|
|
101
|
-
"sinon": "
|
|
101
|
+
"sinon": "21.0.0",
|
|
102
102
|
"standard": "17.1.2",
|
|
103
103
|
"standard-version": "9.5.0"
|
|
104
104
|
},
|