quoting-service 17.13.4 → 17.13.6
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/.grype.yaml +3 -1
- package/CHANGELOG.md +16 -0
- package/docker-compose.yml +3 -3
- package/package.json +17 -17
package/.grype.yaml
CHANGED
|
@@ -2,7 +2,9 @@ ignore:
|
|
|
2
2
|
# Ignore cross-spawn vulnerabilities by CVE ID due to false positive
|
|
3
3
|
# as grype looks at package-lock.json where it shows versions with
|
|
4
4
|
# vulnerabilities, npm ls shows only 7.0.6 verion is used
|
|
5
|
-
|
|
5
|
+
- vulnerability: CVE-2025-9230
|
|
6
|
+
- vulnerability: CVE-2025-9232
|
|
7
|
+
- vulnerability: CVE-2025-9231
|
|
6
8
|
|
|
7
9
|
# Set output format defaults
|
|
8
10
|
output:
|
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.13.6](https://github.com/mojaloop/quoting-service/compare/v17.13.5...v17.13.6) (2025-10-06)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Chore
|
|
9
|
+
|
|
10
|
+
* bump deps ([#435](https://github.com/mojaloop/quoting-service/issues/435)) ([d8ab43c](https://github.com/mojaloop/quoting-service/commit/d8ab43c4243234d7b4642e9866c670f49fea574f))
|
|
11
|
+
* **sbom:** update sbom [skip ci] ([63884dd](https://github.com/mojaloop/quoting-service/commit/63884dd1c44dd2d9faa02f537786c4333e946a75))
|
|
12
|
+
|
|
13
|
+
### [17.13.5](https://github.com/mojaloop/quoting-service/compare/v17.13.4...v17.13.5) (2025-09-10)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Chore
|
|
17
|
+
|
|
18
|
+
* bump metrics for app critical metrics ([#430](https://github.com/mojaloop/quoting-service/issues/430)) ([fe92065](https://github.com/mojaloop/quoting-service/commit/fe92065730b0661bae435ed1265ce5fadcf912fc))
|
|
19
|
+
* **sbom:** update sbom [skip ci] ([22249ac](https://github.com/mojaloop/quoting-service/commit/22249ac12c270aaadb125520f3ec501850cf9802))
|
|
20
|
+
|
|
5
21
|
### [17.13.4](https://github.com/mojaloop/quoting-service/compare/v17.13.3...v17.13.4) (2025-09-08)
|
|
6
22
|
|
|
7
23
|
|
package/docker-compose.yml
CHANGED
|
@@ -30,7 +30,7 @@ x-quoting-service: "ingServiceBase
|
|
|
30
30
|
|
|
31
31
|
# @see https://uninterrupted.tech/blog/hassle-free-redis-cluster-deployment-using-docker/
|
|
32
32
|
x-redis-node: &REDIS_NODE
|
|
33
|
-
image: docker.io/
|
|
33
|
+
image: docker.io/bitnamilegacy/redis-cluster:6.2.14
|
|
34
34
|
environment: &REDIS_ENVS
|
|
35
35
|
ALLOW_EMPTY_PASSWORD: 'yes'
|
|
36
36
|
REDIS_CLUSTER_DYNAMIC_IPS: 'no'
|
|
@@ -193,7 +193,7 @@ services:
|
|
|
193
193
|
|
|
194
194
|
|
|
195
195
|
kafka:
|
|
196
|
-
image: docker.io/
|
|
196
|
+
image: docker.io/bitnamilegacy/kafka:3.5
|
|
197
197
|
container_name: qs_kafka
|
|
198
198
|
ports:
|
|
199
199
|
- "9092:9092"
|
|
@@ -218,7 +218,7 @@ services:
|
|
|
218
218
|
test: ["CMD" ,"/opt/bitnami/kafka/bin/kafka-broker-api-versions.sh","--bootstrap-server","kafka:9092"]
|
|
219
219
|
|
|
220
220
|
init-kafka:
|
|
221
|
-
image: docker.io/
|
|
221
|
+
image: docker.io/bitnamilegacy/kafka:3.5
|
|
222
222
|
volumes:
|
|
223
223
|
- ./docker/kafka/scripts:/tmp/kafka/scripts
|
|
224
224
|
command: bash /tmp/kafka/scripts/provision.sh
|
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.13.
|
|
5
|
+
"version": "17.13.6",
|
|
6
6
|
"author": "ModusBox",
|
|
7
7
|
"contributors": [
|
|
8
8
|
"Georgi Georgiev <georgi.georgiev@modusbox.com>",
|
|
@@ -112,22 +112,22 @@
|
|
|
112
112
|
"@hapi/hapi": "21.4.3",
|
|
113
113
|
"@hapi/inert": "7.1.0",
|
|
114
114
|
"@hapi/vision": "7.0.3",
|
|
115
|
-
"@mojaloop/central-services-error-handling": "13.1.
|
|
116
|
-
"@mojaloop/central-services-health": "15.
|
|
117
|
-
"@mojaloop/central-services-logger": "11.
|
|
118
|
-
"@mojaloop/central-services-metrics": "12.
|
|
119
|
-
"@mojaloop/central-services-shared": "18.
|
|
120
|
-
"@mojaloop/central-services-stream": "11.8.
|
|
121
|
-
"@mojaloop/event-sdk": "14.
|
|
122
|
-
"@mojaloop/inter-scheme-proxy-cache-lib": "2.
|
|
123
|
-
"@mojaloop/ml-number": "11.
|
|
124
|
-
"@mojaloop/ml-schema-transformer-lib": "2.7.
|
|
125
|
-
"@mojaloop/sdk-standard-components": "19.
|
|
115
|
+
"@mojaloop/central-services-error-handling": "13.1.3",
|
|
116
|
+
"@mojaloop/central-services-health": "15.2.0",
|
|
117
|
+
"@mojaloop/central-services-logger": "11.10.1",
|
|
118
|
+
"@mojaloop/central-services-metrics": "12.8.0",
|
|
119
|
+
"@mojaloop/central-services-shared": "18.34.1",
|
|
120
|
+
"@mojaloop/central-services-stream": "11.8.8",
|
|
121
|
+
"@mojaloop/event-sdk": "14.8.0",
|
|
122
|
+
"@mojaloop/inter-scheme-proxy-cache-lib": "2.9.0",
|
|
123
|
+
"@mojaloop/ml-number": "11.4.0",
|
|
124
|
+
"@mojaloop/ml-schema-transformer-lib": "2.7.8",
|
|
125
|
+
"@mojaloop/sdk-standard-components": "19.18.0",
|
|
126
126
|
"ajv": "8.17.1",
|
|
127
127
|
"ajv-keywords": "5.1.0",
|
|
128
|
-
"axios": "1.
|
|
128
|
+
"axios": "1.12.2",
|
|
129
129
|
"blipp": "4.0.2",
|
|
130
|
-
"commander": "14.0.
|
|
130
|
+
"commander": "14.0.1",
|
|
131
131
|
"event-stream": "4.0.1",
|
|
132
132
|
"fast-safe-stringify": "2.1.1",
|
|
133
133
|
"joi": "18.0.1",
|
|
@@ -135,7 +135,7 @@
|
|
|
135
135
|
"knex": "3.1.0",
|
|
136
136
|
"memory-cache": "0.2.0",
|
|
137
137
|
"minimist": "1.2.8",
|
|
138
|
-
"mysql2": "^3.
|
|
138
|
+
"mysql2": "^3.15.1",
|
|
139
139
|
"node-fetch": "3.3.2",
|
|
140
140
|
"parse-strings-in-object": "2.0.0",
|
|
141
141
|
"rc": "1.2.8"
|
|
@@ -145,10 +145,10 @@
|
|
|
145
145
|
"eslint": "8.57.1",
|
|
146
146
|
"eslint-config-standard": "17.1.0",
|
|
147
147
|
"eslint-plugin-jest": "29.0.1",
|
|
148
|
-
"ioredis-mock": "8.
|
|
148
|
+
"ioredis-mock": "8.13.0",
|
|
149
149
|
"jest": "29.7.0",
|
|
150
150
|
"jest-junit": "16.0.0",
|
|
151
|
-
"npm-check-updates": "
|
|
151
|
+
"npm-check-updates": "19.0.0",
|
|
152
152
|
"nyc": "17.1.0",
|
|
153
153
|
"pre-commit": "1.2.2",
|
|
154
154
|
"replace": "1.2.2",
|