quoting-service 17.5.0 → 17.7.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 +14 -0
- package/package.json +12 -12
- package/src/lib/util.js +1 -1
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.7.0](https://github.com/mojaloop/quoting-service/compare/v17.6.0...v17.7.0) (2025-03-26)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* update dependencies to latest versions ([#404](https://github.com/mojaloop/quoting-service/issues/404)) ([80e1966](https://github.com/mojaloop/quoting-service/commit/80e19662f08a2ab1c5fd9cb266a7f4629536133b))
|
|
11
|
+
|
|
12
|
+
## [17.6.0](https://github.com/mojaloop/quoting-service/compare/v17.5.0...v17.6.0) (2025-03-18)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* rethrow with context ([#402](https://github.com/mojaloop/quoting-service/issues/402)) ([28a9537](https://github.com/mojaloop/quoting-service/commit/28a95379248d5943c4e6f86726b2d2ade06412fa))
|
|
18
|
+
|
|
5
19
|
## [17.5.0](https://github.com/mojaloop/quoting-service/compare/v17.4.0...v17.5.0) (2025-03-14)
|
|
6
20
|
|
|
7
21
|
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "quoting-service",
|
|
3
3
|
"description": "Quoting Service hosted by a scheme",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
|
-
"version": "17.
|
|
5
|
+
"version": "17.7.0",
|
|
6
6
|
"author": "ModusBox",
|
|
7
7
|
"contributors": [
|
|
8
8
|
"Georgi Georgiev <georgi.georgiev@modusbox.com>",
|
|
@@ -112,18 +112,18 @@
|
|
|
112
112
|
"@hapi/vision": "7.0.3",
|
|
113
113
|
"@mojaloop/central-services-error-handling": "13.0.7",
|
|
114
114
|
"@mojaloop/central-services-health": "15.0.4",
|
|
115
|
-
"@mojaloop/central-services-logger": "11.
|
|
116
|
-
"@mojaloop/central-services-metrics": "12.
|
|
117
|
-
"@mojaloop/central-services-shared": "18.
|
|
118
|
-
"@mojaloop/central-services-stream": "11.5.
|
|
119
|
-
"@mojaloop/event-sdk": "14.
|
|
120
|
-
"@mojaloop/inter-scheme-proxy-cache-lib": "2.
|
|
115
|
+
"@mojaloop/central-services-logger": "11.8.0",
|
|
116
|
+
"@mojaloop/central-services-metrics": "12.5.0",
|
|
117
|
+
"@mojaloop/central-services-shared": "18.23.1",
|
|
118
|
+
"@mojaloop/central-services-stream": "11.5.2",
|
|
119
|
+
"@mojaloop/event-sdk": "14.4.0",
|
|
120
|
+
"@mojaloop/inter-scheme-proxy-cache-lib": "2.4.0",
|
|
121
121
|
"@mojaloop/ml-number": "11.2.7",
|
|
122
|
-
"@mojaloop/ml-schema-transformer-lib": "2.
|
|
123
|
-
"@mojaloop/sdk-standard-components": "19.
|
|
122
|
+
"@mojaloop/ml-schema-transformer-lib": "2.6.0",
|
|
123
|
+
"@mojaloop/sdk-standard-components": "19.11.1",
|
|
124
124
|
"ajv": "8.17.1",
|
|
125
125
|
"ajv-keywords": "5.1.0",
|
|
126
|
-
"axios": "1.8.
|
|
126
|
+
"axios": "1.8.4",
|
|
127
127
|
"blipp": "4.0.2",
|
|
128
128
|
"commander": "13.1.0",
|
|
129
129
|
"event-stream": "4.0.1",
|
|
@@ -146,11 +146,11 @@
|
|
|
146
146
|
"ioredis-mock": "8.9.0",
|
|
147
147
|
"jest": "29.7.0",
|
|
148
148
|
"jest-junit": "16.0.0",
|
|
149
|
-
"npm-check-updates": "17.1.
|
|
149
|
+
"npm-check-updates": "17.1.16",
|
|
150
150
|
"nyc": "17.1.0",
|
|
151
151
|
"pre-commit": "1.2.2",
|
|
152
152
|
"replace": "1.2.2",
|
|
153
|
-
"sinon": "
|
|
153
|
+
"sinon": "20.0.0",
|
|
154
154
|
"standard": "17.1.2",
|
|
155
155
|
"standard-version": "9.5.0",
|
|
156
156
|
"swagmock": "1.0.0"
|
package/src/lib/util.js
CHANGED
|
@@ -46,7 +46,7 @@ const { RESOURCES, HEADERS, ISO_HEADER_PART } = require('../constants')
|
|
|
46
46
|
const { logger } = require('../lib')
|
|
47
47
|
const Config = require('./config')
|
|
48
48
|
|
|
49
|
-
const
|
|
49
|
+
const rethrow = require('@mojaloop/central-services-shared').Util.rethrow.with('QS')
|
|
50
50
|
const config = new Config()
|
|
51
51
|
|
|
52
52
|
const failActionHandler = async (request, h, err) => {
|