quoting-service 17.13.7 → 17.13.8
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 +12 -0
- package/package.json +1 -1
- package/src/lib/http.js +1 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,18 @@
|
|
|
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.13.8](https://github.com/mojaloop/quoting-service/compare/v17.13.7...v17.13.8) (2025-11-04)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* circular dependency in http ([#437](https://github.com/mojaloop/quoting-service/issues/437)) ([d81b951](https://github.com/mojaloop/quoting-service/commit/d81b9518846f24c4e4f9ddedd1ee9c8493c1fe13))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Chore
|
|
14
|
+
|
|
15
|
+
* **sbom:** update sbom [skip ci] ([04aa94b](https://github.com/mojaloop/quoting-service/commit/04aa94b506274bd4a4bf243a43b5353b5c90d11d))
|
|
16
|
+
|
|
5
17
|
### [17.13.7](https://github.com/mojaloop/quoting-service/compare/v17.13.6...v17.13.7) (2025-10-31)
|
|
6
18
|
|
|
7
19
|
|
package/package.json
CHANGED
package/src/lib/http.js
CHANGED
|
@@ -41,7 +41,6 @@ const axios = require('axios')
|
|
|
41
41
|
const ErrorHandler = require('@mojaloop/central-services-error-handling')
|
|
42
42
|
|
|
43
43
|
const { logger } = require('../lib')
|
|
44
|
-
const { getStackOrInspect } = require('../lib/util')
|
|
45
44
|
const Config = require('./config')
|
|
46
45
|
|
|
47
46
|
axios.defaults.httpAgent = new http.Agent({ keepAlive: true })
|
|
@@ -72,7 +71,7 @@ async function httpRequest (opts, fspiopSource) {
|
|
|
72
71
|
? [ErrorHandler.Enums.FSPIOPErrorCodes.CLIENT_ERROR, 'Not found']
|
|
73
72
|
: [ErrorHandler.Enums.FSPIOPErrorCodes.DESTINATION_COMMUNICATION_ERROR, 'Network error']
|
|
74
73
|
throw ErrorHandler.CreateFSPIOPError(fspiopErrorType, fspiopErrorDescr,
|
|
75
|
-
`${
|
|
74
|
+
`${e.stack || util.inspect(e)}. Opts: ${util.inspect(opts)}`,
|
|
76
75
|
fspiopSource)
|
|
77
76
|
}
|
|
78
77
|
|