quoting-service 17.5.0 → 17.6.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 +7 -0
- package/package.json +4 -4
- package/src/lib/util.js +1 -1
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.6.0](https://github.com/mojaloop/quoting-service/compare/v17.5.0...v17.6.0) (2025-03-18)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* rethrow with context ([#402](https://github.com/mojaloop/quoting-service/issues/402)) ([28a9537](https://github.com/mojaloop/quoting-service/commit/28a95379248d5943c4e6f86726b2d2ade06412fa))
|
|
11
|
+
|
|
5
12
|
## [17.5.0](https://github.com/mojaloop/quoting-service/compare/v17.4.0...v17.5.0) (2025-03-14)
|
|
6
13
|
|
|
7
14
|
|
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.6.0",
|
|
6
6
|
"author": "ModusBox",
|
|
7
7
|
"contributors": [
|
|
8
8
|
"Georgi Georgiev <georgi.georgiev@modusbox.com>",
|
|
@@ -112,9 +112,9 @@
|
|
|
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.
|
|
115
|
+
"@mojaloop/central-services-logger": "11.7.0",
|
|
116
|
+
"@mojaloop/central-services-metrics": "12.5.0",
|
|
117
|
+
"@mojaloop/central-services-shared": "18.23.0",
|
|
118
118
|
"@mojaloop/central-services-stream": "11.5.1",
|
|
119
119
|
"@mojaloop/event-sdk": "14.3.2",
|
|
120
120
|
"@mojaloop/inter-scheme-proxy-cache-lib": "2.3.7",
|
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) => {
|