@mojaloop/ml-testing-toolkit-shared-lib 14.0.0 → 14.0.2

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/.ncurc.yaml CHANGED
@@ -1,6 +1,7 @@
1
1
  ## Add a TODO comment indicating the reason for each rejected dependency upgrade added to this list, and what should be done to resolve it (i.e. handle it through a story, etc).
2
2
  reject: [
3
3
  # Downgraded to 5.5.3 - Reason: removal of functional code in faker.js - https://github.com/advisories/GHSA-5w9c-rv96-fr7g
4
- "faker"
5
-
4
+ "faker",
5
+ # json-schema-faker v0.5.0 - Reason: Introduces some url rendering issues and has huge changes between v0.5.0-rcv.46 and v0.5.0
6
+ "json-schema-faker"
6
7
  ]
package/CHANGELOG.md CHANGED
@@ -1,4 +1,18 @@
1
1
  # Changelog: [mojaloop/als-consent-oracle](https://github.com/mojaloop/als-consent-oracle)
2
+ ### [14.0.2](https://github.com/mojaloop/ml-testing-toolkit-shared-lib/compare/v14.0.1...v14.0.2) (2024-11-25)
3
+
4
+
5
+ ### Bug Fixes
6
+
7
+ * update dependencies to avoid CVE-2024-21534 ([#18](https://github.com/mojaloop/ml-testing-toolkit-shared-lib/issues/18)) ([65c9015](https://github.com/mojaloop/ml-testing-toolkit-shared-lib/commit/65c90151c1113274f822aaa98f6ab47d575c7422))
8
+
9
+ ### [14.0.1](https://github.com/mojaloop/ml-testing-toolkit-shared-lib/compare/v14.0.0...v14.0.1) (2024-01-04)
10
+
11
+
12
+ ### Bug Fixes
13
+
14
+ * **mojaloop/#3459:** fix regression in ui due to library ([#15](https://github.com/mojaloop/ml-testing-toolkit-shared-lib/issues/15)) ([328302a](https://github.com/mojaloop/ml-testing-toolkit-shared-lib/commit/328302a070f4d87f183a57e0e05cb56328e5d125))
15
+
2
16
  ## [14.0.0](https://github.com/mojaloop/ml-testing-toolkit-shared-lib/compare/v13.0.0...v14.0.0) (2023-09-25)
3
17
 
4
18
 
package/audit-ci.jsonc CHANGED
@@ -4,6 +4,8 @@
4
4
  // Only use one of ["low": true, "moderate": true, "high": true, "critical": true]
5
5
  "moderate": true,
6
6
  "allowlist": [
7
- "GHSA-c2qf-rxjj-qqgw" // https://github.com/advisories/GHSA-c2qf-rxjj-qqgw
7
+ "GHSA-c2qf-rxjj-qqgw", // https://github.com/advisories/GHSA-c2qf-rxjj-qqgw
8
+ "GHSA-67hx-6x53-jw92", // https://github.com/advisories/GHSA-67hx-6x53-jw92
9
+ "GHSA-3xgq-45jj-v275" // https://github.com/advisories/GHSA-3xgq-45jj-v275
8
10
  ]
9
- }
11
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mojaloop/ml-testing-toolkit-shared-lib",
3
- "version": "14.0.0",
3
+ "version": "14.0.2",
4
4
  "description": "Shared library for ml-testing-toolkit re-usable functions",
5
5
  "main": "src/index.js",
6
6
  "contributors": [
@@ -42,30 +42,30 @@
42
42
  "audit:fix": "npm audit fix",
43
43
  "dep:check": "npx ncu -e 2",
44
44
  "dep:update": "npx ncu -u",
45
- "prepare": "husky install",
45
+ "prepare": "husky || true",
46
46
  "release": "npx standard-version --no-verify --releaseCommitMessageFormat 'chore(release): {{currentTag}} [skip ci]'",
47
47
  "snapshot": "npx standard-version --no-verify --skip.changelog --prerelease snapshot --releaseCommitMessageFormat 'chore(snapshot): {{currentTag}}'"
48
48
  },
49
49
  "dependencies": {
50
- "ajv": "8.12.0",
50
+ "ajv": "8.17.1",
51
51
  "faker": "5.5.3",
52
- "json-schema-faker": "0.5.3",
52
+ "json-schema-faker": "0.5.8",
53
53
  "json-schema-ref-parser": "9.0.9",
54
54
  "lodash": "4.17.21",
55
55
  "node-dir": "0.1.17"
56
56
  },
57
57
  "devDependencies": {
58
- "@commitlint/cli": "^17.7.1",
59
- "@commitlint/config-conventional": "^17.7.0",
60
- "@types/jest": "29.5.5",
61
- "audit-ci": "^6.6.1",
62
- "husky": "^8.0.3",
58
+ "@commitlint/cli": "^19.6.0",
59
+ "@commitlint/config-conventional": "^19.6.0",
60
+ "@types/jest": "29.5.14",
61
+ "audit-ci": "^7.1.0",
62
+ "husky": "^9.1.7",
63
63
  "jest": "29.7.0",
64
64
  "jest-junit": "16.0.0",
65
- "npm-check-updates": "16.14.4",
65
+ "npm-check-updates": "17.1.11",
66
66
  "pre-commit": "^1.2.2",
67
67
  "replace": "^1.2.2",
68
- "standard": "^17.1.0",
68
+ "standard": "^17.1.2",
69
69
  "standard-version": "^9.5.0"
70
70
  },
71
71
  "standard-version": {