account-lookup-service 17.11.1-snapshot.0 → 17.11.2
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 +16 -0
- package/package.json +6 -6
- package/sbom-v17.11.1.csv +1524 -0
- package/src/api/health.js +2 -3
- package/src/handlers/monitoring/plugins/health.js +2 -2
- package/src/lib/healthCheck/subServiceHealth.js +1 -25
- package/test/unit/api/health.test.js +4 -4
package/.circleci/config.yml
CHANGED
package/CHANGELOG.md
CHANGED
@@ -2,6 +2,22 @@
|
|
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.11.2](https://github.com/mojaloop/account-lookup-service/compare/v17.11.0...v17.11.2) (2025-07-17)
|
6
|
+
|
7
|
+
|
8
|
+
### Chore
|
9
|
+
|
10
|
+
* add initial sbom ([#559](https://github.com/mojaloop/account-lookup-service/issues/559)) ([24b4d62](https://github.com/mojaloop/account-lookup-service/commit/24b4d621f22afd3e8b38b7e26dfa8fdbd976af9b))
|
11
|
+
* update dependencies ([#557](https://github.com/mojaloop/account-lookup-service/issues/557)) ([cf65f5e](https://github.com/mojaloop/account-lookup-service/commit/cf65f5e0559af5ed4946cc7e7f8235569aed8bc0))
|
12
|
+
|
13
|
+
### [17.11.1](https://github.com/mojaloop/account-lookup-service/compare/v17.11.0...v17.11.1) (2025-07-11)
|
14
|
+
|
15
|
+
|
16
|
+
### Chore
|
17
|
+
|
18
|
+
* **snapshot:** 17.11.1-snapshot.0 ([399c0d9](https://github.com/mojaloop/account-lookup-service/commit/399c0d91a34df68e3269c93faecfe3eabb897d8b))
|
19
|
+
* update deps ([e024c9f](https://github.com/mojaloop/account-lookup-service/commit/e024c9f3fa0b15c4e7ab3c1ae9c7f4fd27cc98e1))
|
20
|
+
|
5
21
|
## [17.11.0](https://github.com/mojaloop/account-lookup-service/compare/v17.10.3...v17.11.0) (2025-07-07)
|
6
22
|
|
7
23
|
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "account-lookup-service",
|
3
3
|
"description": "Account Lookup Service is used to validate Party and Participant lookups.",
|
4
|
-
"version": "17.11.
|
4
|
+
"version": "17.11.2",
|
5
5
|
"license": "Apache-2.0",
|
6
6
|
"author": "ModusBox",
|
7
7
|
"contributors": [
|
@@ -95,9 +95,9 @@
|
|
95
95
|
"@mojaloop/central-services-health": "15.1.0",
|
96
96
|
"@mojaloop/central-services-logger": "11.9.0",
|
97
97
|
"@mojaloop/central-services-metrics": "12.6.0",
|
98
|
-
"@mojaloop/central-services-shared": "18.
|
99
|
-
"@mojaloop/central-services-stream": "
|
100
|
-
"@mojaloop/database-lib": "11.
|
98
|
+
"@mojaloop/central-services-shared": "18.30.1",
|
99
|
+
"@mojaloop/central-services-stream": "11.8.2",
|
100
|
+
"@mojaloop/database-lib": "^11.3.0",
|
101
101
|
"@mojaloop/event-sdk": "14.6.1",
|
102
102
|
"@mojaloop/inter-scheme-proxy-cache-lib": "2.6.0",
|
103
103
|
"@mojaloop/ml-schema-transformer-lib": "2.7.1",
|
@@ -107,7 +107,7 @@
|
|
107
107
|
"ajv-keywords": "5.1.0",
|
108
108
|
"blipp": "4.0.2",
|
109
109
|
"commander": "14.0.0",
|
110
|
-
"cron": "4.3.
|
110
|
+
"cron": "4.3.2",
|
111
111
|
"fast-safe-stringify": "^2.1.1",
|
112
112
|
"hapi-auth-bearer-token": "8.0.0",
|
113
113
|
"joi": "17.13.3",
|
@@ -166,7 +166,7 @@
|
|
166
166
|
"axios": "1.10.0",
|
167
167
|
"axios-retry": "^4.5.0",
|
168
168
|
"docdash": "2.0.2",
|
169
|
-
"dotenv": "^17.
|
169
|
+
"dotenv": "^17.2.0",
|
170
170
|
"get-port": "5.1.1",
|
171
171
|
"ioredis-mock": "^8.9.0",
|
172
172
|
"jest": "29.7.0",
|