Skip to content

Latest commit

 

History

History
54 lines (32 loc) · 3.9 KB

CHANGELOG.md

File metadata and controls

54 lines (32 loc) · 3.9 KB

Changelog

We follow Common Changelog formatting for this document.

Unreleased

0.8.1 - 2025-02-10

Changed

  • Events associated with Services are now considered to be persistent (commit). If your microservice loses INTERSECT connection and later regains it, it will now handle any events which occurred while disconnected from INTERSECT.

Added

  • Added ability for services to listen for events from other services (issue) (commit) .

0.8.0 - 2024-09-10

If you are upgrading: please see UPGRADING.md.

Changed

  • Breaking: Service-to-service callback functions now take in four arguments (request message source, request message operation, error flag, response payload) instead of one (commit) .
  • Breaking: IntersectBaseCapabilityImplementation.capability_name renamed to IntersectBaseCapabilityImplementation.intersect_sdk_capability_name. This should now be explicitly defined as a class variable instead of an instance variable (commit) .
  • Breaking: get_schema_from_capability_implementation renamed to get_schema_from_capability_implementations and now takes in a list of Capabilities instead of a single capability (commit) .

Fixed

  • Fixed issue with multiple service-to-service calls causing thread deadlocking (commit) .
  • Correctly incorporates capabilities into internal schema generation (commit) .
  • Removed MINIO from examples which do not use MINIO (commit) .

Added

  • Breaking: Added basic validation logic for capability names. This causes the application to error out if using a duplicate capability name, or if using a capability name which is not an alphanumeric string (hyphens and underscores allowed) (commit) .
  • Added 'timeout' parameter to IntersectBaseCapabilityImplementation.intersect_sdk_call_service. This is a floating point value which represents (in number of seconds) how long to wait for a response from the service. By default, the service will wait 300 seconds (commit) .
  • Added an example which uses MINIO (commit) .

0.7.0 - 2024-08-21

If you are upgrading: please see UPGRADING.md.

Changed

  • Breaking: Services now work with multiple Capabilities instead of a single Capability (!9) .
  • Breaking: Renamed IntersectClientMessageParams to IntersectDirectMessageParams (commit)

Added

  • Breaking: Added service-to-service request/response mechanism (!9) .