Skip to content

Releases: mojaloop/bulk-api-adapter

v15.0.1 Release

29 Mar 12:29
Compare
Choose a tag to compare

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

v15.0.0 Release

22 Feb 14:55
Compare
Choose a tag to compare

15.0.0 (2023-02-22)

⚠ BREAKING CHANGES

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

Features

v14.2.0 Release

11 Nov 07:49
Compare
Choose a tag to compare

14.2.0 (2022-11-11)

Features

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

v14.1.1 Release

18 Aug 13:26
Compare
Choose a tag to compare

14.1.1 (2022-08-18)

Bug Fixes

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

v14.1.0 Release

12 Aug 13:53
Compare
Choose a tag to compare

14.1.0 (2022-08-12)

Features

v14.0.2 Release

11 Aug 15:55
Compare
Choose a tag to compare

14.0.2 (2022-08-11)

Bug Fixes

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

v14.0.1 Release

01 Aug 15:02
Compare
Choose a tag to compare

14.0.1 (2022-08-01)

Bug Fixes

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

v14.0.0 Release

07 Jul 12:22
Compare
Choose a tag to compare

14.0.0 (2022-07-07)

⚠ BREAKING CHANGES

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

In deployments, files now need to be mounted to /opt/app/ instead of /opt/bulk-api-adapter/
v14.0.0 features the bump to Node LTS.

Features

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

v13.0.1 Release

07 Mar 11:19
Compare
Choose a tag to compare

13.0.1 (2022-03-07)

Bug Fixes

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

v13.0.0 Release

04 Mar 12:18
Compare
Choose a tag to compare

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