chore(deps): update dependency mise to v2026.7.5#2301
Merged
Conversation
Contributor
Benchmark resultsBenchmark run finished with conclusion
Benchmark summary artifact was not found; see the workflow run for details. |
zeitlinger
approved these changes
Jul 13, 2026
zeitlinger
approved these changes
Jul 13, 2026
zeitlinger
approved these changes
Jul 13, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
v2026.7.0→v2026.7.5v2026.6.14→v2026.7.5Release Notes
jdx/mise (mise)
v2026.7.5: : Worktree-Aware Trust and npm 12 SupportCompare Source
This release makes config trust smarter across git worktrees and monorepos, and fixes npm-backed tools on npm 12.
Added
git worktree addcheckout used to re-prompt for the same config. A config inside a linked worktree is now trusted automatically when the equivalent path in the repository's main checkout is trusted — trusting a repo once covers all of its worktrees. This is especially helpful for workflows that spin up many short-lived worktrees (e.g. AI-agent worktrees under.claude/worktrees/). Sharing flows one way, from main checkout to worktrees; an explicit--ignorestill wins, and paranoid mode is excluded since its trust is tied to per-file content hashes.mise untrustinside a worktree now warns that the main checkout still trusts the config (#10890 by @jdx).mise trust --allnow trusts nested subdirectory configs. Previously--allonly trusted config files in the current directory and its parents. It now also walks subdirectories and trusts each nested config root it finds, so a monorepo's nested configs can be trusted with one explicit command. The walk respects.gitignore, skips hidden directories, and skipsnode_modules,vendor,target,dist, andbuildso vendored configs are left untrusted. Each nested config gets its own trust record, so a config added later in a new subdirectory still prompts (#10889 by @jdx).Fixed
npm view --jsonresponses in a single-item array, which broke version listing and latest-version detection for npm-backed tools. mise now normalizes both the legacy object shape and the new wrapped shape, and tolerates missingtimemetadata (#10888 by @jdx).Changed
codexshorthand now prefersnpm:@​openai/codexover the aqua GitHub asset. The aqua asset for recent releases shipped only the maincodexbinary and omittedcodex-code-mode-host, which broke tool calling; the npm package installs the full vendor bundle. Aqua remains available as an explicit or fallback backend (#10893 by @jdx).Full Changelog: jdx/mise@v2026.7.4...v2026.7.5
💚 Sponsor mise
mise is maintained by @jdx, an open source developer for entire.io, the title sponsor of the jdx.dev open source tools. Development is funded by sponsors.
If mise saves you or your team time, please consider sponsoring at jdx.dev. Individual and company sponsorships keep mise fast, free, and independent.
v2026.7.4: : Bootstrap goes stableCompare Source
This release graduates
mise bootstrapandmise dotfilesout of experimental mode, teachesmise installto reconcile Rust components and targets, and restores Linux arm64 glibc compatibility for release builds.Added
mise bootstrapand all of its subcommands (packages, repos, macOS/Linux user services, shell activation, login shell) plusmise dotfilesno longer require experimental mode, so they work withMISE_EXPERIMENTAL=0. The relatedmise doctordiagnostics (system packages, macOS defaults, login-shell drift) and the missing[bootstrap.packages]hint onmise installare always on as well (#10869 by @jdx).mise.runinstall script. SettingMISE_INSTALL_SKIP_IF_EXISTSavoids re-downloading mise when the requested version is already present at the install path, which is handy for CI/Docker builds that re-run the installer on every build (#10882 by @JamBalaya56562):curl https://mise.run | MISE_INSTALL_SKIP_IF_EXISTS=1 shPATH), and default behavior is unchanged unless you opt in.Fixed
componentsandtargetsare actually installed before skipping an install, somise installreconciles missing components/targets on an already-installed toolchain instead of treating a bare symlink as complete. Array-form config is now parsed (with trimming and empty-entry filtering) and host-suffixed component names are matched (#10876 by @jdx).task_source_files()is once again available when a task definesusageargs and its run script is re-rendered with parsed CLI values (#10870 by @jdx).mise upgrade --minimum-release-ageno longer prints a misleading "newer release ignored" warning when the installed version already satisfies the hidden latest release (#10877 by @jdx).aarch64-unknown-linux-gnucross image back to a fixed tag and added a shared glibc-floor check to release packaging, restoring predictable glibc compatibility for Linux arm64 tarballs (#10875 by @jdx).Performance
Changed
vfox:mise-plugins/vfox-scalafork; theasdf:mise-plugins/mise-scalafallback is unchanged (#10864 by @jdx).Documentation
Aqua Registry Updates
New packages:
sderosiaux/launchdeck,syntax-sh/lexicon-releases.Full Changelog: jdx/mise@v2026.7.3...v2026.7.4
💚 Sponsor mise
mise is maintained by @jdx, an open source developer for entire.io, the title sponsor of the jdx.dev open source tools. Development is funded by sponsors.
If mise saves you or your team time, please consider sponsoring at jdx.dev. Individual and company sponsorships keep mise fast, free, and independent.
v2026.7.3: : System dependency checks and cask lifecycle hooksCompare Source
This release brings smarter builds for source-compiling tools, better Homebrew cask support, and a fix for lockfile entries losing their platform data during upgrades.
Added
vfox: plugin-declared system dependencies. Source-compiling plugins (php, mysql, erlang, ...) often need build tools and libraries that previously showed up only as a failed
./configuretwenty minutes into a build. vfox plugins can now declare these prerequisites inmetadata.lua, and mise checks them before installing (#10848 by @jdx):Detection is the source of truth: a satisfied check passes regardless of how the capability was installed (Homebrew, apt, nix, from source), and the per-manager
packagesmap is only used to offer installing the missing subset. A newsystem_depssetting controls behavior (promptdefault,auto,warn,ignore); the check never fails an install. Missing deps also show up inmise doctorandmise bootstrap status. Declarations are inert on older mise versions and on upstream vfox.brew: cask lifecycle hooks. Homebrew cask installs now run supported
preflightandpostflighthooks via a mise-owned, sha256-verified Ruby shim (nobrewdelegation), which fixes wrapper-style casks like GIMP. Unsupported hook DSL fails with an explicit error (#10837 by @jdx).cli: terminal width override. In some CI environments width detection returns a bogus value and mise's table/list output (
mise ls,mise registry,mise settings) renders oddly with no way to fix it. You can now override the detected width (#10862 by @JamBalaya56562):MISE_TERM_WIDTHtakes precedence, withCOLUMNSas a fallback. An explicit override is honored exactly (no 80-column floor); behavior is unchanged when neither is set.Fixed
mise upgrade --bumpcan rewrite more lockfile entries than the tools it actually installs. Those rewritten entries were previously reduced to bare version/backend records, losing their cross-platform checksums and URLs. mise now re-locks stale entries that are missing platform metadata, so tools likeruff,biome, andtyposkeep their full lock data (#10752 by @zeitlinger).karabiner-elements) now install correctly, staged through the caskroom as symlinks (#10841 by @jdx).cargo publishverification failure (#10863 by @jdx).Changed
Documentation
Full Changelog: jdx/mise@v2026.7.2...v2026.7.3
💚 Sponsor mise
mise is maintained by @jdx, an open source developer for entire.io, the title sponsor of the jdx.dev open source tools. Development is funded by sponsors.
If mise saves you or your team time, please consider sponsoring at jdx.dev. Individual and company sponsorships keep mise fast, free, and independent.
v2026.7.2: : Template and Extraction FixesCompare Source
This is a small bug-fix release focused on template compatibility, archive extraction, and a couple of tool-specific installs.
Fixed
get_envtemplate helper for Tera v2 templates, backed by mise's original process environment, so older templates keep working. Shared configs can also opt back into the temporary Tera v1 renderer with[env] MISE_TERA_V1 = true(which older mise versions safely ignore) (#10830 by @jdx):[settings](including nested keys likeaqua.registry_url), process env vars, or theMISE_TERA_V1[env]shim, now produce proper deprecation warnings. Warnings are held until the logger is ready so they honor-q,--silent, and--log-level, and no longer fire spuriously for unrelatedMISE_*values (#10832 by @jdx).GNU.sparse.*tar archives (such as thesmolvmrelease tarballs) now extract correctly by falling back to the systemtarwhen the built-in extractor can't safely unpack sparse content (#10821 by @JamBalaya56562).podmannow installs with the expectedpodmanbinary name instead ofpodman-remote-static, removing the need for manual symlink workarounds (#10822 by @konono).@biomejs/biome@2.5.2) are now accepted, so mise no longer rejects otherwise-valid download URLs and falls back to the GitHub API (#10750 by @zeitlinger).Full Changelog: jdx/mise@v2026.7.1...v2026.7.2
💚 Sponsor mise
mise is maintained by @jdx, an open source developer for entire.io, the title sponsor of the jdx.dev open source tools. Development is funded by sponsors.
If mise saves you or your team time, please consider sponsoring at jdx.dev. Individual and company sponsorships keep mise fast, free, and independent.
v2026.7.1: : Tera v2 Templates and Safer PruningCompare Source
Added
tera_v1/MISE_TERA_V1escape hatch to keep rendering templates with the old Tera v1 engine after the upgrade to Tera v2 (scheduled for removal in 2027.4.0) #10817cargo.binstall_nativefast path that installs prebuilt native binaries from cratepackage.metadata.binstallwhencargo-binstallis unavailable, falling back tocargo installon misses #10789start_calendar_intervalsupport for macOS launchd agents, allowing calendar-based schedules (hour/minute/day/weekday/month) in addition tostart_interval#10797trust_policy_excludesinstall option for aube installs to exempt reviewed packages from trust-policy downgrade checks without disabling the policy globally #10783Fixed
tera_v1escape hatch for templates that still need the old behavior #10756 #10814 #10815 #10817*_KEYscrubbed unrelated values from task output #10729sub-*:latestrequests offline during shell activation so already-installed versions are no longer reported as missing #10802mise pruneandmise upgraderetain the versions they need #10790--run-windowsis now honored bytask addand emitted asrun_windowsin the generated TOML #10769mise searchnow falls back to the built-in aqua registry when the mise registry has no match (e.g.mise search 7zipsurfacesaqua:ip7z/7zip) #10801featuresand warn on invalid feature array entries #10810 #10813$HOMEand return relative paths #10788str upcasedeprecation warning #10778$LASTEXITCODEafter_mise_hook#10718Documentation
env_shell_expandsetting #10787Registry
pi#10727twg#10780,apm#10766,nono#10675,miniserve#10760💚 Sponsor mise
mise is maintained by @jdx, an open source developer for entire.io, the title sponsor of the jdx.dev open source tools. Development is funded by sponsors.
If mise saves you or your team time, please consider sponsoring at jdx.dev. Individual and company sponsorships keep mise fast, free, and independent.
Configuration
📅 Schedule: (UTC)
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about these updates again.
This PR was generated by Mend Renovate. View the repository job log.