|
2 | 2 |
|
3 | 3 | We follow [Common Changelog](https://common-changelog.org/) formatting for this document.
|
4 | 4 |
|
5 |
| -## Unreleased |
| 5 | +## [0.8.2] - 2025-02-21 |
| 6 | + |
| 7 | +### Changed |
| 8 | + |
| 9 | +- Capabilities will now pass validation if they only contain a valid `@intersect_status` ([commit](https://github.com/INTERSECT-SDK/python-sdk/commit/dd41396ec5cb78982ed844e15e43257842e07f7d)) (Lance Drane) |
| 10 | + |
| 11 | +### Fixed |
| 12 | + |
| 13 | +- Do not allow for users to override the `BaseCapability.intersect_sdk_listen_for_service_event` function ([commit](https://github.com/INTERSECT-SDK/python-sdk/commit/387e0d2b134de6c52cbe54a51ff99b9245432335)) |
| 14 | +- Add missing schemas for service-to-service event example ([commit](https://github.com/INTERSECT-SDK/python-sdk/commit/e52902fadf80c2dcbcc79552fcba005d565b57ea)) |
6 | 15 |
|
7 | 16 | ## [0.8.1] - 2025-02-10
|
8 | 17 |
|
9 | 18 | ### Changed
|
10 | 19 |
|
11 |
| -- Events associated with Services are now considered to be persistent ([commit](https://github.com/INTERSECT-SDK/python-sdk/commit/b57d72022f8fc8fb1c25e7985eaf4e18ed2d1904)). If your microservice loses INTERSECT connection and later regains it, it will now handle any events which occurred while disconnected from INTERSECT. |
| 20 | +- Events associated with Services are now considered to be persistent. If your microservice loses INTERSECT connection and later regains it, it will now handle any events which occurred while disconnected from INTERSECT ([commit](https://github.com/INTERSECT-SDK/python-sdk/commit/b57d72022f8fc8fb1c25e7985eaf4e18ed2d1904)) (Lance Drane) |
12 | 21 |
|
13 | 22 | ### Added
|
14 | 23 |
|
15 |
| -- Added ability for services to listen for events from other services ([issue](https://github.com/INTERSECT-SDK/python-sdk/issues/20)) ([commit](https://github.com/INTERSECT-SDK/python-sdk/commit/b57d72022f8fc8fb1c25e7985eaf4e18ed2d1904)) . |
| 24 | +- Added ability for services to listen for events from other services ([issue](https://github.com/INTERSECT-SDK/python-sdk/issues/20)) ([commit](https://github.com/INTERSECT-SDK/python-sdk/commit/b57d72022f8fc8fb1c25e7985eaf4e18ed2d1904)) (Lance Drane) |
16 | 25 |
|
17 | 26 | ## [0.8.0] - 2024-09-10
|
18 | 27 |
|
19 | 28 | _If you are upgrading: please see [`UPGRADING.md`](UPGRADING.md)._
|
20 | 29 |
|
21 | 30 | ### Changed
|
22 | 31 |
|
23 |
| -- **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](https://github.com/INTERSECT-SDK/python-sdk/commit/51ba9a8e0eb8c314014655bb0c989f5f98db715d)) . |
24 |
| -- **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](https://github.com/INTERSECT-SDK/python-sdk/commit/1753a2cce1344a101c7cc41f91c6ed3467b1be52)) . |
25 |
| -- **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](https://github.com/INTERSECT-SDK/python-sdk/commit/1753a2cce1344a101c7cc41f91c6ed3467b1be52)) . |
| 32 | +- **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](https://github.com/INTERSECT-SDK/python-sdk/commit/51ba9a8e0eb8c314014655bb0c989f5f98db715d)) (Lance Drane) |
| 33 | +- **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](https://github.com/INTERSECT-SDK/python-sdk/commit/1753a2cce1344a101c7cc41f91c6ed3467b1be52)) (Lance Drane) |
| 34 | +- **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](https://github.com/INTERSECT-SDK/python-sdk/commit/1753a2cce1344a101c7cc41f91c6ed3467b1be52)) (Lance Drane) |
26 | 35 |
|
27 | 36 | ### Fixed
|
28 | 37 |
|
29 |
| -- Fixed issue with multiple service-to-service calls causing thread deadlocking ([commit](https://github.com/INTERSECT-SDK/python-sdk/commit/51ba9a8e0eb8c314014655bb0c989f5f98db715d)) . |
30 |
| -- Correctly incorporates capabilities into internal schema generation ([commit](https://github.com/INTERSECT-SDK/python-sdk/commit/1753a2cce1344a101c7cc41f91c6ed3467b1be52)) . |
31 |
| -- Removed MINIO from examples which do not use MINIO ([commit](https://github.com/INTERSECT-SDK/python-sdk/commit/1753a2cce1344a101c7cc41f91c6ed3467b1be52)) . |
| 38 | +- Fixed issue with multiple service-to-service calls causing thread deadlocking ([commit](https://github.com/INTERSECT-SDK/python-sdk/commit/51ba9a8e0eb8c314014655bb0c989f5f98db715d)) (Lance Drane) |
| 39 | +- Correctly incorporates capabilities into internal schema generation ([commit](https://github.com/INTERSECT-SDK/python-sdk/commit/1753a2cce1344a101c7cc41f91c6ed3467b1be52)) (Lance Drane) |
| 40 | +- Removed MINIO from examples which do not use MINIO ([commit](https://github.com/INTERSECT-SDK/python-sdk/commit/1753a2cce1344a101c7cc41f91c6ed3467b1be52)) (Lance Drane) |
32 | 41 |
|
33 | 42 | ### Added
|
34 | 43 |
|
35 |
| -- **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](https://github.com/INTERSECT-SDK/python-sdk/commit/1753a2cce1344a101c7cc41f91c6ed3467b1be52)) . |
36 |
| -- 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](https://github.com/INTERSECT-SDK/python-sdk/commit/51ba9a8e0eb8c314014655bb0c989f5f98db715d)) . |
37 |
| -- Added an example which uses MINIO ([commit](https://github.com/INTERSECT-SDK/python-sdk/commit/1753a2cce1344a101c7cc41f91c6ed3467b1be52)) . |
| 44 | +- **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](https://github.com/INTERSECT-SDK/python-sdk/commit/1753a2cce1344a101c7cc41f91c6ed3467b1be52)) (Lance Drane) |
| 45 | +- 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](https://github.com/INTERSECT-SDK/python-sdk/commit/51ba9a8e0eb8c314014655bb0c989f5f98db715d)) (Lance Drane) |
| 46 | +- Added an example which uses MINIO ([commit](https://github.com/INTERSECT-SDK/python-sdk/commit/1753a2cce1344a101c7cc41f91c6ed3467b1be52)) (Lance Drane) |
38 | 47 |
|
39 | 48 | ## [0.7.0] - 2024-08-21
|
40 | 49 |
|
41 | 50 | _If you are upgrading: please see [`UPGRADING.md`](UPGRADING.md)._
|
42 | 51 |
|
43 | 52 | ### Changed
|
44 | 53 |
|
45 |
| -- **Breaking:** Services now work with multiple Capabilities instead of a single Capability ([!9](https://github.com/INTERSECT-SDK/python-sdk/pull/9)) . |
46 |
| -- **Breaking:** Renamed `IntersectClientMessageParams` to `IntersectDirectMessageParams` ([commit](https://github.com/INTERSECT-SDK/python-sdk/commit/ae0dab312b9ebdb87bc5a9bb62404d9b18953dfe)) |
| 54 | +- **Breaking:** Services now work with multiple Capabilities instead of a single Capability ([!9](https://github.com/INTERSECT-SDK/python-sdk/pull/9)) (Michael Brim, Lance Drane) |
| 55 | +- **Breaking:** Renamed `IntersectClientMessageParams` to `IntersectDirectMessageParams` ([commit](https://github.com/INTERSECT-SDK/python-sdk/commit/ae0dab312b9ebdb87bc5a9bb62404d9b18953dfe)) (Lance Drane) |
47 | 56 |
|
48 | 57 | ### Added
|
49 | 58 |
|
50 |
| -- **Breaking:** Added service-to-service request/response mechanism ([!9](https://github.com/INTERSECT-SDK/python-sdk/pull/9)) . |
| 59 | +- **Breaking:** Added service-to-service request/response mechanism ([!9](https://github.com/INTERSECT-SDK/python-sdk/pull/9)) (Michael Brim, Lance Drane) |
51 | 60 |
|
| 61 | +[0.8.2]: https://github.com/INTERSECT-SDK/python-sdk/releases/tag/0.8.2 |
52 | 62 | [0.8.1]: https://github.com/INTERSECT-SDK/python-sdk/releases/tag/0.8.1
|
53 | 63 | [0.8.0]: https://github.com/INTERSECT-SDK/python-sdk/releases/tag/0.8.0
|
54 | 64 | [0.7.0]: https://github.com/INTERSECT-SDK/python-sdk/releases/tag/0.7.0
|
0 commit comments