Releases: mojaloop/ml-api-adapter
Releases · mojaloop/ml-api-adapter
v14.0.6 Release
v14.0.6-snapshot.1
fix: validation
v14.0.6-snapshot.0
test: coverage
v14.0.5 Release
v14.0.4 Release
14.0.4 (2023-09-04)
v14.0.3 Release
14.0.3 (2023-09-04)
v14.0.2 Release
14.0.2 (2023-08-28)
Bug Fixes
- mojaloop/#3470: pull in performance improved central-services-shared (#512) (ca37d10), closes mojaloop/#3470
v14.0.1 Release
v14.0.0 Release
14.0.0 (2022-05-23)
⚠ BREAKING CHANGES
- mojaloop/#2092: Major version bump for node v16 LTS support, re-structuring of project directories to align to core Mojaloop repositories and docker image now uses
/opt/app
instead of/opt/ml-api-adapter
which will impact config/secret mounts.
Features
- mojaloop/#2092: upgrade nodeJS version for core services (#501) (bcf0b6d), closes mojaloop/#2092
- mojaloop/#2704: core-services support for non-breaking backward api compatibility (#496) (5928511), closes mojaloop/#2704
- mojaloop/#2608: injected resource versions config for outbound requests (#490) (d46a05b), closes mojaloop/#2608
- mojaloop/#2536: fspiop api version negotiation not handled by transfers service (#487) (c4d6b45), closes mojaloop/#2536
v13.0.0 Release
13.0.0 (2022-03-03)
⚠ BREAKING CHANGES
- mojaloop/#2704: - Config PROTOCOL_VERSIONS.CONTENT has now been modified to support backward compatibility for minor versions (i.e. v1.0 & 1.1) as follows:
"PROTOCOL_VERSIONS": { "CONTENT": "1.1", <-- used when generating messages from the "SWITCH", and validate incoming FSPIOP API requests/callbacks CONTENT-TYPE headers "ACCEPT": { "DEFAULT": "1", <-- used when generating messages from the "SWITCH" "VALIDATELIST": [ <-- used to validate incoming FSPIOP API requests/callbacks ACCEPT headers "1", "1.0", "1.1" ] } },
to be consistent with the ACCEPT structure as follows:
"PROTOCOL_VERSIONS": { "CONTENT": { "DEFAULT": "1.1", <-- used when generating messages from the "SWITCH" "VALIDATELIST": [ <-- used to validate incoming FSPIOP API requests/callbacks CONTENT-TYPE headers "1.1", "1.0" ] }, "ACCEPT": { "DEFAULT": "1", <-- used when generating messages from the "SWITCH" "VALIDATELIST": [ <-- used to validate incoming FSPIOP API requests/callbacks ACCEPT headers "1", "1.0", "1.1" ] } },
Features
- mojaloop/#2704: core-services support for non-breaking backward api compatibility (#496) (5928511), closes mojaloop/#2704 mojaloop/#2704