diff --git a/CHANGELOG.md b/CHANGELOG.md index 8afa110..7d8cda3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [v0.7.14] - 15-09-2025 + ## [v0.7.12] - 15-09-2025 ### Added @@ -124,10 +126,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Removed -[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 +[unreleased]: https://github.com/Predixus/Orca/compare/v0.7.14...HEAD +[v0.7.14]: https://github.com/Predixus/Orca/compare/v0.7.13...v0.7.14 +[v0.7.13]: https://github.com/Predixus/Orca/compare/v0.7.12...v0.7.13 +[v0.7.12]: https://github.com/Predixus/Orca/compare/v0.7.11...v0.7.12 +[v0.7.11]: https://github.com/Predixus/Orca/compare/v0.7.10...v0.7.11 +[v0.7.10]: https://github.com/Predixus/Orca/compare/v0.7.9...v0.7.10 +[v0.7.9]: 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 diff --git a/orca_python/main.py b/orca_python/main.py index 699f81c..de8f7b9 100644 --- a/orca_python/main.py +++ b/orca_python/main.py @@ -369,9 +369,11 @@ def __init__(self, name: str, max_workers: int = 10): super().__init__() self._name = name self._processorConnStr = ( - f"0.0.0.0:{envs.PORT}" # attach the processor to all network interfaces. + f"[::]:{envs.PORT}" # attach the processor to all network interfaces. ) - self._orcaProcessorConnStr = f"{envs.HOST}:{envs.PORT}" # tell orca-core to reference this processor by this address. + self._orcaProcessorConnStr = ( + envs.HOST + ) # tell orca-core to reference this processor by this address. self._runtime = sys.version self._max_workers = max_workers self._algorithmsSingleton: Algorithms = Algorithms() @@ -709,6 +711,7 @@ def Start(self) -> None: # start the server server.start() + LOGGER.info("Server started successfully") # setup graceful shutdown diff --git a/poetry.lock b/poetry.lock index 2de197c..cedf966 100644 --- a/poetry.lock +++ b/poetry.lock @@ -402,21 +402,21 @@ poetry-plugin = ["poetry (>=1.2.0,<3.0.0) ; python_version < \"4.0\""] [[package]] name = "protobuf" -version = "6.32.0" +version = "6.32.1" description = "" optional = false python-versions = ">=3.9" groups = ["main"] files = [ - {file = "protobuf-6.32.0-cp310-abi3-win32.whl", hash = "sha256:84f9e3c1ff6fb0308dbacb0950d8aa90694b0d0ee68e75719cb044b7078fe741"}, - {file = "protobuf-6.32.0-cp310-abi3-win_amd64.whl", hash = "sha256:a8bdbb2f009cfc22a36d031f22a625a38b615b5e19e558a7b756b3279723e68e"}, - {file = "protobuf-6.32.0-cp39-abi3-macosx_10_9_universal2.whl", hash = "sha256:d52691e5bee6c860fff9a1c86ad26a13afbeb4b168cd4445c922b7e2cf85aaf0"}, - {file = "protobuf-6.32.0-cp39-abi3-manylinux2014_aarch64.whl", hash = "sha256:501fe6372fd1c8ea2a30b4d9be8f87955a64d6be9c88a973996cef5ef6f0abf1"}, - {file = "protobuf-6.32.0-cp39-abi3-manylinux2014_x86_64.whl", hash = "sha256:75a2aab2bd1aeb1f5dc7c5f33bcb11d82ea8c055c9becbb41c26a8c43fd7092c"}, - {file = "protobuf-6.32.0-cp39-cp39-win32.whl", hash = "sha256:7db8ed09024f115ac877a1427557b838705359f047b2ff2f2b2364892d19dacb"}, - {file = "protobuf-6.32.0-cp39-cp39-win_amd64.whl", hash = "sha256:15eba1b86f193a407607112ceb9ea0ba9569aed24f93333fe9a497cf2fda37d3"}, - {file = "protobuf-6.32.0-py3-none-any.whl", hash = "sha256:ba377e5b67b908c8f3072a57b63e2c6a4cbd18aea4ed98d2584350dbf46f2783"}, - {file = "protobuf-6.32.0.tar.gz", hash = "sha256:a81439049127067fc49ec1d36e25c6ee1d1a2b7be930675f919258d03c04e7d2"}, + {file = "protobuf-6.32.1-cp310-abi3-win32.whl", hash = "sha256:a8a32a84bc9f2aad712041b8b366190f71dde248926da517bde9e832e4412085"}, + {file = "protobuf-6.32.1-cp310-abi3-win_amd64.whl", hash = "sha256:b00a7d8c25fa471f16bc8153d0e53d6c9e827f0953f3c09aaa4331c718cae5e1"}, + {file = "protobuf-6.32.1-cp39-abi3-macosx_10_9_universal2.whl", hash = "sha256:d8c7e6eb619ffdf105ee4ab76af5a68b60a9d0f66da3ea12d1640e6d8dab7281"}, + {file = "protobuf-6.32.1-cp39-abi3-manylinux2014_aarch64.whl", hash = "sha256:2f5b80a49e1eb7b86d85fcd23fe92df154b9730a725c3b38c4e43b9d77018bf4"}, + {file = "protobuf-6.32.1-cp39-abi3-manylinux2014_x86_64.whl", hash = "sha256:b1864818300c297265c83a4982fd3169f97122c299f56a56e2445c3698d34710"}, + {file = "protobuf-6.32.1-cp39-cp39-win32.whl", hash = "sha256:68ff170bac18c8178f130d1ccb94700cf72852298e016a2443bdb9502279e5f1"}, + {file = "protobuf-6.32.1-cp39-cp39-win_amd64.whl", hash = "sha256:d0975d0b2f3e6957111aa3935d08a0eb7e006b1505d825f862a1fffc8348e122"}, + {file = "protobuf-6.32.1-py3-none-any.whl", hash = "sha256:2601b779fc7d32a866c6b4404f9d42a3f67c5b9f3f15b4db3cccabe06b95c346"}, + {file = "protobuf-6.32.1.tar.gz", hash = "sha256:ee2469e4a021474ab9baafea6cd070e5bf27c7d29433504ddea1a4ee5850f68d"}, ] [[package]] diff --git a/pyproject.toml b/pyproject.toml index 92757a0..f286a73 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "orca-python" -version = "0.7.12" +version = "0.7.14" description = "Python SDK for the Predixus Orca product" authors = [ "Frederick Mannings "