quoting-service 17.13.2 → 17.13.3

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,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.3](https://github.com/mojaloop/quoting-service/compare/v17.13.2...v17.13.3) (2025-09-05)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * rules engine regression ([#428](https://github.com/mojaloop/quoting-service/issues/428)) ([20c94f5](https://github.com/mojaloop/quoting-service/commit/20c94f5040f13fe50721179f9f27531f1a97360d))
11
+
12
+
13
+ ### Chore
14
+
15
+ * **sbom:** update sbom [skip ci] ([b32df35](https://github.com/mojaloop/quoting-service/commit/b32df3588cee53898075f2a7029461e2054ce966))
16
+
5
17
  ### [17.13.2](https://github.com/mojaloop/quoting-service/compare/v17.13.1...v17.13.2) (2025-09-04)
6
18
 
7
19
 
package/config/rules.json CHANGED
@@ -1 +1 @@
1
- []
1
+ []
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.2",
5
+ "version": "17.13.3",
6
6
  "author": "ModusBox",
7
7
  "contributors": [
8
8
  "Georgi Georgiev <georgi.georgiev@modusbox.com>",
@@ -115,10 +115,10 @@
115
115
  "@mojaloop/central-services-error-handling": "13.1.0",
116
116
  "@mojaloop/central-services-health": "15.1.0",
117
117
  "@mojaloop/central-services-logger": "11.9.1",
118
- "@mojaloop/central-services-metrics": "12.6.0",
118
+ "@mojaloop/central-services-metrics": "12.7.0",
119
119
  "@mojaloop/central-services-shared": "18.30.8",
120
- "@mojaloop/central-services-stream": "11.8.5",
121
- "@mojaloop/event-sdk": "14.6.1",
120
+ "@mojaloop/central-services-stream": "11.8.6",
121
+ "@mojaloop/event-sdk": "14.7.0",
122
122
  "@mojaloop/inter-scheme-proxy-cache-lib": "2.6.0",
123
123
  "@mojaloop/ml-number": "11.3.0",
124
124
  "@mojaloop/ml-schema-transformer-lib": "2.7.7",
package/src/model/deps.js CHANGED
@@ -27,7 +27,10 @@
27
27
  /* eslint-disable new-cap */
28
28
 
29
29
  const { Jws } = require('@mojaloop/sdk-standard-components')
30
- const rules = require('../../config/rules.json')
30
+ // Do not specify extension as json to allow for different file formats (js, json, etc)
31
+ // Ref: https://nodejs.org/api/modules.html#file-modules
32
+ // The following line will attempt to load the required filename with the added extensions: .js, .json, and finally .node.
33
+ const rules = require('../../config/rules')
31
34
  const Config = require('../lib/config')
32
35
  const libHttp = require('../lib/http')
33
36
  const libUtil = require('../lib/util')