Skip to content

Commit 0f54101

Browse files
committed
Merge remote-tracking branch 'origin/main' into candidate-0.9.0
2 parents e09f13f + 2a51780 commit 0f54101

23 files changed

Lines changed: 101 additions & 37 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
runs-on: ${{ matrix.os }}
6868
services:
6969
rabbitmq:
70-
image: "bitnami/rabbitmq:3.13.3"
70+
image: "bitnamilegacy/rabbitmq:3.13.3"
7171
env:
7272
# space-delimited list of plugins
7373
RABBITMQ_PLUGINS: "rabbitmq_mqtt"
@@ -79,7 +79,7 @@ jobs:
7979
- "1883:1883" # MQTT port
8080
- "5672:5672" # AMQP port
8181
minio:
82-
image: "bitnami/minio:2024.6.4"
82+
image: "bitnamilegacy/minio:2024.6.4"
8383
env:
8484
MINIO_ROOT_USER: AKIAIOSFODNN7EXAMPLE
8585
MINIO_ROOT_PASSWORD: wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY

.readthedocs.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ sphinx:
1313
# Fail on all warnings to avoid broken references
1414
fail_on_warning: true
1515

16+
formats: all
17+
1618
python:
1719
install:
1820
- method: pip

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
We follow [Common Changelog](https://common-changelog.org/) formatting for this document.
44

5+
## [0.8.4] - 2026-02-05
6+
7+
### Fixed
8+
9+
- Fixed an issue with JSON schema resolution ([commit](https://github.com/INTERSECT-SDK/python-sdk/commit/f4e51ffae0ad94cd12387d664d019afa6cf790c0)) (Lance Drane, Shayan Monadjemi)
10+
511
## [0.8.3] - 2025-05-27
612

713
### Fixed
@@ -64,6 +70,7 @@ _If you are upgrading: please see [`UPGRADING.md`](UPGRADING.md)._
6470

6571
- **Breaking:** Added service-to-service request/response mechanism ([!9](https://github.com/INTERSECT-SDK/python-sdk/pull/9)) (Michael Brim, Lance Drane)
6672

73+
[0.8.3]: https://github.com/INTERSECT-SDK/python-sdk/releases/tag/0.8.3
6774
[0.8.2]: https://github.com/INTERSECT-SDK/python-sdk/releases/tag/0.8.2
6875
[0.8.1]: https://github.com/INTERSECT-SDK/python-sdk/releases/tag/0.8.1
6976
[0.8.0]: https://github.com/INTERSECT-SDK/python-sdk/releases/tag/0.8.0

DEVELOPING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This repository contains the Python SDK for INTERSECT.
44

55
## Documentation
66

7-
Documentation for the INTERSECT Python SDK can be viewed at http://10.64.193.144:30002. The documentation is generated with [Sphinx](https://www.sphinx-doc.org) from the `docs` directory. See the documentation for more information about installation, usage, and examples of the Python SDK for INTERSECT.
7+
Documentation for the INTERSECT Python SDK can be viewed at https://intersect-python-sdk.readthedocs.io/ . The documentation is generated with [Sphinx](https://www.sphinx-doc.org) from the `docs` directory. See the documentation for more information about installation, usage, and examples of the Python SDK for INTERSECT.
88

99
## Quickstart (developers)
1010

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
services:
55
broker:
6-
image: "bitnami/rabbitmq:4.1"
6+
image: "bitnamilegacy/rabbitmq:4.1"
77
ports:
88
- "1883:1883" # MQTT port
99
- "5672:5672" # AMQP port
@@ -22,7 +22,7 @@ services:
2222
timeout: 10s
2323

2424
minio:
25-
image: "bitnami/minio:2024.6.4"
25+
image: "bitnamilegacy/minio:2024.6.4"
2626
environment:
2727
# references: https://github.com/bitnami/containers/blob/main/bitnami/minio/README.md
2828
MINIO_ROOT_USER: AKIAIOSFODNN7EXAMPLE

examples/1_hello_world/hello_service_schema.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"asyncapi": "2.6.0",
3-
"x-intersect-version": "0.8.3",
3+
"x-intersect-version": "0.8.4",
44
"info": {
55
"title": "hello-organization.hello-facility.hello-system.hello-subsystem.hello-service",
66
"description": "INTERSECT schema",
@@ -125,7 +125,7 @@
125125
},
126126
"messageTraits": {
127127
"commonHeaders": {
128-
"messageHeaders": {
128+
"userspaceHeaders": {
129129
"$defs": {
130130
"IntersectDataHandler": {
131131
"description": "What data transfer type do you want to use for handling the request/response?\n\nDefault: MESSAGE",

examples/1_hello_world_amqp/hello_service_schema.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"asyncapi": "2.6.0",
3-
"x-intersect-version": "0.8.3",
3+
"x-intersect-version": "0.8.4",
44
"info": {
55
"title": "hello-organization.hello-facility.hello-system.hello-subsystem.hello-service",
66
"description": "INTERSECT schema",
@@ -125,7 +125,7 @@
125125
},
126126
"messageTraits": {
127127
"commonHeaders": {
128-
"messageHeaders": {
128+
"userspaceHeaders": {
129129
"$defs": {
130130
"IntersectDataHandler": {
131131
"description": "What data transfer type do you want to use for handling the request/response?\n\nDefault: MESSAGE",

examples/1_hello_world_events/hello_service_schema.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"asyncapi": "2.6.0",
3-
"x-intersect-version": "0.8.3",
3+
"x-intersect-version": "0.8.4",
44
"info": {
55
"title": "hello-organization.hello-facility.hello-system.hello-subsystem.hello-service",
66
"description": "INTERSECT schema",
@@ -130,7 +130,7 @@
130130
},
131131
"messageTraits": {
132132
"commonHeaders": {
133-
"messageHeaders": {
133+
"userspaceHeaders": {
134134
"$defs": {
135135
"IntersectDataHandler": {
136136
"description": "What data transfer type do you want to use for handling the request/response?\n\nDefault: MESSAGE",

examples/1_hello_world_minio/hello_service_schema.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"asyncapi": "2.6.0",
3-
"x-intersect-version": "0.8.3",
3+
"x-intersect-version": "0.8.4",
44
"info": {
55
"title": "hello-organization.hello-facility.hello-system.hello-subsystem.hello-service",
66
"description": "INTERSECT schema",
@@ -125,7 +125,7 @@
125125
},
126126
"messageTraits": {
127127
"commonHeaders": {
128-
"messageHeaders": {
128+
"userspaceHeaders": {
129129
"$defs": {
130130
"IntersectDataHandler": {
131131
"description": "What data transfer type do you want to use for handling the request/response?\n\nDefault: MESSAGE",

examples/2_counting/counting_service_schema.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"asyncapi": "2.6.0",
3-
"x-intersect-version": "0.8.3",
3+
"x-intersect-version": "0.8.4",
44
"info": {
55
"title": "counting-organization.counting-facility.counting-system.counting-subsystem.counting-service",
66
"description": "INTERSECT schema",
@@ -226,7 +226,7 @@
226226
},
227227
"messageTraits": {
228228
"commonHeaders": {
229-
"messageHeaders": {
229+
"userspaceHeaders": {
230230
"$defs": {
231231
"IntersectDataHandler": {
232232
"description": "What data transfer type do you want to use for handling the request/response?\n\nDefault: MESSAGE",

0 commit comments

Comments
 (0)