account-lookup-service 17.14.10 → 17.14.11
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/.circleci/config.yml +1 -1
- package/.grype.yaml +2 -0
- package/.nvmrc +1 -1
- package/CHANGELOG.md +8 -0
- package/Dockerfile +1 -1
- package/audit-ci.jsonc +2 -1
- package/package.json +14 -4
- package/{sbom-v17.14.9.csv → sbom-v17.14.10.csv} +72 -69
package/.circleci/config.yml
CHANGED
package/.grype.yaml
CHANGED
package/.nvmrc
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
22.
|
|
1
|
+
22.21.1
|
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,14 @@
|
|
|
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.14.11](https://github.com/mojaloop/account-lookup-service/compare/v17.14.10...v17.14.11) (2026-01-16)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Chore
|
|
9
|
+
|
|
10
|
+
* **ci:** update CircleCI orb to 1.1.10 ([#602](https://github.com/mojaloop/account-lookup-service/issues/602)) ([effd5dd](https://github.com/mojaloop/account-lookup-service/commit/effd5dd5fac900853b60cf6ba3dffbaf8725c7d4))
|
|
11
|
+
* **sbom:** update sbom [skip ci] ([59be761](https://github.com/mojaloop/account-lookup-service/commit/59be7619c8f3b3d77599819f0aaff560771adc1f))
|
|
12
|
+
|
|
5
13
|
### [17.14.10](https://github.com/mojaloop/account-lookup-service/compare/v17.14.9...v17.14.10) (2026-01-13)
|
|
6
14
|
|
|
7
15
|
|
package/Dockerfile
CHANGED
package/audit-ci.jsonc
CHANGED
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
// NOTE: Please add as much information as possible to any items added to the allowList
|
|
7
7
|
"allowlist": [
|
|
8
8
|
"GHSA-9965-vmph-33xx", // originates from dev dependency swagmock
|
|
9
|
-
"GHSA-vghf-hv5q-vc2g" // originates from dev dependency swagmock
|
|
9
|
+
"GHSA-vghf-hv5q-vc2g", // originates from dev dependency swagmock
|
|
10
|
+
"GHSA-mh29-5h37-fv8m" // originates from dev dependency js-yaml via swagmock
|
|
10
11
|
]
|
|
11
12
|
}
|
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.14.
|
|
4
|
+
"version": "17.14.11",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": "ModusBox",
|
|
7
7
|
"contributors": [
|
|
@@ -94,7 +94,7 @@
|
|
|
94
94
|
"@hapi/vision": "7.0.3",
|
|
95
95
|
"@mojaloop/central-services-error-handling": "13.1.5",
|
|
96
96
|
"@mojaloop/central-services-health": "15.2.1",
|
|
97
|
-
"@mojaloop/central-services-logger": "11.10.
|
|
97
|
+
"@mojaloop/central-services-logger": "11.10.3",
|
|
98
98
|
"@mojaloop/central-services-metrics": "12.8.3",
|
|
99
99
|
"@mojaloop/central-services-shared": "18.34.6",
|
|
100
100
|
"@mojaloop/central-services-stream": "11.8.14",
|
|
@@ -114,7 +114,7 @@
|
|
|
114
114
|
"knex": "3.1.0",
|
|
115
115
|
"mustache": "4.2.0",
|
|
116
116
|
"mysql": "2.18.1",
|
|
117
|
-
"mysql2": "^3.16.
|
|
117
|
+
"mysql2": "^3.16.1",
|
|
118
118
|
"npm-run-all": "4.1.5",
|
|
119
119
|
"parse-strings-in-object": "2.0.0",
|
|
120
120
|
"rc": "1.2.8"
|
|
@@ -162,7 +162,17 @@
|
|
|
162
162
|
},
|
|
163
163
|
"jsonwebtoken": "9.0.0",
|
|
164
164
|
"jsonpointer": "5.0.0",
|
|
165
|
-
"
|
|
165
|
+
"qs": "6.14.1",
|
|
166
|
+
"validator": "13.15.22",
|
|
167
|
+
"glob@10.4.5": "10.5.0",
|
|
168
|
+
"swagmock": {
|
|
169
|
+
"swagger-parser": {
|
|
170
|
+
"json-schema-ref-parser": {
|
|
171
|
+
"js-yaml": "3.14.1"
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
},
|
|
175
|
+
"body-parser": "2.2.1"
|
|
166
176
|
},
|
|
167
177
|
"devDependencies": {
|
|
168
178
|
"@types/jest": "30.0.0",
|