@mojaloop/connection-manager-api 3.2.0-storage-cluster.3 → 3.2.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 +10 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,16 @@
|
|
|
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.2.1](https://github.com/mojaloop/connection-manager-api/compare/v3.2.0...v3.2.1) (2025-11-26)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* cleanup ([7330e33](https://github.com/mojaloop/connection-manager-api/commit/7330e331353179f59582697596232306e3b07204))
|
|
11
|
+
* improve integration tests and add test helpers ([61fb2cb](https://github.com/mojaloop/connection-manager-api/commit/61fb2cb90035a14f9cd95a4b96d3101276d2952b))
|
|
12
|
+
|
|
13
|
+
## [3.2.0](https://github.com/mojaloop/connection-manager-api/compare/v3.2.0-storage-cluster.3...v3.2.0) (2025-11-25)
|
|
14
|
+
|
|
5
15
|
### [3.1.5](https://github.com/mojaloop/connection-manager-api/compare/v3.1.4...v3.1.5) (2025-11-20)
|
|
6
16
|
|
|
7
17
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mojaloop/connection-manager-api",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.1",
|
|
4
4
|
"description": "Mojaloop Connection Manager API",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": "ModusBox",
|
|
@@ -18,9 +18,9 @@
|
|
|
18
18
|
"scripts": {
|
|
19
19
|
"prepare": "husky || true",
|
|
20
20
|
"test": "TEST=true TEST_INT=true SWITCH_ID=switch node --experimental-vm-modules node_modules/.bin/jest --forceExit --runInBand",
|
|
21
|
-
"test:int": "echo 'WARNING: Run \"npm run backend:start\" before executing...\n' &&
|
|
22
|
-
"test-self-signed-server": "TEST_START_SELF_SIGNED_SERVER=true jest --testMatch '**/test/int/**/*self.test.js'",
|
|
23
|
-
"test:unit": "jest --
|
|
21
|
+
"test:int": "echo 'WARNING: Run \"npm run backend:start\" before executing...\n' && node --experimental-vm-modules node_modules/.bin/jest --forceExit --runInBand --selectProjects=integration",
|
|
22
|
+
"test-self-signed-server": "TEST_START_SELF_SIGNED_SERVER=true jest --selectProjects=integration --testMatch '**/test/int/**/*self.test.js'",
|
|
23
|
+
"test:unit": "jest --selectProjects=unit",
|
|
24
24
|
"test:xunit": "npm run test:unit",
|
|
25
25
|
"test-with-coverage": "./docker compose up -d --wait vault-dev && nyc --reporter=text jest --timeout 20000 --colors -exit ; docker compose down -v",
|
|
26
26
|
"test:coverage": "NODE_ENV=test DOTENV_CONFIG_PATH=.env.test nyc --clean jest --require dotenv/config --testMatch '**/test/**/*.test.js' --timeout 20000",
|