@mojaloop/ml-testing-toolkit-shared-lib 14.0.2 → 14.0.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/.nvmrc +1 -1
- package/CHANGELOG.md +7 -0
- package/CODEOWNERS +1 -1
- package/LICENSE.md +4 -5
- package/audit-ci.jsonc +1 -5
- package/package.json +8 -3
package/.nvmrc
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
18.
|
|
1
|
+
18.20.4
|
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,11 @@
|
|
|
1
1
|
# Changelog: [mojaloop/als-consent-oracle](https://github.com/mojaloop/als-consent-oracle)
|
|
2
|
+
### [14.0.3](https://github.com/mojaloop/ml-testing-toolkit-shared-lib/compare/v14.0.2...v14.0.3) (2025-01-24)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Chore
|
|
6
|
+
|
|
7
|
+
* maintenance updates ([#19](https://github.com/mojaloop/ml-testing-toolkit-shared-lib/issues/19)) ([1f8df13](https://github.com/mojaloop/ml-testing-toolkit-shared-lib/commit/1f8df132db1da282c011066d8abeb9c1a2af1f60))
|
|
8
|
+
|
|
2
9
|
### [14.0.2](https://github.com/mojaloop/ml-testing-toolkit-shared-lib/compare/v14.0.1...v14.0.2) (2024-11-25)
|
|
3
10
|
|
|
4
11
|
|
package/CODEOWNERS
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
## @global-owner1 and @global-owner2 will be requested for
|
|
5
5
|
## review when someone opens a pull request.
|
|
6
6
|
#* @global-owner1 @global-owner2
|
|
7
|
-
* @vijayg10 @
|
|
7
|
+
* @vijayg10 @elnyry-sam-k @bushjames @gibaros @shashi165
|
|
8
8
|
## Order is important; the last matching pattern takes the most
|
|
9
9
|
## precedence. When someone opens a pull request that only
|
|
10
10
|
## modifies JS files, only @js-owner and not the global
|
package/LICENSE.md
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
# LICENSE
|
|
2
2
|
|
|
3
|
-
Copyright ©
|
|
3
|
+
Copyright © 2020-2024 Mojaloop Foundation
|
|
4
4
|
|
|
5
|
-
The Mojaloop files are made available by the
|
|
6
|
-
(the "License") and you may not use these files except in compliance with the [License](http://www.apache.org/licenses/LICENSE-2.0). You may obtain a copy of the License at
|
|
5
|
+
The Mojaloop files are made available by the Mojaloop Foundation under the Apache License, Version 2.0 (the "License") and you may not use these files except in compliance with the License.
|
|
7
6
|
|
|
8
|
-
|
|
7
|
+
You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
|
|
9
8
|
|
|
10
|
-
Unless required by applicable law or agreed to in writing, the Mojaloop files are distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the
|
|
9
|
+
Unless required by applicable law or agreed to in writing, the Mojaloop files are distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
|
package/audit-ci.jsonc
CHANGED
|
@@ -3,9 +3,5 @@
|
|
|
3
3
|
// audit-ci supports reading JSON, JSONC, and JSON5 config files.
|
|
4
4
|
// Only use one of ["low": true, "moderate": true, "high": true, "critical": true]
|
|
5
5
|
"moderate": true,
|
|
6
|
-
"allowlist": [
|
|
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
|
|
10
|
-
]
|
|
6
|
+
"allowlist": []
|
|
11
7
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mojaloop/ml-testing-toolkit-shared-lib",
|
|
3
|
-
"version": "14.0.
|
|
3
|
+
"version": "14.0.3",
|
|
4
4
|
"description": "Shared library for ml-testing-toolkit re-usable functions",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"contributors": [
|
|
@@ -55,19 +55,24 @@
|
|
|
55
55
|
"node-dir": "0.1.17"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
|
-
"@commitlint/cli": "^19.6.
|
|
58
|
+
"@commitlint/cli": "^19.6.1",
|
|
59
59
|
"@commitlint/config-conventional": "^19.6.0",
|
|
60
60
|
"@types/jest": "29.5.14",
|
|
61
61
|
"audit-ci": "^7.1.0",
|
|
62
62
|
"husky": "^9.1.7",
|
|
63
63
|
"jest": "29.7.0",
|
|
64
64
|
"jest-junit": "16.0.0",
|
|
65
|
-
"npm-check-updates": "17.1.
|
|
65
|
+
"npm-check-updates": "17.1.14",
|
|
66
66
|
"pre-commit": "^1.2.2",
|
|
67
67
|
"replace": "^1.2.2",
|
|
68
68
|
"standard": "^17.1.2",
|
|
69
69
|
"standard-version": "^9.5.0"
|
|
70
70
|
},
|
|
71
|
+
"overrides": {
|
|
72
|
+
"cross-spawn": "7.0.6",
|
|
73
|
+
"glob": "9.3.5",
|
|
74
|
+
"rimraf": "5.0.10"
|
|
75
|
+
},
|
|
71
76
|
"standard-version": {
|
|
72
77
|
"scripts": {
|
|
73
78
|
"postchangelog": "replace '\\[mojaloop/#(\\d+)\\]\\(https://github.com/mojaloop/(.*)/issues/(\\d+)\\)' '[mojaloop/#$1](https://github.com/mojaloop/project/issues/$1)' CHANGELOG.md"
|