Skip to content

Commit

Permalink
chore(release): 13.0.0 [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
mojaloopci committed Mar 3, 2022
1 parent 5928511 commit 777dc85
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 2 deletions.
47 changes: 47 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,53 @@

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.

## [13.0.0](https://github.com/mojaloop/ml-api-adapter/compare/v12.3.0...v13.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](https://github.com/mojaloop/ml-api-adapter/issues/496)) ([5928511](https://github.com/mojaloop/ml-api-adapter/commit/5928511dcb9780d8c9751bc22322e1f0331ef6e3)), closes [mojaloop/#2704](https://github.com/mojaloop/ml-api-adapter/issues/2704) [mojaloop/#2704](https://github.com/mojaloop/ml-api-adapter/issues/2704)

## [12.3.0](https://github.com/mojaloop/ml-api-adapter/compare/v12.2.0...v12.3.0) (2022-02-25)


Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mojaloop/ml-api-adapter",
"version": "12.3.0",
"version": "13.0.0",
"description": "Convert from ML API to/from internal Central Services messaging format",
"license": "Apache-2.0",
"private": true,
Expand Down

0 comments on commit 777dc85

Please sign in to comment.