Skip to content

chore(deps): update ⬆️ aqua-packages#777

Merged
renovate[bot] merged 2 commits intomainfrom
renovate/aqua-packages
Mar 3, 2026
Merged

chore(deps): update ⬆️ aqua-packages#777
renovate[bot] merged 2 commits intomainfrom
renovate/aqua-packages

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Mar 3, 2026

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Update Change
charmbracelet/crush patch v0.46.1v0.46.2
jdx/mise patch v2026.3.0v2026.3.1
max-sixty/worktrunk patch v0.28.1v0.28.2
openai/codex minor v0.106.0v0.107.0
steveyegge/beads minor v0.57.0v0.58.0

Release Notes

charmbracelet/crush (charmbracelet/crush)

v0.46.2

Compare Source

Tiny patch

A very small patch to fix scroll not always following bottom when it should.

Our favorite contributor @​huaiyuWangh also continues to deliver good patches, this time a small fix for an edge-case on LSPs integration.

Have a great week!
Charm ✨

Changelog

Fixed

Verifying the artifacts

First, download the checksums.txt file and the checksums.txt.sigstore.json file files, for example, with wget:

wget 'https://github.com/charmbracelet/crush/releases/download/v0.46.2/checksums.txt'
wget 'https://github.com/charmbracelet/crush/releases/download/v0.46.2/checksums.txt.sigstore.json'

Then, verify it using cosign:

cosign verify-blob \
  --certificate-identity 'https://github.com/charmbracelet/meta/.github/workflows/goreleaser.yml@refs/heads/main' \
  --certificate-oidc-issuer 'https://token.actions.githubusercontent.com' \
  --bundle 'checksums.txt.sigstore.json' \
  ./checksums.txt

If the output is Verified OK, you can safely use it to verify the checksums of other artifacts you downloaded from the release using sha256sum:

sha256sum --ignore-missing -c checksums.txt

Done! You artifacts are now verified!

The Charm logo

Thoughts? Questions? We love hearing from you. Feel free to reach out on X, Discord, Slack, The Fediverse, Bluesky.

jdx/mise (jdx/mise)

v2026.3.1

Compare Source

max-sixty/worktrunk (max-sixty/worktrunk)

v0.28.2: 0.28.2

Compare Source

Release Notes

Improved
  • wt step prune output: Dirty or locked worktrees are silently skipped instead of printing warnings, and "No worktree found for branch" info messages are suppressed — prune output now shows only what was actually removed. (#​1236)
Fixed
  • CWD removal hint: After a worktree is removed while a shell is in that directory, the hint now checks whether wt switch ^ would actually work before suggesting it — falls back to suggesting wt list when the default branch worktree doesn't exist (e.g., bare repos). (#​1238, thanks @​davidbeesley for reporting #​1168)

  • Submodule detection in worktree removal: Submodule detection now uses git submodule status output instead of parsing error messages, avoiding locale-dependent and version-dependent string matching. (#​1247)

Internal
  • Hook dispatch: Introduced HookCommandSpec struct and extracted helper functions to deduplicate hook dispatch code (~50 lines net reduction). (#​1248)

  • CI skills: Fixed jq escaping in ad-hoc CI polling queries and improved Step 5 dismissal ordering in pr-review skill. (#​1241, #​1246)

Install worktrunk 0.28.2

Install prebuilt binaries via shell script
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/max-sixty/worktrunk/releases/download/v0.28.2/worktrunk-installer.sh | sh && wt config shell install
Install prebuilt binaries via powershell script
powershell -ExecutionPolicy Bypass -c "irm https://github.com/max-sixty/worktrunk/releases/download/v0.28.2/worktrunk-installer.ps1 | iex"; git-wt config shell install
Install prebuilt binaries via Homebrew
brew install worktrunk && wt config shell install

Download worktrunk 0.28.2

File Platform Checksum
worktrunk-aarch64-apple-darwin.tar.xz Apple Silicon macOS checksum
worktrunk-x86_64-apple-darwin.tar.xz Intel macOS checksum
worktrunk-x86_64-pc-windows-msvc.zip x64 Windows checksum
worktrunk-aarch64-unknown-linux-musl.tar.xz ARM64 MUSL Linux checksum
worktrunk-x86_64-unknown-linux-musl.tar.xz x64 MUSL Linux checksum
Install via Cargo
cargo install worktrunk && wt config shell install
Install via Winget (Windows)
winget install max-sixty.worktrunk && git-wt config shell install
Install via AUR (Arch Linux)
paru worktrunk-bin && wt config shell install
openai/codex (openai/codex)

v0.107.0: 0.107.0

Compare Source

New Features

  • You can now fork a thread into sub-agents, making it easier to branch work without leaving the current conversation. (#​12499)
  • Realtime voice sessions now let you pick microphone and speaker devices, persist those choices, and send audio in a format better aligned with transcription. (#​12849, #​12850, #​13030)
  • Custom tools can now return multimodal output, including structured content like images, instead of being limited to plain text. (#​12948)
  • The app server now exposes richer model availability and upgrade metadata, and the TUI uses it to explain plan-gated models with limited-run tooltips. (#​12958, #​12972, #​13021)
  • Memories are now configurable, and there is a new codex debug clear-memories command to fully reset saved memory state when needed. (#​12997, #​12999, #​13002, #​13085)

Bug Fixes

  • Reconnecting with thread/resume now restores pending approval and input requests instead of leaving clients out of sync. (#​12560)
  • thread/start no longer blocks unrelated app-server requests, reducing stalls during slow startup paths such as MCP auth checks. (#​13033)
  • Interactive terminal sessions no longer print the final assistant response twice. (#​13082)
  • Large pasted-content placeholders now survive file completion correctly, fixing a regression from 0.106.0. (#​13070)
  • ChatGPT accounts that arrive without plan info now handle account reads correctly instead of triggering repeated login issues. (#​13072)
  • Diff rendering in the TUI now respects theme colors better and displays more cleanly in Windows Terminal and other low-color environments. (#​13016, #​13037)
  • MCP OAuth login flows now forward configured oauth_resource values correctly for servers that require a resource parameter. (#​12866)

Documentation

  • Updated sandbox escalation guidance so dependency-install failures caused by sandboxed network access are more clearly treated as escalation candidates. (#​13051)

Chores

  • Tightened sandbox filesystem behavior by improving restricted read-only handling on Linux and avoiding sensitive directories like ~/.ssh on Windows. (#​12369, #​12835)
  • Escalated shell commands now keep their sandbox configuration when rerun, closing a gap where approvals could lose the intended restrictions. (#​12839)

Changelog

Full Changelog: openai/codex@rust-v0.106.0...rust-v0.107.0

steveyegge/beads (steveyegge/beads)

v0.58.0

Compare Source

beads v0.58.0

Pre-compiled binaries for Linux, macOS (Intel & Apple Silicon), Windows (AMD64 & ARM64), Android/Termux (ARM64), and FreeBSD.

Installation

Homebrew (macOS/Linux):

brew install beads

Quick Install (macOS/Linux/FreeBSD):

curl -sSL https://raw.githubusercontent.com/steveyegge/beads/main/scripts/install.sh | bash

Windows (PowerShell):

irm https://raw.githubusercontent.com/steveyegge/beads/main/install.ps1 | iex

Manual Install:
Download the appropriate binary for your platform below, extract it, and place it in your PATH.

Changelog

Features
  • 94b699c Merge PR #​1995: feat: allow per-worktree .beads/redirect to override main repo
  • f6b04f7 Merge PR #​1996: feat(query): add has_metadata_key to bd query DSL
  • 24e12a3 Merge PR #​2088: feat: Add the option to use the Jira V2 api
  • 21ca845 Merge PR #​2143: feat: add dolt-data-dir config for custom dolt data directory
  • a9ca7b7 Merge PR #​2178: feat(dolt): SSH push/pull fallback + dual-surface remote management
  • feb8a00 Merge PR #​2221: feat: phase 1 hook census and migration planning (#​2217)
  • 2ec8c10 Merge PR: feat: add --backend flag to bd init with SQLite deprecation notice (bd-7xj5)
  • e688ea7 feat(backup): add 'bd backup restore' command to bootstrap from JSONL backup
  • d821109 feat(backup): add JSONL backup command and auto-backup support
  • 051a43d feat(backup): auto-enable JSONL backup when git remote exists
  • 84c9540 feat(cli): add --comment alias for bd close, --yes/-y alias for bd mol burn
  • a3dd653 feat(cli): show titles in command feedback (GH#1384)
  • 587eabb feat(doctor): bridge pending hook migrations into --fix
  • 573bdd1 feat(dolt): add 'bd dolt remote' subcommands (add/list/remove)
  • f710909 feat(dolt): auto-push to Dolt remote with 5-minute debounce
  • 20516a4 feat(dolt): dual-surface remote management (SQL + CLI)
  • a30e02a feat(init): add --database flag to configure existing server database (#​2102)
  • 8cc0874 feat(init): wire sync.git-remote config into bd init for auto-bootstrap
  • 9a2eea8 feat(labels): inherit parent labels on child creation
  • e17d73a feat(linear): add Project sync support
  • 3a86e9f feat(mcp): add dedicated claim tool for atomic start-work (#​2071)
  • 5f0b3be feat(protocol): lane 6 — 10 new protocol invariant tests
  • 74ffe23 feat(ready): add metadata filtering to bd ready (GH#1406)
  • 5fd7fe3 feat(regression): replace bd export with snapshot harness (list+show)
  • 52d7447 feat(show): add --current flag to show active issue (GH#2184)
  • 0467fb0 feat(test): parallelize dolt storage tests for 3.5x speedup (bd-5ua)
  • 801965a feat(test): parallelize protocol tests for 3x speedup (bd-dgp)
  • 11f5f43 feat(testutil): branch-per-test isolation for dolt, tracker, molecules (L2)
  • 982164a feat(testutil): reuse existing Dolt server via BEADS_DOLT_PORT (L1)
  • 82a5f89 feat(testutil): server crash detection + doctor branch-per-test (L2)
  • dcf5c22 feat(update): add --set-metadata and --unset-metadata flags (GH#1406)
  • ef4c996 feat(wisp): add --root-only flag to bd mol wisp create
  • 89569b9 feat: add --backend flag to bd init with SQLite deprecation notice (bd-7xj5)
  • 157135f feat: add --long flag to bd show for full-detail output (bd-unav)
  • 1c6f373 feat: add --metadata flag to bd create (GH#1406)
  • fb23623 feat: add --state as hidden alias for --status in bd list (bd-9h3w)
  • f1a299d feat: add --stdin flag as alias for --body-file - on bd create/update (bd-gz2o)
  • 0ed2e1a feat: add .dolt/ and *.db to project .gitignore on bd init (GH#2034)
  • b769a00 feat: add Dolt-native conflict detection to bd doctor validate (GH-2249)
  • 02e177b feat: add JSONL-to-Dolt migration script (GH#2276)
  • 6abc586 feat: add PreToolUse hook to block interactive cp/mv/rm prompts (bd-tm2p)
  • bd3fb06 feat: add ResetTestBranch and migrate tests to shared server + branch-per-test (bd-tk8y)
  • fecf282 feat: add bd backup init/sync for Dolt-native backups (bd-zafu)
  • 8d5e3ef feat: add bd doctor --agent mode for AI agent diagnostics (bd-6ud)
  • 6157920 feat: add bd dolt start/stop commands for server lifecycle management (bd-rbzi)
  • 97ae54d feat: add bd export command for JSONL backup (bd-xav)
  • 5e0e83a feat: add bd gc, bd compact, bd flatten for standalone Beads lifecycle (bd-kzn)
  • 0ec5d2e feat: add bd mol last-activity command for molecule progress tracking (GH-1456)
  • a7325f7 feat: add bd purge command to delete closed ephemeral beads (GH-1692)
  • ed8dc56 feat: add bd remember/memories/forget/recall for persistent agent memory
  • 0cb7936 feat: add circuit breaker for Dolt server connections (bd-05an)
  • 7228991 feat: add dolt-data-dir config for custom dolt data directory
  • 20f2d19 feat: add gofmt + golangci-lint pre-commit hook (GH#2179)
  • 9457158 feat: add has_metadata_key to bd query DSL
  • eafff36 feat: add hk (hk.jdx.dev) as supported git hook manager
  • dfd9b56 feat: add hook migration census + doctor signal (bd-w4x.1, #​2217)
  • e926d52 feat: add memory instructions to bd prime output and changelog
  • 02197ee feat: add stale database detection to bd doctor and bd dolt clean-databases
  • c402711 feat: add staleness check for read-only commands against JSONL (bd-2q6d)
  • 464c952 feat: add type index on wisp_dependencies for blocker queries
  • 7dca9e7 feat: align bd preflight --check with CI checks (GH#2230)
  • 1dcaa50 feat: allow per-worktree .beads/redirect to override main repo .beads
  • dab2a20 feat: apply error wrapping to remaining bare returns in dolt storage (bd-bwk2)
  • 24ed5a3 feat: auto-migrate SQLite to Dolt on first bd command (bd-3dx)
  • 13a8daa feat: auto-migration shim: SQLite to Dolt via sqlite3 CLI (bd--3y8)
  • 4fd1f6e feat: auto-push to git remote after Dolt commits
  • 7dafce0 feat: auto-update stale hooks during bd init (GH#1466) (#​2008)
  • 06eff8a feat: centralize error handling in dolt storage layer (bd-bwk2)
  • 580e7db feat: complete branch-per-test migration with dolt reset --hard (bd-tk8y)
  • 00aa5dc feat: config-driven metadata schema enforcement (GH#1416 Phase 2) (#​2027)
  • 8e22d27 feat: make IsInfraType config-driven via types.infra (bd-39c)
  • 1fda04c feat: port collision fallback, idle monitor, and crash watchdog for Dolt server (test-hqvv5t, test-n99ihy)
  • 9d64fc1 feat: route infra beads (agent/rig/role/message) to dolt-ignored wisps table
  • 893f6fc feat: self-managing Dolt server for standalone users (GH#2049, GH#2050)
  • 87f3286 feat: support issue_id_mode=counter for sequential IDs (#​2013)
  • 1b56f58 feat: use section markers for git hooks (GH#1380)
Bug Fixes
  • 807091e Merge PR #​1893: fix: resolve pre-existing CI failures (fmt-check, tests, lint)
  • b3d2535 Merge PR #​2005: fix(deps): update opentelemetry-go monorepo to v1.40.0
  • 21e52ef Merge PR #​2044: fix: add missing columns to SQLite-to-Dolt migration INSERT
  • e0417d4 Merge PR #​2067: fix: follow-up to GH#2002 counter-mode review
  • 0ff6443 Merge PR #​2105: fix: unify hook outdated detection
  • d6f2266 Merge PR #​2106: fix(routing): check local store before prefix routing
  • 4044dc1 Merge PR #​2107: fix(test): clean orphaned temp dirs for all test server prefixes
  • f70dce8 Merge PR #​2108: fix(storage): batch SQL IN-clause queries to prevent query explosion
  • 373149d Merge PR #​2114: fix: use doltserver.DefaultConfig for port resolution
  • 088d9bf Merge PR #​2116: fix: suppress git upstream warning for repos with no remotes
  • b8d9e0a Merge PR #​2119: fix(migrate): skip auto-migration when backend is already Dolt
  • 2bb4cc6 Merge PR #​2120: fix(doctor): auto-import JSONL issues on fresh clone migration
  • f165654 Merge PR #​2124: fix(doctor): create dolt marker directory after store creation
  • a138db4 Merge PR #​2135: fix(dolt): reset AUTO_INCREMENT after DOLT_PULL
  • 4dd4b9b Merge PR #​2144: fix(linear): include stateId in push updates to sync status changes
  • 0b0586f Merge PR #​2147: fix: sanitize hyphens to underscores in dolt_database name
  • 6af5f5a Merge PR #​2148: fix: doctor checks now use hash-derived port instead of hardcoded 3307
  • e5647f7 Merge PR #​2150: fix: escape # in SQLite URI paths to prevent truncation
  • f2e0284 Merge PR #​2151: fix(dep): traverse blocks-type edges in dep tree and graph
  • 4ab9d55 Merge PR #​2152: fix(init): stealth mode no longer creates Claude-specific settings
  • d0c3e98 Merge PR #​2153: fix: honor BEADS_DOLT_SERVER_PORT and BEADS_DOLT_SERVER_HOST in store
  • 4b816c7 Merge PR #​2171: fix: handle Windows connectex syscall in verifyServerTarget ECONNREFUSED check
  • 72b7847 Merge PR #​2173: fix(testutil): eliminate port allocation race with flock-based coordination
  • cc18b0f Merge PR #​2180: fix: use derived port in migrate_shim and init instead of hardcoded 3307
  • a115892 Merge PR #​2194: fix(doctor): clean cruft in redirect-expected dirs even without redirect file
  • 7807c2c Merge PR #​2278: fix(deps): update opentelemetry-go monorepo to v1.41.0
  • 9e093c1 Merge PR #​2285: fix(dep): add prefix-based routing to dep add/rm/blocks/tree
  • c4ca676 Merge PR #​2287: fix(dep): skip target existence check for cross-prefix deps
  • b958768 Merge PR #​2288: fix: recreate wisps tables on schema fast-path (GH#2271)
  • d5f6727 Merge PR #​2289: fix: strip absolute dolt_data_dir from metadata.json on save (GH#2251)
  • 5699472 fix(ci): remove stale hook-template checks and add hook install coverage
  • be4c5ae fix(ci): resolve baseline windows, lint, and fmt failures
  • 16ff6fc fix(ci): resolve baseline windows, lint, and fmt failures (#​2069)
  • 322a084 fix(create): commit post-create metadata (deps, labels) to Dolt (GH#2009) (#​2055)
  • f430b97 fix(create): read contributor routing config from DB fallback
  • 5668932 fix(dep): add prefix-based routing to dep add/rm/blocks/tree
  • e3fbffc fix(dep): skip target existence check for cross-prefix dependencies
  • facc13a fix(dep): traverse blocks-type edges in dep tree and graph commands
  • 7913c05 fix(dep): use errors.Is for sql.ErrNoRows check, update metadata on re-add
  • ebf78eb fix(deps): update opentelemetry-go monorepo to v1.40.0
  • 72ae980 fix(deps): update opentelemetry-go monorepo to v1.41.0
  • 2e8d77e fix(deps): update react monorepo to v19
  • d9a5a72 fix(doctor): auto-import JSONL issues on fresh clone migration
  • 08fc8ec fix(doctor): clean cruft in redirect-expected dirs even without redirect file
  • 7e29605 fix(doctor): eliminate false warnings after clean-room bd init
  • c62a891 fix(doctor): escalate broken hook migration severity
  • 76b0cc7 fix(doctor): exclude wisp tables from Dolt Status/Locks warnings (GH#2079)
  • 5eccd6b fix(doctor): follow redirect when fixing outdated .beads/.gitignore (#​2078)
  • 1172880 fix(doctor): gracefully handle non-git-repo in fingerprint and role checks
  • fdb45f5 fix(doctor): gracefully handle non-git-repo in fingerprint and role checks
  • 5a6a3cc fix(doctor): migrate maintenance checks to Dolt for #​2101
  • 42ae193 fix(doctor): re-run diagnostics after --fix to show fresh verification results
  • b96483f fix(doctor): recognize marker-managed hooks, fix stale advice (#​2244, #​2242)
  • 1fddfbd fix(doctor): remove 3307 fallback in test port helpers
  • 8db0cd1 fix(doctor): remove unused cfg param, warn when SQL unreachable
  • 9be692e fix(doctor): respect dolt_data_dir config in all doctor checks
  • 5aa2ae6 fix(doctor): skip upstream warning when no git remotes exist
  • 362d82b fix(doctor): suppress expected .beads/ deletions in redirect worktrees (#​2080)
  • 3d62376 fix(doctor): use configured server port in federation checks
  • 9e8567a fix(doctor): use configured server port in federation checks
  • ee03bcf fix(doctor): use correct beadsDir path in fix/remotes.go
  • 2f665cc fix(doctor): use doltserver.DefaultConfig for port resolution in openDoltDB
  • b302296 fix(dolt): BEADS_DOLT_PORT always overrides config port (env > config)
  • a10e9d1 fix(dolt): add connection timeouts to prevent agent hangs
  • a045d08 fix(dolt): commit SQL transaction when DOLT_COMMIT finds nothing to commit
  • 7c5d984 fix(dolt): commit SQL tx before DOLT_COMMIT to persist wisp data (hq-3paz0m)
  • 03322a5 fix(dolt): filter dolt_ignore'd tables from CommitPending and batch message
  • a9c6806 fix(dolt): narrow test database prefix "beads_t" to "beads_test" to avoid false positives (#​2297)
  • b579751 fix(dolt): per-issue ephemeral routing in batch creation
  • a22da6f fix(dolt): remove auto-push from create and repo sync
  • b199a53 fix(dolt): reset AUTO_INCREMENT counters after DOLT_PULL
  • ef57293 fix(dolt): stop wisp ID double-prefixing and add wisp fallback to ResolvePartialID
  • 2b354ff fix(dolt): use CLI fallback for push/pull on SSH remotes (#​2118)
  • 762acfa fix(doltserver): add filesystem heuristic fallback for Gas Town detection (#​2076)
  • 9e46fa4 fix(doltserver): remove global process count guard from Start()
  • de7cb33 fix(graph): lift children to parent's layer in graph layout (GH#1748)
  • 1bb7c4f fix(init): sanitize auto-detected prefix for MySQL database names
  • b21a38e fix(init): set beads.role=contributor in contributor setup
  • 24836dd fix(init): skip AGENTS.md generation in bare repositories
  • 04a2848 fix(init): skip git/worktree guards when BEADS_DIR is explicitly set
  • 51ef157 fix(init): stealth mode no longer creates Claude-specific settings
  • 6a21757 fix(init): use prefix directly as database name instead of beads_ prefix
  • 5907658 fix(jira): log when no matching workflow transition is available
  • 0b95c75 fix(linear): correct Project sync issues from PR #​2022
  • 622c852 fix(linear): include stateId in push updates to sync status changes
  • 0dc6bdb fix(lint): check AcceptanceCriteria field in LintIssue
  • 8c0c007 fix(lint): check AcceptanceCriteria field in LintIssue
  • f79111c fix(list): reparented child no longer appears under old parent
  • ff178e2 fix(migrate): deterministic SQLite->Dolt fidelity + dependency/comment preservation ([#&chore(deps): update aqua #82

Configuration

📅 Schedule: Branch creation - Between 05:00 AM and 07:59 AM ( * 5-7 * * * ) in timezone America/Los_Angeles, Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot requested a review from scottames as a code owner March 3, 2026 14:50
@renovate renovate bot added the dependencies label Mar 3, 2026
@renovate renovate bot enabled auto-merge (squash) March 3, 2026 14:50
@renovate renovate bot merged commit 1943d09 into main Mar 3, 2026
5 checks passed
@renovate renovate bot deleted the renovate/aqua-packages branch March 3, 2026 14:55
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants