@mojaloop/ml-testing-toolkit-client-lib 1.10.2 → 1.10.3
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/CHANGELOG.md +12 -0
- package/README.md +1 -0
- package/package.json +1 -1
- package/{sbom-v1.10.1.csv → sbom-v1.10.2.csv} +201 -189
- package/src/client.js +1 -0
- package/src/router.js +1 -0
- package/src/utils/report.js +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,18 @@
|
|
|
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.3](https://github.com/mojaloop/ml-testing-toolkit-client-lib/compare/v1.10.2...v1.10.3) (2025-08-04)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* support read only root filesystem ([#36](https://github.com/mojaloop/ml-testing-toolkit-client-lib/issues/36)) ([81c6c9e](https://github.com/mojaloop/ml-testing-toolkit-client-lib/commit/81c6c9e2238b537f7998a171e9ba94794ef40cca))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Chore
|
|
14
|
+
|
|
15
|
+
* **sbom:** update sbom [skip ci] ([44e6c03](https://github.com/mojaloop/ml-testing-toolkit-client-lib/commit/44e6c03740ee20637040011a7aab5a9cd27285b8))
|
|
16
|
+
|
|
5
17
|
### [1.10.2](https://github.com/mojaloop/ml-testing-toolkit-client-lib/compare/v1.10.1...v1.10.2) (2025-07-25)
|
|
6
18
|
|
|
7
19
|
|
package/README.md
CHANGED
|
@@ -86,6 +86,7 @@ Options:
|
|
|
86
86
|
--report-format <reportFormat> default: "json" --- supported formats: "json", "html", "printhtml"
|
|
87
87
|
--report-auto-filename-enable <reportAutoFilenameEnable> default: false, if true the file name will be generated by the backend
|
|
88
88
|
--report-target <reportTarget> default: "file://<file_name_generated_by_backend>" --- supported targets: "file://path_to_file", "s3://<bucket_name>[/<file_path>]"
|
|
89
|
+
--report-folder <reportFolder> save report in the specified folder, default: "current working directory"
|
|
89
90
|
--slack-webhook-url <slackWebhookUrl> default: "Disabled" --- supported formats: "https://....."
|
|
90
91
|
-h, --help output usage information
|
|
91
92
|
|
package/package.json
CHANGED