Share feedback
Answers are generated based on the documentation.
{ const container = $el; // The div with overflow const item = document.getElementById('sidebar-current-page') if (item) { const containerTop = container.scrollTop; const containerBottom = containerTop + container.clientHeight; const itemTop = item.offsetTop - container.offsetTop; const itemBottom = itemTop + item.offsetHeight; // Scroll only if the item is out of view if (itemBottom > containerBottom - 200) { container.scrollTop = itemTop - (container.clientHeight / 2 - item.offsetHeight / 2); } } })" class="bg-background-toc dark:bg-background-toc fixed top-0 z-40 hidden h-screen w-full flex-none overflow-x-hidden overflow-y-auto md:sticky md:top-16 md:z-auto md:block md:h-[calc(100vh-64px)] md:w-[320px]" :class="{ 'hidden': ! $store.showSidebar }">

DHI CLI release notes

This page lists changes in recent stable releases of the DHI CLI (docker dhi). For the full release history, including pre-releases and downloads, see the dhictl releases on GitHub.

0.0.7

2026-07-21

GitHub release

Bug Fixes

  • Fixes JSON output incorrectly escaping ampersands as \u0026 — values such as catalog categories containing & now appear as-is in output

0.0.6

2026-07-13

GitHub release

This release fixes an issue that prevented customizations from being created via the CLI.

Bug Fixes

  • Fixes dhictl customization create failing when GraphQL rejected mutation inputs that incorrectly included the output-only __typename field from OCI artifact data

0.0.5

2026-06-29

GitHub release

Maintenance release with dependency updates.

0.0.4

2026-05-25

GitHub release

What's New

  • Adds deb subcommand for DHI DEB repositories that emits netrc-style credentials for authenticating against DHI DEB repositories

0.0.3

2026-04-22

GitHub release

What's New

  • Adds attestation list and get commands for managing attestations
  • Adds SBOM subcommand for software bill of materials attestation
  • Adds bulk support to prepare command for customizations
  • Adds compression field support for customizations
  • Adds tag-definition-id column to catalog get output

Breaking change

We removed the --output flags from the few commands that had it (customization prepare and customization get) in favor of stdout redirections.

# before
dhictl customization prepare --org my-org golang 1.25 --output my-customization.yaml

# after 
dhictl customization prepare --org my-org golang 1.25 > my-customization.yaml

0.0.2

2026-03-19

GitHub release

This is a maintenance release focused on build system improvements.

Technical Changes

  • Disables CGO globally to fix macOS 16 dyld crash and simplify build process

0.0.1

2026-03-12

GitHub release

This release improves the mirroring functionality in dhictl by allowing command arguments.

Improvements

  • Mirror start command now accepts arguments for more flexible mirroring operations

Earlier releases

For older versions, see the dhictl releases on GitHub.