Skip to content

v15.0.0 Release

Compare
Choose a tag to compare
@mojaloopci mojaloopci released this 22 Jun 18:14

15.0.0 (2022-06-22)

πŸ›‘ BREAKING CHANGES

Configuration files will need to be updated. Configuration keys are now camelCase or more specifically changed to align with sdk-scheme-adapter due to in progress websocket live reconfiguration functionality. New values have been added for the in progress reconfiguration functionality.

Please view https://github.com/mojaloop/thirdparty-sdk/blob/f90a133ed3f2ed021743aae9ba93d21b19144af7/config/integration.json for example configuration.

Another breaking change is the removal of functionality to start inbound/outbound servers separately. Inbound and outbound servers are now booted up together in a main Server class.
This change was a necessary refactor to get reconfiguration to work.

Please use npm run start instead of npm run start:inbound or npm run start:outbound and remove the duplicate thirdparty-sdk you might have running the inbound/outbound servers separately in the past in your deployment (i.e a participant should only have one thirdparty-sdk in a deployment). You will also need to update tests to point towards the now singular thirdparty hostname. Port 4005 is inbound and 4006 for outbound.

  • add ws client to pull updated configuration (#147)

Features

  • add ws client to pull updated configuration (#147) (6e2e2a8)

Maintenance