Skip to content

v2.0.0

Choose a tag to compare

2.0.0 (2026-05-07)

⚠ BREAKING CHANGES

  • PROC-1668: `cloud_optimized_dicom` now depends on upstream `pydicom>=3.0` instead of the `pydicom3` fork. Downstream impact:
    • `isinstance` checks against `pydicom3.` on cod-returned objects will start returning `False` — switch to `pydicom.`. (This is exactly the bug PROC-1668 fixes for gradient-beam.)
    • Installing `cloud-optimized-dicom` no longer transitively installs `pydicom3`. Code that imported `pydicom3` only because cod brought it in must either switch to `import pydicom` or add the fork to its own dependencies.
    • Environments pinned to `pydicom<3` will no longer resolve. Bump to `pydicom>=3.0`.

Features

  • PROC-1668: drop pydicom3 fork in favor of upstream pydicom (#134) (42d5e7e)