Skip to content

Releases: mojaloop/account-lookup-service

v14.2.1 Release

12 Jul 09:52
Compare
Choose a tag to compare

14.2.1 (2023-07-12)

Bug Fixes

  • added missing metrics initialisation (#458) (fd0d87b)

v14.2.0 Release

11 Jul 15:01
Compare
Choose a tag to compare

14.2.0 (2023-07-11)

Features

v14.1.0 Release

25 Nov 14:37
Compare
Choose a tag to compare

14.1.0 (2022-11-25)

Features

v14.0.0 Release

20 Jun 14:12
Compare
Choose a tag to compare

14.0.0 (2022-06-20)

⚠ 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/account-lookup-service which will impact config mounts. Also, take note of the knexfile.js defined in the Helm charts which have hard-coded directories which should also be changed to reflect this change.

Features

Bug Fixes

  • package.json & package-lock.json to reduce vulnerabilities (#443) (812671e)
  • mojaloop/#2704: core-services support for non-breaking backward api compatibility (#436) (5900e52), closes mojaloop/#2704
  • mojaloop/#2608: injected resource versions config for outbound requests (#432) (9df1d88), closes mojaloop/#2608
  • mojaloop/#2534: fspiop api version negotiation not handled by account lookup service (#430) (f1cf4a3), closes mojaloop/#2534
  • mojaloop/#2505: als-subid-error-callback-endpoint-not-implemented (#429) (6051259), closes mojaloop/#2505
  • mojaloop/#2470: central-services-shared streamingprotocol encode/decode functionality fix (#428) (2f5d26a), closes mojaloop/#2470
  • #2358-2: firstname, middlename and lastname regex not supporting myanmar script unicode strings (#425) (7a61510), closes #2358-2 mojaloop/#2374
  • mojaloop/#2374: ALS is sending out multiple requests to participants for both Oracle records that match non-subId and subId result set (#424) (3639ddc), closes mojaloop/#2374

v13.0.0 Release

04 Mar 11:29
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

Bug Fixes

  • #2704 core services support for non breaking backward api compatibility (#438) (273bd7d)

Chore

  • deps: bump follow-redirects from 1.14.5 to 1.14.7 (#433) (d7a715a)

v12.1.0 Release

14 Dec 10:49
Compare
Choose a tag to compare

12.1.0 (2021-12-14)

Features

v12.0.0 Release

05 Nov 12:31
Compare
Choose a tag to compare

12.0.0 (2021-11-05)

⚠ BREAKING CHANGES

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

v11.8.0 Release

28 Sep 11:18
Compare
Choose a tag to compare

11.8.0 (2021-09-28)

Features

v11.7.7 Release

10 Sep 17:10
Compare
Choose a tag to compare

11.7.7 (2021-09-10)

Bug Fixes

  • mojaloop/#2470: central-services-shared streamingprotocol encode/decode functionality fix (#428) (2f5d26a), closes mojaloop/#2470

v11.7.6 Release

09 Sep 17:25
Compare
Choose a tag to compare

11.7.6 (2021-09-09)

Bug Fixes

  • updated circleci config for slack env var typo fix (#427) (a9b03d2)

Known Issues

  • central-services-shared streamingProtocol encode/decode functionality working incorrectly - mojaloop/#2470