Changelog
Changelog
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning 2.0.0.
Note on pre-release versions: Stable releases follow SemVer 2.0 exactly (
MAJOR.MINOR.PATCH). Pre-release and development versions use PEP 440 notation (e.g.1.0.0a1,1.0.0.dev0) as required by the Python packaging ecosystem, which differs from SemVer pre-release syntax (1.0.0-alpha.1,1.0.0-dev.0).
[Unreleased]
[0.1.0]
Added
connect()to attach to a running MITK Workbench, and aWorkbench.show()one-liner for files, numpy arrays, SimpleITK images, and mlarray objects.DataStorageCRUD: list, filter, create, and remove data nodes.Imageuniversal spatial image type, with automatic transfer-mode negotiation (direct HTTP or file-reference).MultiLabel segmentation editing: groups, labels, pixel data, and full round-trip.
Editor and render-window handles for the StdMultiWidget and MxN editors, with rendering control: crosshair position, reinit, and screenshots.
Typed MxN layout DSL (via the optional
mitkpackage) alongside raw-dict layout I/O that needs no optional dependency.Converter registry for image types: numpy always available, SimpleITK and mlarray auto-registered when installed, plus user-registerable converters.
Discovery and launch helpers to find running instances or start new ones.
Structured logging via Python’s
loggingmodule.InsecureTransportWarningwhen an API token is configured for a non-localhttp://host, since theAuthorizationheader would travel in cleartext.Automatic environment-proxy bypass for loopback connections (a forward proxy cannot route to the caller’s own machine), with a
trust_envparameter onconnect()to override it.
Fixed
launch()no longer mistakes the Windows.batwrapper’s immediate exit-0 for a failure: it tolerates exit-0 and keeps polling/health(only a non-zero exit fails fast).shutdown()finds the listening process locale- and address-family- independently (no longer keyed on the English wordLISTENING), so it kills the real Workbench on non-English Windows and for dual-stack listeners.The launched child’s stderr is redirected to a temp file instead of an inherited PIPE, removing a deadlock risk over long sessions; the file is cleaned up on
shutdown()and on failed launches.