From ad4f5fbf0fa4e1da11aaf2cbf03a495e9bfa4735 Mon Sep 17 00:00:00 2001 From: Cyril Novel <5690282+cnovel@users.noreply.github.com> Date: Mon, 13 Jul 2026 08:56:56 +0200 Subject: [PATCH 1/2] Update versions Add changelog --- python_sdk/docs/changelog.rst | 47 +++++++++++++++++++ python_sdk/pyproject.toml | 2 +- .../packages/reality-capture/package.json | 2 +- 3 files changed, 49 insertions(+), 2 deletions(-) diff --git a/python_sdk/docs/changelog.rst b/python_sdk/docs/changelog.rst index a06b4365..d8207218 100644 --- a/python_sdk/docs/changelog.rst +++ b/python_sdk/docs/changelog.rst @@ -8,6 +8,53 @@ This page documents all notable changes to the ``reality_capture`` Python SDK ac :local: :depth: 1 +---- + +2.6.0 +============= + +Additions +--------- + +- Analysis jobs (Objects 2D/3D, Segmentation 2D/3D/Orthophoto, Change Detection, Eval O2D/O3D/S2D/S3D/SOrtho, + and Training S3D) are now **Generally Available**. + (`#306 `_) +- Added a new **Training S3D** job type (:class:`~reality_capture.specifications.training.TrainingS3DSpecificationsCreate`, + :class:`~reality_capture.specifications.training.TrainingS3DSpecifications`) that trains a new + point cloud segmentation (S3D) detector from a set of annotated 3D segmentations, with configurable + ``epochs``, ``spacing``, ``model`` architecture, ``features``, and ``versionNumber`` options. + (`#306 `_) +- Reworked the **Change Detection** job: inputs/outputs now support Gaussian Splats models and an optional + ``preset``; outputs report per-model segmentations (``segmentation3DA``/``segmentedModel3DA``, + ``segmentation3DB``/``segmentedModel3DB``) and per-model change locations + (``locations3DA``/``locations3DAAsSHP``/``locations3DAAsGeoJSON`` and their ``B`` counterparts) instead of the + previous single-sided ``objects3D``/``changesInModelA``/``changesInModelB`` outputs; options were renamed to + ``samplingResolution`` and ``growThreshold``/``filterThreshold``. + (`#306 `_) +- **Segmentation 3D** and **Eval S3D** outputs now expose a single ``segmentedModel3D`` field (matching the + input model's format) instead of the previous OPC/POD/LAS/LAZ/PLY-specific outputs, and the ``crs`` and + ``keepInputResolution`` options were removed from ``Segmentation3DOptions``. + (`#306 `_) +- Added a ``DetectorType`` enum re-export point and new detector helper docstrings clarifying + ``create_detector``, ``delete_detector``, ``publish_detector_version``, and ``unpublish_detector_version`` + behavior. + (`#306 `_) +- ``set_progress_hook()`` on ``RealityDataHandler`` and ``BucketDataHandler`` now has a precise + ``Callable[[float], bool]`` type hint for the ``hook`` parameter. + (`#306 `_) + +Fixes +----- + +- **Breaking change:** Removed the **Clearance** job type (``ClearanceSpecificationsCreate``, + ``ClearanceSpecifications``, ``JobType.CLEARANCE_CALCULATION``) (were in tech preview) + (`#306 `_) +- **Breaking change:** ``Response`` is now a plain dataclass instead of a ``tuple`` subclass; code that + relied on unpacking a ``Response`` as a tuple must access ``.status_code``, ``.error``, and ``.value`` + directly instead. + (`#306 `_) + +---- 2.5.0 ===== diff --git a/python_sdk/pyproject.toml b/python_sdk/pyproject.toml index 92ec6333..cf1dc911 100644 --- a/python_sdk/pyproject.toml +++ b/python_sdk/pyproject.toml @@ -8,7 +8,7 @@ build-backend = "setuptools.build_meta" [project] name = "reality_capture" # PEP440, see https://peps.python.org/pep-0440/ -version = "2.5.0" +version = "2.6.0" authors = [ { name="Bentley Systems" }, ] diff --git a/typescript/packages/reality-capture/package.json b/typescript/packages/reality-capture/package.json index e3e445cb..e9001e16 100644 --- a/typescript/packages/reality-capture/package.json +++ b/typescript/packages/reality-capture/package.json @@ -1,6 +1,6 @@ { "name": "@itwin/reality-capture", - "version": "1.5.2", + "version": "1.6.0", "description": "This package contains a SDK for Reality Modeling, Reality Analysis and Reality Conversion iTwin APIs as well as Reality Management API utils. It provides classes, functions and examples to upload local data to Reality Management, run jobs and download the results.", "main": "lib/cjs/index.node.js", "module": "lib/esm/index.web.js", From 2989df8c4605fc9be3a19b8427a8109382642198 Mon Sep 17 00:00:00 2001 From: Cyril <5690282+cnovel@users.noreply.github.com> Date: Mon, 13 Jul 2026 09:00:55 +0200 Subject: [PATCH 2/2] Fix RST Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- python_sdk/docs/changelog.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python_sdk/docs/changelog.rst b/python_sdk/docs/changelog.rst index d8207218..f769aae3 100644 --- a/python_sdk/docs/changelog.rst +++ b/python_sdk/docs/changelog.rst @@ -11,7 +11,7 @@ This page documents all notable changes to the ``reality_capture`` Python SDK ac ---- 2.6.0 -============= +===== Additions ---------