Skip to content

Releases: highcard-dev/druid-cli

v0.1.226

18 May 20:54

Choose a tag to compare

feat: support multiple jwks endpoints

v0.1.225

01 May 21:27

Choose a tag to compare

fix: preserve file modes in OCI layers

Co-authored-by: Cursor <cursoragent@cursor.com>

v0.1.224

01 May 16:43

Choose a tag to compare

fix: skip missing explicit data chunks

Co-authored-by: Cursor <cursoragent@cursor.com>

v0.1.223

01 May 16:03

Choose a tag to compare

fix: skip unmatched chunk globs

Co-authored-by: Cursor <cursoragent@cursor.com>

v0.1.222

01 May 15:20

Choose a tag to compare

feat: support globbed data chunks

Co-authored-by: Cursor <cursoragent@cursor.com>

pr-76

10 May 00:13

Choose a tag to compare

pr-76 Pre-release
Pre-release
fix: preserve file modes in OCI layers

Co-authored-by: Cursor <cursoragent@cursor.com>

v0.1.221

27 Apr 21:35

Choose a tag to compare

fix: set default TERM for tty processes

Ensure tmux-backed console commands inherit a usable terminal type when containers do not provide one.

Made-with: Cursor

v0.1.220

26 Apr 12:38

Choose a tag to compare

fix: queue serve command after lockfile to prevent dependency race

Move AddAndRememberItem(currentScroll.Serve) after QueueLockFile() so
that dependency commands (e.g. install with run: once) are already
populated in the queue. Without this ordering, RunQueue could see the
dependency missing and re-add it as a fresh item instead of recognising
its "done" state from the lockfile.

Made-with: Cursor

v0.1.218

26 Apr 11:55

Choose a tag to compare

feat: enhance health check functionality with progress tracking

- Updated the HealthHandler to include a progress tracker, allowing the health check response to reflect the current state of the cold starter.
- Introduced a new method in the ColdStarter service to retrieve progress information.
- Modified health handler tests to validate the new progress feature in health responses.

v0.1.217

25 Apr 01:17

Choose a tag to compare

refactor: streamline symlink handling in AutoChunkDataDir

- Replaced the loop for checking symlinks with filepath.WalkDir for improved efficiency and clarity.
- Enhanced error handling during directory traversal to ensure robustness in symlink detection.