Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [v0.7.10] - 10-09-2025

### Fixed

- Updated the orca core version

## [v0.7.8] - 10-09-2025

### Fixed
Expand Down Expand Up @@ -112,7 +118,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Removed

[unreleased]: https://github.com/Predixus/Orca/compare/v0.7.8...HEAD
[unreleased]: https://github.com/Predixus/Orca/compare/v0.7.11...HEAD
[v0.7.8]: https://github.com/Predixus/Orca/compare/v0.7.10...v0.7.11
[v0.7.8]: https://github.com/Predixus/Orca/compare/v0.7.9...v0.7.10
[v0.7.8]: https://github.com/Predixus/Orca/compare/v0.7.8...v0.7.9
[v0.7.8]: https://github.com/Predixus/Orca/compare/v0.7.7...v0.7.8
[v0.7.7]: https://github.com/Predixus/Orca/compare/v0.7.6...v0.7.7
[v0.7.6]: https://github.com/Predixus/Orca/compare/v0.7.5...v0.7.6
Expand Down
2 changes: 1 addition & 1 deletion orca
Submodule orca updated from 5b994c to 33369b
8 changes: 4 additions & 4 deletions orca_python/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -214,13 +214,13 @@ def EmitWindow(window: Window) -> None:
with grpc.secure_channel(
envs.ORCASERVER, grpc.ssl_channel_credentials()
) as channel:
stub = service_pb2_grpc.OrcaCore(channel)
stub = service_pb2_grpc.OrcaCoreStub(channel)
response = stub.EmitWindow(window_pb)
LOGGER.info(f"Window emitted: {response}")
else:
# insecure channel for local development
with grpc.insecure_channel(envs.ORCASERVER) as channel:
stub = service_pb2_grpc.OrcaCore(channel)
stub = service_pb2_grpc.OrcaCoreStub(channel)
response = stub.EmitWindow(window_pb)
LOGGER.info(f"Window emitted: {response}")

Expand Down Expand Up @@ -656,13 +656,13 @@ def Register(self) -> None:
with grpc.secure_channel(
envs.ORCASERVER, grpc.ssl_channel_credentials()
) as channel:
stub = service_pb2_grpc.OrcaCore(channel)
stub = service_pb2_grpc.OrcaCoreStub(channel)
response = stub.RegisterProcessor(registration_request)
LOGGER.info(f"Algorithm registration response received: {response}")
else:
# insecure channel for local development
with grpc.insecure_channel(envs.ORCASERVER) as channel:
stub = service_pb2_grpc.OrcaCore(channel)
stub = service_pb2_grpc.OrcaCoreStub(channel)
response = stub.RegisterProcessor(registration_request)
LOGGER.info(f"Algorithm registration response received: {response}")

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "orca-python"
version = "0.7.8"
version = "0.7.11"
description = "Python SDK for the Predixus Orca product"
authors = [
"Frederick Mannings <contact@predixus.com>"
Expand Down