Skip to content

Releases: Enet4/dicom-rs

v0.7.0

25 Apr 11:57
Compare
Choose a tag to compare

DICOM-rs 0.7.0

Today a major edition of DICOM-rs is released. Version 0.7.0 encompasses a new array of changes to correct existing quirks in the API and make way for grater capabilities. It is also not without new features, improvements and a few bug fixes.

Changes

  • [core,dictionary-builder] Data element dictionary entries now provide a VirtualVr instead of a specific value representation (#478)
  • [core] DICOM date/time value types were revamped to optionally include the time zone offset, affecting function signatures around it (#453 @jmlaka)
  • [encoding] SpecificCharacterSet is now an opaque struct type instead of an enum (#489)
  • [encoding] Monochrome reinterpretation for pixel data readers was relaxed to no longer require converting monochrome1 to monochrome2 (#498)
  • [encoding] PixelDataObject trait now has method photometric_interpretation (#497)
  • [ul] Pdu is now aware of user identity negotiation variables (#402 @nicholasrussell)
  • [ul] Pdu::short_description now returns an impl Display (#488)
  • [parser] Parser IntoTokens trait was expanded to support options, namely whether to discard sequence lengths (#456)
  • [object] Missing type parameter in FileMetaTable::set_transfer_syntax was added to conform with TransferSyntax type parameters (#485)
  • [pixeldata] openjp2 is no longer added by default when using dicom-pixeldata. Users interested in JPEG 2000 need to enable either openjp2 or openjpeg-sys (#449)
  • Updated snafu to 0.8 (#450)
  • Removed contents which were already deprecated in previous versions (#458)

New

  • [ul] Add Promiscuous mode in server association options (#500 @nickamzol)
  • [parser] add ::new_with_ts functions (#494)
  • [object] New functionality for mutating an object's element values at an arbitrary attribute (#471 @naterichman)
  • [object] Add method for changing an object's character set (#456 @thomas-tribus)
  • [object] Baseline capability for private element look-up and insertion is now available (#508 @naterichman)
  • [storescp] Update CLI app arguments to include promiscuous mode (#510)

Fixes

  • [parser] Correct VR interpretation dependent on Pixel Representation (#462 @thomas-tribus)
  • [findscu] Fix nonconforming status matching in response objects (#481)
  • [ul] Fix docs in ClientAssociation (#484)

Enhancements

  • [dictionary-std] Update dictionary entries (#509)
  • [ts-registry] Fix pixel sample rearrangement in RLE lossless (#496)
  • [ts-registry] Improved JPEG encoding attribute hinting (#497)
  • [ts-registry] Bump jpeg2k to 0.7 (#502, #506)
  • [pixeldata] Add lookups into shared/per frame functional groups (#437 @naterichman)
  • [pixeldata] Trim \0 characters from photometric interpretation (#451 @dougyau)
  • [pixeldata] Update gdcm-rs to 0.6 (#468)
  • [pixeldata,toimage,fromimage] Update image lib (#491 @leonz)
  • [json] Allow arbitrary element order for JsonDataElement (#459 @feliwir)
  • [json] Allow null for string values (#464 @feliwir)
  • [json] Skip bulk data URI when deserializing JSON (#472 @feliwir)
  • [parent] Re-export more Cargo features from pixeldata (#469)
  • [storescp] Handle Pdu::AbortRQ (#474 @jennydaman)
  • [storescp] Improve storescp to handle multiple p-data values (#487)

Miscellaneous

  • [ts-registry] Bump jpeg2k dependency (#502)
  • [json] Update base64 to 0.22 (#467)
  • [dump] Remove term_size in favor of terminal_size (#466)
  • [storescp] Replace hard-coded UIDs in transfer.rs with dicom_dictionary_std::uids::- (#475 @jennydaman)
  • [dictionary-builder] update heck to 0.5 (#495)
  • Code cleanup (beta toolchain checks) (#482)
  • Bump eyre from 0.6.9 to 0.6.12 (#492)
  • Maintenance lint fixes (#505)
  • Dependency updates (#507)

πŸ“¦ Updated crates

Starting from this release, all crates with breaking changes will have their version set to the project version. For instance, rather than bumping dicom-pixeldata from 0.2.2 to 0.3.0, it will be set to 0.7.0.
This is to reduce the confusion of certain crates in the ecosystem appearing to be outdated when they are not, as well as to better clarify which versions are expected to be compatible with which crate in the ecosystem.

  • dicom-core 0.7.0
  • dicom-dictionary-std 0.7.0
  • dicom-encoding 0.7.0
  • dicom-parser 0.7.0
  • dicom-transfer-syntax-registry 0.7.0
  • dicom-ul 0.7.0
  • dicom-scpproxy 0.7.0
  • dicom-object 0.7.0
  • dicom-dump 0.7.0
  • dicom-json 0.7.0
  • dicom-pixeldata 0.7.0
  • dicom-echoscu 0.7.0
  • dicom-storescu 0.7.0
  • dicom-storescp 0.7.0
  • dicom-findscu 0.7.0
  • dicom-toimage 0.7.0
  • dicom-fromimage 0.7.0
  • dicom-dictionary-builder 0.7.0
  • dicom 0.7.0

πŸ™ Thanks

Acknowledging that DICOM-rs can only grow at this pace with the active collaboration from the community, it is worth highlighting that version 0.7.0 had the highest number of new contributors in a DICOM-rs release yet.

Thank you all!

Full Changelog: v0.6.3...v0.7.0

v0.6.3

21 Nov 19:36
Compare
Choose a tag to compare

DICOM-rs 0.6.3

This patch release intends to fix and mitigate some issues found in the previous version.

One particular concern raised since version 0.6.2 was that the project does not build when targeting Windows platforms unless the Cargo features are adjusted to exclude openjp2.
While fixing this entirely would incur a breaking change too early in the project's release cycle, this patch release will hopefully help guide Windows developers into building all crates in the DICOM-rs ecosystem, until the next major version arrives.

If your building target is any of the Windows platforms (such as x86_64-pc-windows-msvc or x86_64-pc-windows-gnu), you will need to disable the default Cargo features and explicitly add the ones that you may need. The default_windows feature has been added for convenience.

cargo build --release --no-default-features --features=cli,default_windows,backtraces,openjpeg-sys

Fixes

  • [pixeldata] Fix and improve single-frame pixel data decoding via GDCM (#422 @dougyau)
  • [findscu] Add response status check in C-FIND-RSP response data set (#434)

Enhancements

  • [json] Move dicom-test-files to dev dependencies (#435)
  • [dump] Extend no_text_limit option to more textual VRs (#436)

Miscellaneous

  • [transfer-syntax-registry,pixeldata] Adjust features for easier building on Windows (#433)
  • [dump] Update owo-colors to 0.4.0-rc.1 (#441)
  • [core,object] Update dependencies, general maintenance (#442)

πŸ“¦ Updated crates

  • dicom-core 0.6.3
  • dicom-transfer-syntax-registry 0.6.2
  • dicom-object 0.6.3
  • dicom-dump 0.6.2
  • dicom-pixeldata 0.2.2
  • dicom-findscu 0.2.2
  • dicom-json 0.1.1
  • dicom 0.6.3

Full Changelog: v0.6.2...v0.6.3

v0.6.2

31 Oct 10:42
Compare
Choose a tag to compare

DICOM-rs 0.6.2

This feature release of DICOM-rs comprises new APIs, a new CLI tool, and support for more transfer syntaxes, plus a few bug fixes.

New

  • [pixeldata] Add transcoder API in dicom_pixeldata::transcode: pick a target transfer syntax to convert a DICOM object (#408)
  • New CLI tool dicom-transcode lets you transcode DICOM files to other transfer syntaxes (#408)
  • [storescu] dicom-storescu will now try to transcode files which are not accepted by the SCP in their original transfer syntax, by decoding the pixel data. If this is unwanted, include the option --never-transcode (#408)
  • Add JPEG 2000 decoding support (#425)
  • Add methods to decode a single frame via the object pixel data decoding API (#421)
  • [toimage] Implement --unwrap option, to extract pixel data from a file without decoding it (#416)
  • [transfer-syntax-registry/pixeldata] Add support for Encapsulated Uncompressed Explicit VR Little Endian (#423)
  • New methods and actions are available for truncating DICOM values (#418)
  • Add DecodedPixelData::to_owned and implement Clone for DecodedPixelData (#419)

Fixes

  • [core] Handle leap second from chrono time types correctly (#428)
  • [ul] Fix SCP transfer syntax negotiation quirk (#417)
  • [object] Update group length when setting transfer syntax (#410)
  • [transfer-syntax-registry] Fix padding skipping in multiframe JPEG decoding (#414)

Enhancements

  • [dictionary-std] Update data element dictionary (#429)
  • [toimage] Add "openexr" image feature by default (#411)
  • [fromimage/transcode] Add implementation class UID/version name override and retain options (#424)

Miscellaneous

  • [encoding] Fix default implementations of PixelDataWriter::encode and PixelDataReader::decode raising an error on missing Number of Frames (#408)
  • [ul] lint fix: unused doc comment (#420)
  • [transfer-syntax-registry] Update jpeg-encoder to v0.6 (#426)
  • Project maintenance (#427)
  • Tweak dicom-transfer-syntax-registry documentation and readme (#430)

πŸ“¦ Updated crates

  • dicom-core 0.6.2
  • dicom-encoding 0.6.1
  • dicom-dictionary-std 0.6.1
  • dicom-ul 0.5.1
  • dicom-transfer-syntax-registry 0.6.1
  • dicom-object 0.6.2
  • dicom-pixeldata 0.2.1
  • dicom-storescp 0.2.2
  • dicom-storescu 0.3.2
  • dicom-toimage 0.2.2
  • dicom-fromimage 0.2.2
  • dicom 0.6.2

πŸ› οΈ New tools

  • dicom-transcode (in dicom-pixeldata)

Full Changelog: v0.6.1...v0.6.2

v0.6.1

26 Aug 10:51
Compare
Choose a tag to compare

DICOM-rs 0.6.1

This is a patch release intended to solve a case where the automatic preamble detector would panic when trying to load files which are too small.
Updating the library crates and tools once possible is highly recommended.

Fixes

Miscellaneous

  • Bump rustls-webpki from 0.100.1 to 0.100.2 (#403)
  • Cargo workspace update (#406)

πŸ“¦ Updated crates

  • dicom-object 0.6.1
  • dicom-dump 0.6.1
  • dicom-storescu 0.3.1
  • dicom-findscu 0.2.1
  • dicom-toimage 0.2.1
  • dicom-fromimage 0.2.1
  • dicom-storescp 0.2.1
  • dicom 0.6.1

πŸ™ Acknowledgements

Thank you @DerOrfa for reporting the bug and fixing it in #405.

Full Changelog: dicom-core-v0.6.1...v0.6.1

dicom-core-v0.6.1

30 Jul 08:15
Compare
Choose a tag to compare

dicom-core 0.6.1

This patch release brings a fix to the pixel data fragments API, released in 0.6.0 with a bug that could prevent some DICOM readers from reading multi-frame images. Be sure to cargo update when possible.

Fixes

  • Fix basic offset table generation for encapsulated data resulting in an extra offset record (#399 @dougyau)

πŸ“¦ Updated crate

  • dicom-core 0.6.1

πŸ™ Acknowledgement

The new pixel data fragment API was brought to DICOM-rs by @dougyau, who also contributed with this fix.


Full Changelog: v0.6.0...dicom-core-v0.6.1

DICOM-rs 0.6.0

23 Jul 15:27
Compare
Choose a tag to compare

A new milestone has arrived for DICOM-rs! Version 0.6.0 brings a wide assortment of much needed changes and an interesting array of features! In the spotlight we have a new API for attribute selection and manipulation, a redesigned pixel data adapter API, constants for normative UIDs, DICOM JSON support, an SOP Class dictionary, and many new useful conversions and methods for a better development experience.

Changes

  • Pixel data adapters were moved from encoding to transfer-syntax-registry (#251)
  • [transfer-syntax-registry] Pixel data adapters in transfer syntax registry are now available behind Cargo features (#328)
  • [pixeldata] Specific capabilities have also been feature-gated: image, ndarray, rayon (#238)
  • [dictionary-std] Update tag dictionary from DCMTK, with some breaking changes (#302)
  • [dictionary-builder] The tool was moved to devtools, and now also supports DICOM UID dictionaries (#372)
  • [pixeldata] Require Send + Sync for pixeldata::Error (#323)
  • [core] several changes were made to DicomValue for ergonomics (#353, #376, #390)
    • Type parameter P (in DicomValue and in DataElement) now has a default of Vec<u8>, which is more convenient
    • DicomValue now uses independent sequence types DataSetSequence and PixelFragmentSequence
    • Changed PartialEq implementation of DicomValue between data set items, which now ignores the items' recorded length
    • Fixed the error type returned for some of the conversion methods
  • [parser] LazyDataSetReader::next has been renamed to advance (#342)
  • [object] Error types have been split for more efficiency (#344)
  • [ul] PDU association variants and association types have been changed for more versatility (#345)
  • [core] Some type name changes in the dictionary module were made (#372)
    • Primarily to make room for other kinds of dictionaries
  • [core] Impls PartialEq<[u16; 2]> and PartialEq<(u16, u16)> for Tag were removed (#389)
    • Developers should prefer converting u16 pairs to a Tag first.
  • [ul] Corrected AbortRQServiceProviderReason (#282)

New

  • [core] Extend value retrieval API for encapsulated pixel data (#339)
  • [core] Added a public prelude module for an assortment of types users are likely to import (#391)
  • [core/object] Attribute operations API, to describe operations in data and perform them onto DICOM data sets (#326, #360, #383)
    • Attribute operations include Set, SetIfMissing, Replace, Remove, PushStr, and many more.
    • Attribute selector API enables selecting elements at an arbitrary data set nesting.
  • [object] New value_at method to get values at an arbitrary data set nesting (#394)
  • [pixeldata] New encapsulation module helps build encapsulated pixel data (#312 @dougyau)
  • [core/dictionary] SOP class dictionary (#372, #379)
  • [dictionary] normative UID constant declarations now available in module uids (#372)
  • [storescp] Can now handle C-ECHO requests (#338 @PierreBou91)
  • [core] DataDictionary trait has been extended with new default methods (#357)
    • parse_tag extends DICOM tag parsing capabilities to include a look-up by keyword
  • [core] Extend value API with mutable accessors (items_mut, etc.) (#377)
  • [core] Extend data element API with an update_value method (#377)
  • [object] New command_from_element_iter constructor functions for DICOM objects (#365)
  • [parser] Extend data set reader to support peeking (#342)
  • [encoding] Extend transfer_syntax module and re-export inventory (#359)
    • Submitting new transfer syntaxes has been made easier: no need to add inventory yourself, more re-exports at crate root, and new macros are available (submit_ele_transfer_syntax!)
  • [transfer-syntax-registry] Support for encoding to JPEG baseline (#286 @Almeida-a)

Fixes

  • [ul] Add SopClassExtendedNegotiationSubItem for Pdu (#313 @jmlaka)
  • [core] Clear leading whitespaces from values with VR DS and IS (#335 @lalberge)
  • [pixeldata] Change LUT to discard high bits of pixel data sample inputs (#347)
  • [core] Fix using dicom_value! without smallvec import (#366)
  • [object] Reset length in InMemDicomObject to UNDEFINED after any modification, fixes data set writing errors (#364 @jmlaka)
  • [findscu] Do not override Query/Retrieve Level when specified by the user (#385)
  • [transfer-syntax-registry] Fix RLE decoding in cases where number of samples > 1 (#393)

Enhancements

  • Update inventory to 0.3 (#272)
  • [core] Strings can now be converted directly to DicomValue (#377)
  • [dump] Fix and improve pixel sequence printing in dicom-dump (#340)
  • [object] Detect the presence of a file preamble with ReadPreamble::Auto (#354)
  • Support parsing strings in the form "ggggeeee" to a DICOM Tag (#363)
    • This form is often used in DICOM JSON
  • [dictionary-std] Data element dictionary now recognizes group length tags and private creator tags (#367, #370)
  • [dictionary-std] Update documentation and implementation (#367)
  • [dicom] dicom_dump has been added to the parent crate (#369)
  • [dicom] new extended documentation containing a guided overview of the DICOM-rs library (#369, #386)
  • [dump] further sanitize control characters in value summary (#371)
  • [object] Optimize size of WithMetaError (#374)
  • [echoscu] Improve output in verbose mode (#384)
  • [findscu] Now supports nested attributes in C-FIND query construction (#387)
  • [findscu] Add support for modality worklist information model (#381)

Miscellaneous

  • Update rstest to 0.16 (#327)
  • Update all CLI tools to Clap v4 (#249)
  • [dump] Replace colored with owo-colors (#328)
  • [object] Remove pixeldata module from dicom-object crate (#318)
  • [core] Remove unused util module (#331)
  • [pixeldata] Fix rustc warning at DecodedPixelData::frame_data (#332)
  • Update Cargo.lock files (#341, #358)
  • Clippy lint fix (2023-06) (#355)
  • [core] Remove default Cargo features from chrono (#356)
  • [core] Fix documentation in value module (#375)
  • Update implementation class & version for DICOM-rs 0.6 (#380)
  • Clippy lint fix (2023-07, pre-0.6) (#395)
  • Update itertools to v0.11 (#396)

πŸ“¦ New crates

  • dicom-json 0.1.0

πŸ“¦ Updated crates

  • dicom-core 0.6.0
  • dicom-encoding 0.6.0
  • dicom-dictionary-std 0.6.0
  • dicom-parser 0.6.0
  • dicom-transfer-syntax-registry 0.6.0
  • dicom-ul 0.5.0
  • dicom-scpproxy 0.5.0
  • dicom-object 0.6.0
  • dicom-dump 0.6.0
  • dicom-pixeldata 0.2.0
  • dicom 0.6.0
  • dicom-echoscu 0.3.0
  • dicom-storescu 0.3.0
  • dicom-storescp 0.2.0
  • dicom-findscu 0.2.0
  • dicom-toimage 0.2.0
  • dicom-fromimage 0.2.0
  • dicom-dictionary-builder 0.4.0

πŸ™ New Contributors

A warm thank you to new contributors @dougyau for #312, @lalberge (for #335), @PierreBou91 for #338, and @Almeida-a for #286.

New Website

DICOM-rs has a new website, primarily to serve as a nicer-looking flair to the project with a quick pitch on what it contains and what it can do. More ideas to improve it are on the way! Feel free to reach out on Zulip or discussions to provide feedback on this website. The site's full source code is also available.

Full Changelog: v0.5.4...v0.6.0

dicom-core-v0.5.4

11 Apr 21:18
Compare
Choose a tag to compare

dicom-core 0.5.4

This is a single-crate update to publish a bug fix plus a few minor features and improvements.

New

  • [core] New utility methods are available in DicomValue and DataElement for retrieving pixel data fragments and offset tables. (#339)

Fixes

  • [core] Handle leading whitespace in DS and IS values correctly (#335 @lalberge)

Miscellaneous

  • [core] Remove unused util module (#331)

πŸ“¦ Updated crates

  • dicom-core 0.5.4

v0.5.4

12 Dec 19:47
Compare
Choose a tag to compare

DICOM-rs 0.5.4

A new minor iteration of the DICOM-rs project is here!
Although fewer API extensions are included this time, it comes with bug fixes, efficiency improvements, and various dependency updates, making it highly recommended for users to update once possible.

Changes

  • image and jpeg-decoder have been updated to their latest versions, v0.24.5 and v0.3.0 respectively (#315)
  • [pixeldata] Removed ndarray-stats as a dependency, as it was not really being used internally (#305)

New

  • [core] New methods are available in PrimitiveValue for extending an existing value with more elements. See for example the documentation of PrimitiveValue::extend_str (#304)

Fixes

  • [core] [parser] Fixed flaws in textual value encoding with in-memory time representations (#309)
  • [parser] Elements with the DS or IS value representation are now written as text, even if the primitive value underneath was composed of numbers in binary form (#314)
  • [findscu] Fixed typo affecting presentation context negotiation (#307 @jmlaka)

Enhancements

  • [pixeldata] The stack memory size of error types have been significantly shrunk: GetAttributeError went from 168 bytes down to potentially 64 bytes with backtraces (#317)
  • [pixeldata] Updated gdcm-rs to v0.5.0 (#322)

Miscellaneous

  • Updated CI workflow to no longer use unmaintained actions (#316)
  • Replaced deprecated chrono calls (#310 @jmlaka)
  • [dictionary-builder] [parser] [storescp] [storescu] General Clippy lint fixing (#320)
  • Removed .travis.yml (#321)

πŸ“¦ Updated crates

  • dicom-core 0.5.3
  • dicom-encoding 0.5.3
  • dicom-parser 0.5.3
  • dicom-ul 0.4.4
  • dicom-object 0.5.4
  • dicom-dump 0.5.4
  • dicom-findscu 0.1.1
  • dicom-storescu 0.2.3
  • dicom-storescp 0.1.1
  • dicom-pixeldata 0.1.5
  • dicom-toimage 0.1.3
  • dicom-fromimage 0.1.3
  • dicom 0.5.4
  • dicom-dictionary-builder 0.3.2

Full Changelog: v0.5.3...v0.5.4

v0.5.3

23 Oct 20:51
Compare
Choose a tag to compare

DICOM-rs 0.5.3

This is another feature release of DICOM-rs featuring new crates, some updates to existing crates, and also some fixes and backwards-compatible enhancements.

New

  • New crate dicom-storescp, featuring a baseline implementation of a Store SCP (#296 @vsaase)
  • New crate dicom-findscu provides an experimental Find SCU (#144)
  • [object] New methods make it possible to mutate the FileMetaTable in a FileDicomObject and set the properties of a FileMetaTable with safeguards (#280)
  • [object] Also added more methods in FileMetaTable to retrieve clean UID attributes (#292)
  • [dump] Utility methods dump_object and dump_object_to lets you print the contents of DICOM objects without creating a DumpOptions value first (#300)
  • [ul] New address module provides types for working with addresses to DICOM application entities (#284 #301)
  • Network tools (storescu and echoscu) now accept a combination of AE title and socket address together, such as MYSTORAGE@192.168.1.9:104 (#274)
  • [ul] Added PDataReader type (#276)
  • [ul] Added client_ae_title getter for server associations (#291)
  • [transfer-syntax-registry] Added TransferSyntaxRegistry::iter (#295)

Fixes and Enhancements

  • [core] Added FromStr implementation to Tag (#288)
  • [core] Trim text before parsing person name (#299 @jmlaka)
  • [core] Fixed swapped documentation of two VR variants (#298)
  • [core/encoding] Added Eq and Hash impl to more types (#289)
  • [pixeldata] GDCM integration now supports multi-frame image decoding (#233 @ingwinlu)
  • [echoscu/storescu] Improved response processing and output format (#269)
  • [object/ul] Updated implementation version and class UID (#290)
  • [pixeldata] Removed redundant slicing of primitive pixel data values (#233 @ingwinlu)
  • [ul] Improved robustness of associations to UIDs with trailing whitespace (#291)
  • [ul] Added strict option for associations which imposes the established maximum PDU length (#291)
  • [ul] Implemented Display for several association error types and extended association rejection error message with association source (#291)
  • [storescu] Now requires at least one file input and provides better feedback (#275)
  • [storescu] Max PDU length check has been safeguarded from panicking (#281)
  • [dictionary-builder] Updated dependencies (#270)
  • Error reporting now uses SNAFU's Report API in all tools (#297)

Miscellaneous

  • [core/parser] Update chrono to to 0.4.22 (#279)
  • [object] Updated dicom-test-files to v0.2.1 (#277)
  • [pixeldata] Added fuzz tests (#273)
  • [object] InMemDicomObject::meta() is deprecated (#280)

New crates

  • dicom-storescp 0.1.0
  • dicom-findscu 0.1.0

Updated crates

  • dicom-core 0.5.2
  • dicom-encoding 0.5.2
  • dicom-parser 0.5.2
  • dicom-transfer-syntax-registry 0.5.1
  • dicom-object 0.5.3
  • dicom-dump 0.5.3
  • dicom-ul 0.4.3
  • dicom-echoscu 0.2.1
  • dicom-storescu 0.2.2
  • dicom-scpproxy 0.4.1
  • dicom-pixeldata 0.1.4
  • dicom-toimage 0.1.2
  • dicom-fromimage 0.1.2
  • dicom 0.5.3
  • dicom-dictionary-builder 0.3.1

Thanks

A word of thanks to the new contributor @vsaase for the preliminary version of dicom-storescp.

Addendum

Also worth reminding that the official channel for real time communication has been moved into Zulip! Feel free to navigate to dicom-rs.zulipchat.com and have a chat!

Full Changelog: v0.5.2...v0.5.3

v0.5.2

19 Jul 17:21
Compare
Choose a tag to compare

DICOM-rs 0.5.2

This update encompasses a few fixes and backwards-compatible API extensions.

New

  • [core] New person_name module provides utilities for working with DICOM formatted person name values (#262 @jmlaka)
  • [core] New method DataElement::items for easier access to sequence items (#263 @ingwinlu)
  • [object] New methods and IntoIterator implementations for DICOM objects to facilitate iteration through their elements (#268)

Fixes and Enhancements

  • [object] Hardened file meta group parsing logic against certain files (#265 @evanrichter)

Miscellaneous

  • [core/encoding/object/ul/pixeldata] Cleaned up the code, resolved some Clippy lints (#267)
  • [pixeldata] Updated development dependencies (#266)

Updated crates

  • dicom-core 0.5.1
  • dicom-dump 0.5.2
  • dicom-encoding 0.5.1
  • dicom-fromimage 0.1.1
  • dicom-object 0.5.2
  • dicom-pixeldata 0.1.3
  • dicom-storescu 0.2.1
  • dicom-toimage 0.1.1
  • dicom-ul 0.4.2
  • dicom 0.5.2

Full Changelog: v0.5.1...v0.5.2