Skip to content

Latest commit

 

History

History
145 lines (84 loc) · 7.41 KB

CHANGELOG.md

File metadata and controls

145 lines (84 loc) · 7.41 KB

Changelog

All notable changes to this project will be documented in this file. See standard-version for commit guidelines.

14.3.1 (2024-10-01)

Bug Fixes

14.3.0 (2024-09-25)

Features

14.2.0 (2024-06-26)

Features

14.1.3 (2024-06-12)

Chore

  • dependency updates and minor maintenance (#102) (5dcaa41)

14.1.2 (2023-11-07)

Bug Fixes

14.1.1 (2023-09-14)

Chore

14.1.0 (2022-11-28)

Features

14.0.1 (2022-07-14)

Bug Fixes

  • handle unhandled promise rejections (#91) (9b9b7e4)

14.0.0 (2022-07-13)

⚠ BREAKING CHANGES

  • upgrade node to lts, ci, image, packages, audit (#90)

Features

  • upgrade node to lts, ci, image, packages, audit (#90) (0b14d0a)

13.0.0 (2022-03-04)

⚠ 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 (#85) (974c66d), closes mojaloop/#2704

12.0.1 (2021-11-05)

Bug Fixes

12.0.0 (2021-11-03)

⚠ BREAKING CHANGES

  • mojaloop/#2537: Forcing a major version change for awareness of the config changes. The LIB_RESOURCE_VERSIONS env var is now deprecated, and this is now also controlled by the PROTOCOL_VERSIONS config in the default.json. This has been done for consistency between all API services going forward and unifies the config for both inbound and outbound Protocol API validation/transformation features.

Bug Fixes

11.1.7 (2021-09-14)

11.1.6 (2021-09-14)

Bug Fixes

  • ci-cd caching issues (#78) (c7716cc)
  • mojaloop-2358: party name regex not supporting myanmar script unicode strings (#77) (8afe278)