account-lookup-service 17.9.0 → 17.10.0
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
CHANGED
@@ -2,6 +2,20 @@
|
|
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.10.0](https://github.com/mojaloop/account-lookup-service/compare/v17.9.1...v17.10.0) (2025-04-15)
|
6
|
+
|
7
|
+
|
8
|
+
### Features
|
9
|
+
|
10
|
+
* **csi-1348:** use updated AxiosHttpRequester ([#549](https://github.com/mojaloop/account-lookup-service/issues/549)) ([93fbda4](https://github.com/mojaloop/account-lookup-service/commit/93fbda46dd2dacaf7254a3ef8bdef24341cc4989))
|
11
|
+
|
12
|
+
### [17.9.1](https://github.com/mojaloop/account-lookup-service/compare/v17.9.0...v17.9.1) (2025-04-09)
|
13
|
+
|
14
|
+
|
15
|
+
### Bug Fixes
|
16
|
+
|
17
|
+
* avoid exception when no proxy cache exists ([#548](https://github.com/mojaloop/account-lookup-service/issues/548)) ([37dd8fa](https://github.com/mojaloop/account-lookup-service/commit/37dd8fa8932694022d1cd9c4ad8e2ddf180133e5))
|
18
|
+
|
5
19
|
## [17.9.0](https://github.com/mojaloop/account-lookup-service/compare/v17.8.1...v17.9.0) (2025-04-08)
|
6
20
|
|
7
21
|
|
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.
|
4
|
+
"version": "17.10.0",
|
5
5
|
"license": "Apache-2.0",
|
6
6
|
"author": "ModusBox",
|
7
7
|
"contributors": [
|
@@ -100,13 +100,13 @@
|
|
100
100
|
"@mojaloop/event-sdk": "14.4.0",
|
101
101
|
"@mojaloop/inter-scheme-proxy-cache-lib": "2.5.0",
|
102
102
|
"@mojaloop/ml-schema-transformer-lib": "2.7.1",
|
103
|
-
"@mojaloop/sdk-standard-components": "19.
|
103
|
+
"@mojaloop/sdk-standard-components": "19.13.0",
|
104
104
|
"@now-ims/hapi-now-auth": "2.1.0",
|
105
105
|
"ajv": "8.17.1",
|
106
106
|
"ajv-keywords": "5.1.0",
|
107
107
|
"blipp": "4.0.2",
|
108
108
|
"commander": "13.1.0",
|
109
|
-
"cron": "4.
|
109
|
+
"cron": "4.3.0",
|
110
110
|
"fast-safe-stringify": "^2.1.1",
|
111
111
|
"hapi-auth-bearer-token": "8.0.0",
|
112
112
|
"joi": "17.13.3",
|
@@ -165,14 +165,14 @@
|
|
165
165
|
"axios": "1.8.4",
|
166
166
|
"axios-retry": "^4.5.0",
|
167
167
|
"docdash": "2.0.2",
|
168
|
-
"dotenv": "^16.
|
168
|
+
"dotenv": "^16.5.0",
|
169
169
|
"get-port": "5.1.1",
|
170
170
|
"ioredis-mock": "^8.9.0",
|
171
171
|
"jest": "29.7.0",
|
172
172
|
"jest-junit": "16.0.0",
|
173
173
|
"jsdoc": "4.0.4",
|
174
174
|
"nodemon": "3.1.9",
|
175
|
-
"npm-check-updates": "17.1.
|
175
|
+
"npm-check-updates": "17.1.18",
|
176
176
|
"nyc": "17.1.0",
|
177
177
|
"pre-commit": "1.2.2",
|
178
178
|
"proxyquire": "2.1.3",
|
@@ -316,7 +316,7 @@ class GetPartiesService extends BasePartiesService {
|
|
316
316
|
if (isSentToProxy && isLocalSource) {
|
317
317
|
this.stepInProgress('#setProxyGetPartiesTimeout')
|
318
318
|
const alsReq = this.deps.partiesUtils.alsRequestDto(this.state.source, this.inputs.params)
|
319
|
-
const isSet = await this.deps.proxyCache
|
319
|
+
const isSet = await this.deps.proxyCache?.setProxyGetPartiesTimeout(alsReq, sendTo)
|
320
320
|
this.log.info('#setProxyGetPartiesTimeout is done', { isSet })
|
321
321
|
return isSet
|
322
322
|
}
|