chore(deps): update ⬆️ mise-packages - #1033
Conversation
Renovate Release NotesGenerated from Renovate's update table by the Packages that cannot be summarized from GitHub releases are listed explicitly below. neovim/neovim (aqua:neovim/neovim)v0.12.5: Nvim 0.12.5Release notesInstallWindowsZip
MSI
Note: On Windows "Server" you may need to install macOS (x86_64)
macOS (arm64)
Linux (x86_64)If your system does not have the required glibc version, try the (unsupported) builds for older glibc. AppImage
Tarball
Linux (arm64)AppImage
Tarball
Other
nushell/nushell (aqua:nushell/nushell)0.115.1: 0.115.1This is the 0.115.1 release of Nushell. You can learn more about this release here: https://www.nushell.sh/blog/2026-08-23-nushell_v0_115_1.html For convenience, we are providing full builds for Windows, Linux, and macOS. Be sure you have the requirements to enable all capabilities: https://www.nushell.sh/book/installation.html#dependencies This release was made possible by PR contributions from @app/dependabot, @ayax79, @cptpiepmatz, @fdncred, @kronberger-droid, @philocalyst tree-sitter/tree-sitter (aqua:tree-sitter/tree-sitter)v0.26.13: v0.26.13What's Changed
Full Changelog: tree-sitter/tree-sitter@v0.26.12...v0.26.13 anthropics/claude-code (github:anthropics/claude-code)v2.1.241: v2.1.241What's changed
backnotprop/plannotator (github:backnotprop/plannotator)v0.27.7: v0.27.7Follow @plannotator on X for updates Missed recent releases?
What's New in v0.27.7A patch release led by a crash fix for Pi on Windows: a broken provider pipe could take down the entire Pi host mid plan review. Five PRs, three from returning community contributors, plus a new top-level knowledge skill that also powers plannotator.ai/llms.txt. Pi no longer crashes when a provider pipe breaksOn Windows, opening a plan review from Pi could kill the whole Pi host with an unhandled EPIPE error. The provider child process's stdin pipe broke, nothing was listening for the failure, and the host process died with it. This is fixed as a class, not a symptom. Every provider child process (Pi and the Codex app-server transport) now routes its pipe writes through a shared guard: a broken pipe fails that provider's query cleanly, the provider is marked dead and restartable, and the host keeps running. The regression test reproduces the exact pre-fix crash in a real Node child process. Thanks @Kaelenx for the detailed report and for verifying the fix on the original machine within the hour. Call Flow stops failing on normal reviewsCall Flow rejected any analysis producing more than 100 call trees, and languages that emit many small per-function trees (Swift, TypeScript) hit that ceiling on ordinary branch reviews. @sergdort's measurements in #1351 showed a normal 161-file review producing 470 valid trees, computed in under 800ms, rejected whole. The tree cap is now 2,000, and a result that still exceeds it degrades instead of failing: the first 2,000 trees render and a visible warning in the panel says how many were truncated. The caps that guard against genuinely unbounded output (total nodes, tree depth, raw length) still reject exactly as before. jj reviews start from where your work actually beganThe jj Line of work view always diffed against Plannotator now asks jj where the current line of work forked from shared history and starts the review there. The base is named by its remote bookmark when one exists, then its local bookmark, then the commit ID, and jj's internal
A knowledge skill for every agent, and llms.txtAgents had launcher skills for opening reviews but no reference for everything else Plannotator can do. The new top-level The same document is now served at plannotator.ai/llms.txt following the llmstxt.org convention, generated from the identical source at build time.
oh-my-pi is its own agent originSessions launched from the oh-my-pi harness were detected as Claude Code, because OMP exports Claude Code's environment markers into its shells. OMP is now detected as its own origin, ordered so nested runtimes still detect correctly, and sessions report the agent you are actually using.
Install / UpdatemacOS / Linux: curl -fsSL https://plannotator.ai/install.sh | bashWindows: irm https://plannotator.ai/install.ps1 | iexClaude Code Plugin: Run Pi: Update OpenCode: Clear cache and restart: rm -rf ~/.bun/install/cache/@​plannotatorWhat's Changed
ContributorsThree returning contributors landed code in this release. @graemefolk continues to own Plannotator's jj support end to end, this time replacing the assumed Community reports that shaped this release:
Full Changelog: backnotprop/plannotator@v0.27.6...v0.27.7 jdx/usage (usage)v6.1.1: v6.1.1: Windows path fixes and slimmer derived binariesA patch release focused on making usage a good citizen on Windows and shrinking the code the derive macro generates. Five separator- and prefix-aware fixes across Fixed
PerformanceTwo stacked derive-macro passes shrink the code every generated
Tests
Between them, these three test PRs take a Full Changelog: jdx/usage@v6.1.0...v6.1.1 💚 Sponsor usageusage is maintained by @jdx, an open source developer for entire.io, the title sponsor of the jdx.dev open source tools including mise, aube, hk, and more. Work on usage is funded by sponsorships. If v6.1.0: v6.1.0: Sharper derives, richer dispatchThis release sharpens the Rust derive framework introduced in 6.0: AddedBroader
|
| New | Legacy (still read) |
|---|---|
USAGECLI_SHELL_{BASH,ZSH,FISH,PWSH} |
USAGE_SHELL_* |
USAGECLI_DEBUG |
USAGE_DEBUG |
USAGECLI_TRACE |
USAGE_TRACE |
USAGECLI_LOG |
USAGE_LOG |
First name set wins. As a side benefit, USAGE_LOG is no longer written back into the environment with set_var, so a spawned script's own log argument survives.
Fixed
- Long help flows like short help. Non-verbatim doc comments wrap the same way for
long_helpas forhelp: source-wrapped lines become spaces, indented examples and fenced code blocks keep their breaks, andverbatim_doc_commentis untouched (#1215). - KDL keeps newlines.
Spec::to_kdlemits#"""…"""#raw multiline strings for values that contain newlines, so generated.usage.kdlno longer collapses multi-paragraph help into one giant escaped line (#1215).
Changed
- Removed clap-compatible attribute spellings (a989d26b). Derives now accept only
#[usage(...)].#[command(...)],#[arg(...)],#[value(...)],#[group(...)], and inner synonyms (id,default_value,conflicts_with,value_parser,last, …) still parse, but fail at the source span with a diagnostic telling you the native replacement. Implicit clap-style#[group(...)]generation for one-member groups is gone — requiredness comes from the field type orrequired. - Stricter variant validation (#1224): redundant
#[usage(run_async)]on an enum variant is now rejected while parsing the attribute.
Documentation
- Complete KDL reference for the spec (#1214).
- Rust framework docs refreshed: sharper framework page (#1222), summarized parser performance page (#1219), combined clap migration guide (#1217), refreshed clap binary-size comparison (#1212), dropped a restated intro line (#1211).
- Benchmark charts added to the Rust and Go pages and comparison methodology clarified (#1209, #1210).
Breaking Changes
- Derive attributes must use
#[usage(...)]. Any remaining clap-shaped attributes (#[command],#[arg],#[value],#[group], or their inner synonyms) will now fail to compile with a diagnostic pointing at the replacement. See the clap migration guide for before/after rewrites. - Implicit single-member
#[group(...)]generation is gone. If you relied on it for requiredness, mark the fieldrequiredor use its type (e.g. non-Option) instead.
Full Changelog: jdx/usage@v6.0.0...v6.1.0
💚 Sponsor usage
usage is maintained by @jdx, an open source developer for entire.io, the title sponsor of the jdx.dev open source tools including mise, aube, hk, and more. Work on usage is funded by sponsorships.
If usage powers CLI specs, docs, or completions for a tool you maintain or use, please consider sponsoring at jdx.dev. Every sponsorship helps the project stay independent and moving.
7ae3520 to
117b34e
Compare
🤖 I have created a release *beep* *boop* --- ## [0.52.0](v0.51.0...v0.52.0) (2026-09-03) ### Updates & Misc Chores * **deps:** update ⬆️ agent extensions to v0.18.2 ([#1036](#1036)) ([7b44360](7b44360)) * **deps:** update ⬆️ aqua-packages to v4.554.0 ([#1034](#1034)) ([47f9b9b](47f9b9b)) * **deps:** update ⬆️ aqua-packages to v4.555.0 ([#1041](#1041)) ([2030de0](2030de0)) * **deps:** update ⬆️ github-actions to v2 ([#1038](#1038)) ([39534fa](39534fa)) * **deps:** update ⬆️ github-actions to v4.2.5 ([#1037](#1037)) ([670907c](670907c)) * **deps:** update ⬆️ mise-packages ([#1033](#1033)) ([456f480](456f480)) * **deps:** update ⬆️ mise-packages ([#1039](#1039)) ([ee5783a](ee5783a)) * **deps:** update ⬆️ mise-packages ([#1040](#1040)) ([f3f078c](f3f078c)) * **deps:** update ⬆️ mise-packages ([#1042](#1042)) ([28f7af1](28f7af1)) * **deps:** update ⬆️ mise-packages ([#1043](#1043)) ([7dd3241](7dd3241)) * **deps:** update ⬆️ mise-packages ([#1045](#1045)) ([d855e64](d855e64)) * **deps:** update ⬆️ mise-packages ([#1047](#1047)) ([c3e8abe](c3e8abe)) * **deps:** update ⬆️ mise-packages to v9 ([#1044](#1044)) ([60b7a06](60b7a06)) * **herdr:** explicitly define shell ([320a6ec](320a6ec)) * **mise:** add syft bin ([0a2cb19](0a2cb19)) * **nono:** add ~/.local/share/gh read ([25e2712](25e2712)) * **nono:** add yamllint config path ([9a71d9e](9a71d9e)) * **nono:** allow mise state to run/update mise config ([99cd7be](99cd7be)) * upgrade trunk ([#1035](#1035)) ([0eab6da](0eab6da)) * **voxtype:** add duck media config for 1.0 release ([3d6ff83](3d6ff83)) ### Features * **agents:** add ctx7 CLI skill ([ea76e81](ea76e81)) * **droid:** track ~/.factory/settings.json ([fc230b5](fc230b5)) * **git:** add Field Office workstation profile ([#1046](#1046)) ([7ec8062](7ec8062)) * **mise:** add `ctx7` CLI ([130fe18](130fe18)) * **mise:** add checksum-verified Droid ([1f7907c](1f7907c)) * **nono:** add droid-local profile ([67ead60](67ead60)) * **themes:** runtime theme switcher with aura and catppuccin-mocha ([00007ed](00007ed)) ### Bug Fixes * **nono:** grant AGENTS.md symlink target in local profiles ([4559c6a](4559c6a)) * **pi:** configure Starship footer ([85587bc](85587bc)) ### Code Refactoring * **mise:** move npm package_manager from bun to aube ([5fa82f3](5fa82f3)) * **opencode:** rm context7 mcp in favor of cli/skill ([9ff06fb](9ff06fb)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). Co-authored-by: scottames-github-bot[bot] <162828115+scottames-github-bot[bot]@users.noreply.github.com>
This PR contains the following updates:
0.12.4→0.12.50.115.0→0.115.10.26.12→0.26.13v2.1.240→v2.1.241v2.1.247(+2)v0.27.6→v0.27.7v0.27.86.0.0→6.1.16.4.1(+3)Release notes are maintained in a PR comment by the
renovate-release-notes-commentworkflow.Configuration
📅 Schedule: (in timezone America/Los_Angeles)
* 3-5 * * *)🚦 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.
This PR was generated by Mend Renovate. View the repository job log.