Skip to content

Latest commit

 

History

History
190 lines (103 loc) · 9.33 KB

CHANGELOG.md

File metadata and controls

190 lines (103 loc) · 9.33 KB

Changelog

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

17.0.0 (2023-11-06)

Bug Fixes

16.0.1 (2023-10-20)

Bug Fixes

  • mojaloop/#3589: fix mongoose 'promiseLibrary' option bug (#102) (b770c0a), closes #3589

16.0.0 (2023-09-14)

CI

  • fix nodejs version for image and license scans (#100) (0389050)

15.0.4 (2023-09-12)

Chore

15.0.3 (2023-03-30)

Bug Fixes

15.0.2 (2023-03-29)

Bug Fixes

  • removed connection string for mongodb being logged to log (#97) (839f515)

15.0.1 (2023-03-29)

Bug Fixes

  • mojaloop/#3255: mongoDB connection uRI failing when auth details contain special chars (#96) (5ceb464), closes mojaloop/#3255

15.0.0 (2023-02-22)

⚠ BREAKING CHANGES

  • mojaloop/#3131: seperate mongo uri config (#95)

Features

14.2.0 (2022-11-11)

Features

  • mojaloop/2867: switch as fspiop source (#90) (af5680d)

14.1.1 (2022-08-18)

Bug Fixes

  • mojaloop/#2863: fix put callback http code (#89) (c6699ad)

14.1.0 (2022-08-12)

Features

  • mojaloop/#2796: duplicate transaction not getting callback for post /bulkTransfers (#86) (fcc7799), closes mojaloop/#2796

14.0.2 (2022-08-11)

Bug Fixes

  • remove buiness logic from bulk-api-adapter (#87) (4fac6a8)

14.0.1 (2022-08-01)

Bug Fixes

  • update bulkPrepare kafka message to use headers (#83) (4c39f3d)

14.0.0 (2022-07-07)

⚠ BREAKING CHANGES

  • upgrade ci, image, packages, audit (#82)

Features

  • upgrade ci, image, packages, audit (#82) (a7c67bd)

13.0.1 (2022-03-07)

Bug Fixes

  • core-services support for non-breaking backward api compatibility (#77) (d3275b0), closes #2704

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 (#74) (62afc4e), closes mojaloop/#2704

12.1.0 (2021-12-14)

Features

12.0.2 (2021-11-22)

Bug Fixes

12.0.1 (2021-11-18)

12.0.0 (2021-11-17)

⚠ BREAKING CHANGES

  • mojaloop/#2538: 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