account-lookup-service 17.0.2 → 17.0.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 +7 -0
- package/docker/mock-proxy/audit-ci.jsonc +8 -0
- package/docker/mock-proxy/package-lock.json +1623 -1322
- package/docker/mock-proxy/package.json +32 -8
- package/package.json +7 -7
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
|
+
### [17.0.3](https://github.com/mojaloop/account-lookup-service/compare/v17.0.2...v17.0.3) (2025-01-28)
|
6
|
+
|
7
|
+
|
8
|
+
### Chore
|
9
|
+
|
10
|
+
* fix vulnerabilities and update deps ([#522](https://github.com/mojaloop/account-lookup-service/issues/522)) ([dd65c94](https://github.com/mojaloop/account-lookup-service/commit/dd65c94999319bfeca460838a889b2866654df3c))
|
11
|
+
|
5
12
|
### [17.0.2](https://github.com/mojaloop/account-lookup-service/compare/v17.0.1...v17.0.2) (2025-01-27)
|
6
13
|
|
7
14
|
|
@@ -0,0 +1,8 @@
|
|
1
|
+
{
|
2
|
+
"$schema": "https://github.com/IBM/audit-ci/raw/main/docs/schema.json",
|
3
|
+
// audit-ci supports reading JSON, JSONC, and JSON5 config files.
|
4
|
+
// Only use one of ["low": true, "moderate": true, "high": true, "critical": true]
|
5
|
+
"moderate": true,
|
6
|
+
// NOTE: Please add as much information as possible to any items added to the allowList
|
7
|
+
"allowlist": []
|
8
|
+
}
|