Skip to content

Releases: mojaloop/transaction-requests-service

v13.0.0 Release

04 Mar 12:15
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

v12.0.1 Release

05 Nov 12:25
Compare
Choose a tag to compare

12.0.1 (2021-11-05)

Bug Fixes

v12.0.0 Release

03 Nov 12:34
Compare
Choose a tag to compare

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

v11.1.7 Release

14 Sep 11:19
Compare
Choose a tag to compare

11.1.7 (2021-09-14)

v11.1.6 Release

14 Sep 10:56
Compare
Choose a tag to compare

Changelog

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

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)

v11.1.5 Release

04 Jun 16:07
71c8a4b
Compare
Choose a tag to compare

change-log for this release

  • feat(2151): helm-release-v12.1.0
    • Updated dependencies
    • Migrated 'ml-testing-toolkit-shared-lib' dependency to '@mojaloop/ml-testing-toolkit-shared-lib'
    • Bump to patch version
    • Added Jest types to devDependecies to correctly show Jest functions without errors in IDE (e.g. vscode)
    • Updated Unit tests to reflect
    • Added support for URI Path params to be generated by Mockgen
    • Fixes for audit resolve

v11.1.4 Release

09 Feb 07:55
7a290a1
Compare
Choose a tag to compare

change-log for this release:

  • chore: update license file (PR #58)
  • chore: Bump ini from 1.3.5 to 1.3.7 (PR #59)
  • chore: Bump node-notifier from 8.0.0 to 8.0.1 (PR #62)
  • feat(ci/cd): add pr title check (PR #64)
  • chore: create codeowners file (PR #65)
  • chore: maintenance updates for vulns fixes (PR #66)

v11.1.3 Release

08 Dec 15:02
26bca29
Compare
Choose a tag to compare

Hotfix:

  • Fixes to OpenAPI v3 specification document:
    • Changed all params to references
    • Updated all schemas to references
    • Added missing params
    • Fixed quotation characters, i.e. -> "
    • Resolved bug mojaloop/project#1887

Maintenance:

  • Removed Swagger v2 interface specification, re-moved Swagger tools that only support Swagger v2. The code is now fully dependent on the OpenAPI v3 Spec document. I.e. only one spec doc :D/
  • Refactored existing code/unit-tests to work with OpenAPI v3 API specifications
  • Added OpenAPI v3 request generator as helper util
  • Cleaned-up unused dependencies in code
  • Cleaned-up unused dependencies/scripts in package.json
  • Updated dependencies to latest versions

v11.1.2 Release

02 Oct 10:20
f09222f
Compare
Choose a tag to compare

Changelog:

  • Updated dependencies for helm 11 release

v11.1.1

22 Sep 07:18
2f2983a
Compare
Choose a tag to compare

Changelog of this release

  • updated shared library to support header changes of resource API version only of messages originated from the switch