@mojaloop/central-ledger 19.0.4 → 19.0.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/CHANGELOG.md CHANGED
@@ -2,6 +2,20 @@
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
+ ### [19.0.6](https://github.com/mojaloop/central-ledger/compare/v19.0.5...v19.0.6) (2025-01-28)
6
+
7
+
8
+ ### Chore
9
+
10
+ * dependency update ([#1152](https://github.com/mojaloop/central-ledger/issues/1152)) ([eecd8b5](https://github.com/mojaloop/central-ledger/commit/eecd8b588178ec91e9c5889fdcc820442d8df403))
11
+
12
+ ### [19.0.5](https://github.com/mojaloop/central-ledger/compare/v19.0.4...v19.0.5) (2025-01-22)
13
+
14
+
15
+ ### Bug Fixes
16
+
17
+ * **csi-1130:** funds-out transferid regex ([#1150](https://github.com/mojaloop/central-ledger/issues/1150)) ([2e672ad](https://github.com/mojaloop/central-ledger/commit/2e672add79f2d275690fe44c5ce58cbe73d8a6a8))
18
+
5
19
  ### [19.0.4](https://github.com/mojaloop/central-ledger/compare/v19.0.3...v19.0.4) (2025-01-21)
6
20
 
7
21
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mojaloop/central-ledger",
3
- "version": "19.0.4",
3
+ "version": "19.0.6",
4
4
  "description": "Central ledger hosted by a scheme to record and settle transfers",
5
5
  "license": "Apache-2.0",
6
6
  "author": "ModusBox",
@@ -87,17 +87,17 @@
87
87
  "@hapi/hapi": "21.3.12",
88
88
  "@hapi/inert": "7.1.0",
89
89
  "@hapi/vision": "7.0.3",
90
- "@mojaloop/central-services-error-handling": "13.0.3",
91
- "@mojaloop/central-services-health": "15.0.1",
92
- "@mojaloop/central-services-logger": "11.5.2",
93
- "@mojaloop/central-services-metrics": "12.4.3",
94
- "@mojaloop/central-services-shared": "18.15.2",
95
- "@mojaloop/central-services-stream": "11.4.2",
96
- "@mojaloop/database-lib": "11.1.1",
97
- "@mojaloop/event-sdk": "14.1.2",
90
+ "@mojaloop/central-services-error-handling": "13.0.4",
91
+ "@mojaloop/central-services-health": "15.0.2",
92
+ "@mojaloop/central-services-logger": "11.5.4",
93
+ "@mojaloop/central-services-metrics": "12.4.4",
94
+ "@mojaloop/central-services-shared": "18.16.2",
95
+ "@mojaloop/central-services-stream": "11.4.3",
96
+ "@mojaloop/database-lib": "11.1.2",
97
+ "@mojaloop/event-sdk": "14.1.3",
98
98
  "@mojaloop/inter-scheme-proxy-cache-lib": "2.3.1",
99
- "@mojaloop/ml-number": "11.2.5",
100
- "@mojaloop/object-store-lib": "12.0.4",
99
+ "@mojaloop/ml-number": "11.2.6",
100
+ "@mojaloop/object-store-lib": "12.0.5",
101
101
  "@now-ims/hapi-now-auth": "2.1.0",
102
102
  "ajv": "8.17.1",
103
103
  "ajv-keywords": "5.1.0",
@@ -105,7 +105,7 @@
105
105
  "blipp": "4.0.2",
106
106
  "commander": "13.1.0",
107
107
  "cron": "3.5.0",
108
- "decimal.js": "10.4.3",
108
+ "decimal.js": "10.5.0",
109
109
  "docdash": "2.0.2",
110
110
  "event-stream": "4.0.1",
111
111
  "five-bells-condition": "5.0.1",
@@ -148,6 +148,7 @@
148
148
  "tapes": "4.1.0"
149
149
  },
150
150
  "overrides": {
151
+ "undici": "6.21.1",
151
152
  "shins": {
152
153
  "ajv": "6.12.3",
153
154
  "ejs": "3.1.10",
@@ -351,7 +351,7 @@ module.exports = [
351
351
  name: nameValidator,
352
352
  id: Joi.number().integer().positive(),
353
353
  // Some tests still use uuid, so we need to support both uuid and ulid here for now
354
- transferId: Joi.string().pattern(/^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-7][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]}$|^[0-9A-HJKMNP-TV-Z]{26}$6})$/).required()
354
+ transferId: Joi.string().pattern(/^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-7][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$|^[0-9A-HJKMNP-TV-Z]{26})$/).required()
355
355
  })
356
356
  }
357
357
  }