account-lookup-service 17.0.0 → 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 +21 -0
- package/CODEOWNERS +1 -1
- package/LICENSE.md +1 -1
- package/README.md +4 -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 +16 -16
- package/test/fixtures/index.js +1 -1
- package/test/util/helper.js +6 -6
package/CHANGELOG.md
CHANGED
@@ -2,6 +2,27 @@
|
|
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
|
+
|
12
|
+
### [17.0.2](https://github.com/mojaloop/account-lookup-service/compare/v17.0.1...v17.0.2) (2025-01-27)
|
13
|
+
|
14
|
+
|
15
|
+
### Chore
|
16
|
+
|
17
|
+
* maintenance updates ([#520](https://github.com/mojaloop/account-lookup-service/issues/520)) ([2e91f4a](https://github.com/mojaloop/account-lookup-service/commit/2e91f4a21239158c9f4a4bb72f0eb09206f4e292))
|
18
|
+
|
19
|
+
### [17.0.1](https://github.com/mojaloop/account-lookup-service/compare/v17.0.0...v17.0.1) (2025-01-20)
|
20
|
+
|
21
|
+
|
22
|
+
### Chore
|
23
|
+
|
24
|
+
* address follow up iso comments ([#519](https://github.com/mojaloop/account-lookup-service/issues/519)) ([f1fe64f](https://github.com/mojaloop/account-lookup-service/commit/f1fe64f9764b9febbb449249a8daa59e22310d37))
|
25
|
+
|
5
26
|
## [17.0.0](https://github.com/mojaloop/account-lookup-service/compare/v16.0.2...v17.0.0) (2025-01-19)
|
6
27
|
|
7
28
|
|
package/CODEOWNERS
CHANGED
@@ -6,7 +6,7 @@
|
|
6
6
|
## @global-owner1 and @global-owner2 will be requested for
|
7
7
|
## review when someone opens a pull request.
|
8
8
|
#* @global-owner1 @global-owner2
|
9
|
-
* @
|
9
|
+
* @elnyry-sam-k @vijayg10 @kleyow @geka-evk @bushjames @oderayi @shashi165 @gibaros
|
10
10
|
|
11
11
|
## Order is important; the last matching pattern takes the most
|
12
12
|
## precedence. When someone opens a pull request that only
|
package/LICENSE.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# LICENSE
|
2
2
|
|
3
|
-
Copyright © 2020-
|
3
|
+
Copyright © 2020-2025 Mojaloop Foundation
|
4
4
|
|
5
5
|
The Mojaloop files are made available by the Mojaloop Foundation under the Apache License, Version 2.0 (the "License") and you may not use these files except in compliance with the License.
|
6
6
|
|
package/README.md
CHANGED
@@ -252,3 +252,7 @@ push a release triggering another subsequent build that also publishes a docker
|
|
252
252
|
## Additional Notes
|
253
253
|
|
254
254
|
- For all put parties callbacks `FSPIOP-Destination` header is considered to be mandatory.
|
255
|
+
- Since the first pass ISO20022 support doesn't cover all resources at this time
|
256
|
+
`api-swagger-iso20022-parties.yaml` still uses fspiop for resources that
|
257
|
+
weren't in the iso scope on the first pass example `/participants`.
|
258
|
+
This is to ensure no regression for resources that aren't yet covered.
|
@@ -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
|
+
}
|