@mojaloop/connection-manager-api 3.1.4 → 3.2.0-storage-cluster.1
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/README.md +1 -1
- package/package.json +16 -5
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
|
+
### [3.1.5](https://github.com/mojaloop/connection-manager-api/compare/v3.1.4...v3.1.5) (2025-11-20)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* service bug fixes (DFSP validation, timeout overflow, error handling) ([7a64bb1](https://github.com/mojaloop/connection-manager-api/commit/7a64bb12d4775312eac3a911ed8b8926ecd88d55))
|
|
11
|
+
|
|
5
12
|
### [3.1.4](https://github.com/mojaloop/connection-manager-api/compare/v3.1.3...v3.1.4) (2025-11-20)
|
|
6
13
|
|
|
7
14
|
|
package/README.md
CHANGED
|
@@ -144,7 +144,7 @@ Variables:
|
|
|
144
144
|
|KEYCLOAK_ADMIN_CLIENT_ID|Client ID for Keycloak admin operations|connection-manager-client
|
|
145
145
|
|KEYCLOAK_ADMIN_CLIENT_SECRET|Client secret for Keycloak admin operations|
|
|
146
146
|
|KEYCLOAK_DFSPS_REALM|Keycloak realm for DFSP accounts|dfsps
|
|
147
|
-
|KEYCLOAK_AUTO_CREATE_ACCOUNTS|Automatically create Keycloak accounts when DFSPs are created
|
|
147
|
+
|KEYCLOAK_AUTO_CREATE_ACCOUNTS|Automatically create Keycloak accounts when DFSPs are created|**false** (disabled by default)
|
|
148
148
|
|
|
149
149
|
## Testing
|
|
150
150
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mojaloop/connection-manager-api",
|
|
3
|
-
"version": "3.1
|
|
3
|
+
"version": "3.2.0-storage-cluster.1",
|
|
4
4
|
"description": "Mojaloop Connection Manager API",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": "ModusBox",
|
|
@@ -51,6 +51,9 @@
|
|
|
51
51
|
"backend:restart": "npm run backend:stop && npm run backend:start"
|
|
52
52
|
},
|
|
53
53
|
"keywords": [
|
|
54
|
+
"MCM",
|
|
55
|
+
"connection-manager",
|
|
56
|
+
"pm4ml",
|
|
54
57
|
"swagger"
|
|
55
58
|
],
|
|
56
59
|
"overrides": {
|
|
@@ -59,6 +62,11 @@
|
|
|
59
62
|
"nanoid": "5.1.5",
|
|
60
63
|
"ejs": "3.1.10",
|
|
61
64
|
"sanitize-html": "2.12.1",
|
|
65
|
+
"oas3-tools": {
|
|
66
|
+
"body-parser": "^1.20.3",
|
|
67
|
+
"qs": "^6.14.0",
|
|
68
|
+
"js-yaml": "^3"
|
|
69
|
+
},
|
|
62
70
|
"postcss": {
|
|
63
71
|
"nanoid": "5.1.5"
|
|
64
72
|
},
|
|
@@ -73,12 +81,17 @@
|
|
|
73
81
|
"markdown-it": "12.3.2",
|
|
74
82
|
"swagger2openapi": "7.0.8"
|
|
75
83
|
},
|
|
84
|
+
"@mojaloop/event-sdk": {
|
|
85
|
+
"@mojaloop/central-services-logger": "11.10.1"
|
|
86
|
+
},
|
|
76
87
|
"markdown-it": "12.3.2",
|
|
77
88
|
"trim": "0.0.3",
|
|
78
89
|
"cross-spawn": "7.0.6",
|
|
79
90
|
"yargs-parser": "21.1.1",
|
|
80
91
|
"tar-fs": ">=3.1.1",
|
|
81
|
-
"tough-cookie": ">=4.1.3"
|
|
92
|
+
"tough-cookie": ">=4.1.3",
|
|
93
|
+
"js-yaml": "4.1.1",
|
|
94
|
+
"glob": ">=11.1.0"
|
|
82
95
|
},
|
|
83
96
|
"dependencies": {
|
|
84
97
|
"@hapi/hapi": "21.4.4",
|
|
@@ -103,7 +116,7 @@
|
|
|
103
116
|
"express-winston": "^4.2.0",
|
|
104
117
|
"form-data": "^4.0.5",
|
|
105
118
|
"joi": "^18.0.2",
|
|
106
|
-
"js-yaml": "
|
|
119
|
+
"js-yaml": "4.1.1",
|
|
107
120
|
"jsonwebtoken": "^9.0.2",
|
|
108
121
|
"knex": "^3.1.0",
|
|
109
122
|
"moment": "^2.30.1",
|
|
@@ -115,8 +128,6 @@
|
|
|
115
128
|
"passport": "^0.7.0",
|
|
116
129
|
"passport-jwt": "^4.0.1",
|
|
117
130
|
"qs": "^6.14.0",
|
|
118
|
-
"request": "^2.88.2",
|
|
119
|
-
"request-promise-native": "^1.0.9",
|
|
120
131
|
"soap": "^1.6.0",
|
|
121
132
|
"ulid": "3.0.1",
|
|
122
133
|
"winston": "^3.18.3",
|