chore(deps): update mise to v2026.6.10#2223
Open
renovate[bot] wants to merge 1 commit into
Open
Conversation
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.5.18→v2026.6.10Release Notes
jdx/mise (mise)
v2026.6.10: : Env defaults, Unix 7z, and stale-PATH fixesCompare Source
A focused release that adds a
defaultshorthand for env vars, brings.7zarchive support to Unix, and cleans up several long-standing PATH and shim edge cases on Linux, macOS, Windows, and WSL.Added
env: New
{ default = "fallback" }shorthand for[env](and config/task[vars]). The default applies only when the variable is unset or empty; existing non-empty values from the process env or earlier config are preserved. Mixingdefaultwithvalue,required, oragenow fails with a clear message (#10441 by @jdx).backend:
.7zarchives now extract on Unix as well as Windows, andstrip_componentsprobing works cross-platform. Migrated from the unmaintainedsevenz-rusttosevenz-rust2, and tightened extraction to reject directory traversal and absolute paths (#10434 by @risu729).Fixed
env_shell_expandis enabled,${VAR:-default}now follows POSIX semantics: empty strings are treated as missing (fallback applies),${VAR-default}only substitutes when the variable is unset, and fallback text is recursively expanded (e.g.${NONEXISTENT:-$OTHER}). Braced parsing is also stricter — unterminated${…stays literal and}inside$(…)no longer closes the brace (#10445 by @jdx, fixes #10444).mise x/run/envnow strip mise-managed install directories from the inherited PATH when composing the child environment. Stale entries carried in from a frozen env snapshot (IDE terminals, CI wrappers, AI-agent harnesses) no longer sit ahead of the freshly injected bin dir, so subshells,#!/usr/bin/envshebangs, and package-manager workers all resolve the requested tool version (#10422 by @JamBalaya56562, addresses #10345).os.executenow run under the same sanitizedmise_envascmd.exec. Combined with new resolution oftools = trueenv values during install, this fixes setups like gcloud depending on python where a singlemise installpreviously leftCLOUDSDK_PYTHONpointing at a nonexistent path (#10432 by @JamBalaya56562, fixes #10282).WSL_DISTRO_NAME/WSL_INTEROP/WSLInterop), drop their own dir from PATH, andexecthe tool directly. This breaks the infinitemise xloop that happened when the Windows shims dir was exposed at/mnt/c/...inside WSL, and gives a clean<tool>: not foundwhen no Linux tool is installed.file-mode shims are now also flagged version-stale so a normal reshim regenerates them on upgrade (#10421 by @JamBalaya56562, addresses #10299).make_symlinkon Unix now creates the link at a unique temp name in the destination dir and atomicallyrename(2)s it into place. This eliminates the noisyfailed to ln -sf … File exists (os error 17)warnings that surfaced when several mise processes (shellhook-env, direnv, editor integrations) raced on the same tracked-config link, e.g. when spawning a new git worktree (#10414 by @JamBalaya56562, fixes #10292)..ps1) over their extensionless siblings, and extensionless takeover only applies when the match is unambiguous and stays within the same config family (#10443 by @jdx).Changed
number_prefix(RUSTSEC-2025-0119) and stalehumansizecrates withbytesize. Size strings in generatedtool-stubcomments andmise cache pruneoutput now use nativebytesizeIEC formatting — e.g.821.69 KiBbecomes821.7 KiBand2.15 MiBbecomes2.2 MiB(#10438 by @risu729).Full Changelog: jdx/mise@v2026.6.9...v2026.6.10
💚 Sponsor mise
mise is built by @jdx under en.dev — an independent studio making developer tooling (mise, aube, and more). Development is funded by sponsors.
If mise saves you or your team time, please consider sponsoring at en.dev. Individual and company sponsorships keep mise fast, free, and independent.
v2026.6.9: : Release plumbing cleanupCompare Source
A maintenance-only release. There are no user-facing changes — just a revert of the release workflow plumbing introduced last cycle, plus routine aqua registry updates.
Changed
gh release create --draftcall, which avoids the tag-lookup failure that broke the v2026.6.8 publish run (GitHub returns anuntagged-*URL for freshly created drafts) (#10433 by @jdx).Full Changelog: jdx/mise@v2026.6.8...v2026.6.9
💚 Sponsor mise
mise is built by @jdx under en.dev — an independent studio making developer tooling (mise, aube, and more). Development is funded by sponsors.
If mise saves you or your team time, please consider sponsoring at en.dev. Individual and company sponsorships keep mise fast, free, and independent.
v2026.6.8: : Rolling zig@master and fresher Ruby buildsCompare Source
A small fix release:
zig@masternow behaves as a true rolling channel, andjdx/rubyprecompiled installs always pick up the latest numbered build revision.Fixed
ruby: Precompiled installs from the default
jdx/rubysource now require a numeric build-revision tag (e.g.3.3.11-1,3.3.11-2) and ignore the floating base release. Lockfiles already pin to a revision and the base tag is treated as revision0, so unlocked installs land on the newest rebuilt binary instead of an older one. Customruby.precompiled_urlGitHub sources keep the previous base-tag fallback (#10428 by @jdx).zig:
zig@masteris now treated as a rolling release channel. mise resolves it to the concrete nightly it currently points at (e.g.0.17.0-dev.836+e357134f0) viaziglang.org/download/index.json, installs into a versioned directory rather than a frozeninstalls/zig/master, and reuses the latest installed nightly for the channel — never an unrelated stable release — when running offline or from hook-env. As a result,mise upgrade zigandmise outdatedcan finally track new nightlies (#10423 by @JamBalaya56562, addresses #10251).mise use zig@master mise upgrade zig # moves to the current nightlyDocumentation
New Contributors
Full Changelog: jdx/mise@v2026.6.7...v2026.6.8
💚 Sponsor mise
mise is built by @jdx under en.dev — an independent studio making developer tooling (mise, aube, and more). Development is funded by sponsors.
If mise saves you or your team time, please consider sponsoring at en.dev. Individual and company sponsorships keep mise fast, free, and independent.
v2026.6.7: : pkgx backend, more bootstrap surface, and forge install fixesCompare Source
Added
pkgx:backend: install pkgx pantry packages natively (nopkgxCLI required), with checksum-verified bottles, dependency resolution, and lockfile support viapkgx_depsand a shared[pkgx-packages]section (#10408 by @jdx).[bootstrap.macos.launchd.agents]for declarative macOS user LaunchAgents, plusmise bootstrap launchd apply/status(#10396 by @jdx).[bootstrap.linux.systemd.units]for declarative systemd user services, plusmise bootstrap systemd apply/status(#10399 by @jdx).[bootstrap.hooks]to run shell commands at named bootstrap phases (pre-packages,post-dotfiles,post-tools,final, etc.), honoring--dry-run(#10395 by @jdx).[bootstrap.macos.dock],[bootstrap.macos.finder],[bootstrap.macos.keyboard],[bootstrap.macos.trackpad]with curated keys likeshow_all_filesandtap_to_click(#10398 by @jdx).mas:package manager for[bootstrap.packages]to install Mac App Store apps by ADAM ID (#10397 by @jdx).mise bootstrap --force-dotfilesto replace conflicting whole-file dotfile targets, plus no-force replacement of regular files whose contents match the symlink source (#10410 by @jdx).tbzrecognized as an alias fortar.bz2extraction (#10403 by @risu729).aqua:oracle.com/sqlcl) (#10417 by @jasonlyle88).Fixed
mise activate --shimsno longer re-prepends the directory containing themiseexecutable (#10394 by @JamBalaya56562).tarand downloads.tar.gz, fixingtar: invalid tar magicon Alpine (#10385 by @JamBalaya56562).postinstallhooks run against the just-installed version with fuzzy requests likeversion = "3"(#10415 by @JamBalaya56562).github:/forgejo:/gitlab:paginate past an all-prerelease first page (#10420 by @JamBalaya56562).dotnet:searches sendsemVerLevel=2.0.0, fixing lookups for tools likeroslyn-language-server(#10384 by @JamBalaya56562).mise watch --wrap-processis now forwarded to watchexec (#10392 by @JamBalaya56562).{{.AssetWithoutExt}}strips the full aqua format list including.zst(#10104 by @risu729).tar.br,br,tar.lz4,lz4,tar.sz,sz,rar) fail with clear errors (#10409 by @risu729).windows-x64(#10400 by @risu729).Documentation
💚 Sponsor mise
mise is built by @jdx under en.dev — an independent studio making developer tooling (mise, aube, and more). Development is funded by sponsors.
If mise saves you or your team time, please consider sponsoring at en.dev. Individual and company sponsorships keep mise fast, free, and independent.
v2026.6.6: : Declarative machine bootstrapCompare Source
Added
mise bootstrapcommand for end-to-end machine setup — system packages, dotfiles, macOS defaults, login shell, tools, and an optionalbootstraptask — with--yes,--dry-run, and--update(#10365, #10376 by @jdx).[dotfiles]plusmise dotfiles add/apply/edit/status, supportingsymlink,symlink-each,copy, andtemplatemodes, glob wildcards in source paths, and block/line edits to files mise doesn't own (#10365, #10368, #10374, #10376 by @jdx).[bootstrap.macos.defaults]for declaratively managing macOS user defaults, applied throughmise bootstrap macos-defaults applywith drift reporting in status andmise doctor(#10363 by @jdx).[bootstrap.user].login_shellto declare and converge the current user's login shell (chsh -s, updating/etc/shellswhen needed) (#10377 by @jdx).[bootstrap.brew.taps]andmise bootstrap packages brew tap/untapfor third-party Homebrew taps, with tap context preserved through dependency resolution and source builds (#10375, #10383 by @jdx).brew-cask:package manager that installs supported app-bundle casks directly from cask API metadata without requiring a local Homebrew install (#10383 by @jdx).mise oci buildnow bakes[dotfiles]andapt:[bootstrap.packages]into images as dedicated annotated OCI layers (#10373 by @jdx).mise.tomlfiles (no templates, onlymin_versionand plain[tools]/[tasks]strings) auto-load without a trust prompt; everything else still requires trust (#10360 by @jdx).Fixed
403 Forbiddenmessage (#10382 by @jdx).shim.rb) is now included in the published crate, fixingcargo publishfor the source-build path (#10388 by @jdx).Changed
watch_files, monorepo tasks, task templates, native GitHub OAuth, custom vfox backends, Swift, and the dotnet/s3/spm backends are no longer experimental; the monorepo root key is nowmonorepo_root(withexperimental_monorepo_rootkept as a hidden alias) (#10371 by @jdx).mise-versionsare now fetched from/data/{tool}.tomlso Cloudflare can serve them as static assets (#10361 by @jdx).extract_archive,decompress_file), with clearer errors for unsupported formats (#10274 by @risu729).Documentation
minimum_release_age(#10366 by @ThijsdeJong-TomTom).New Contributors
💚 Sponsor mise
mise is built by @jdx under en.dev — an independent studio making developer tooling (mise, aube, and more). Development is funded by sponsors.
If mise saves you or your team time, please consider sponsoring at en.dev. Individual and company sponsorships keep mise fast, free, and independent.
v2026.6.5: : Trust hardening and aqua attestation fixesCompare Source
This release closes several trust-bypass vectors where a local
mise.tomlormise-tasks/directory could run code before the user trusted a project, and brings aqua's GitHub attestation verification in line with what the registry asks for.Fixed
github.credential_command,gitlab.credential_command, andforgejo.credential_commandas global-only. They are stripped from project/local config at parse time (with a warning) so an untrustedmise.tomlcannot use a credential command to execute arbitrary shell when fetching tokens. Global config, CLI flags, and environment variables are unchanged (#10356 by @jdx).ci,paranoid,trusted_config_paths, andyeswhen they come from local config files. A maliciousmise.tomlcan no longer settrusted_config_paths = ["/"]orparanoid = falseto auto-trust itself before_.sourcescripts run (#10357 by @jdx).mise-tasks/,.mise-tasks/, and related layouts) in repos with no local mise config. Previously, a clone with only amise-tasks/directory could render Tera templates (includingexec()) in task descriptions before the user trusted the project. Global task include paths and includes declared from a trustedmise.tomlare still exempt (#10355 by @jdx).github_artifact_attestations.predicate_typeto GitHub during attestation detection and verification. Packages likefoundry-rs/foundryandgleam-lang/gleamthat pin an SPDX SBOM predicate now enforce that predicate instead of accepting whatever attestation happens to verify. Predicate-filtered requests bypass the digest-only versions-host attestation cache (#10169 by @risu729).varstables, and literal"vars.<name>"backend-option keys into a single lock/cache identity. Duplicate final vars now fail with a source-neutralconflicting aqua varerror rather than silently picking one spelling; normal higher-precedence config overrides still apply (#10187 by @risu729).hide,quiet,raw,interactive, andraw_argson[task_templates.*]in the JSON Schema, and drop the unused fields fromTaskTemplate. Runtime never merged these into tasks (templates can't tell "unset" fromfalsefor plain bools), so editors no longer suggest keys that did nothing (#10242 by @risu729).os-archselectors on registry backendplatformsentries andbackends.options.platforms.*tables — for examplewindows-x64,linux-arm64,darwin-aarch64,macos-arm64— fixing false schema errors reported in discussion #10296 (#10358 by @risu729).Full Changelog: jdx/mise@v2026.6.4...v2026.6.5
💚 Sponsor mise
mise is built by @jdx under en.dev — an independent studio making developer tooling (mise, aube, and more). Development is funded by sponsors.
If mise saves you or your team time, please consider sponsoring at en.dev. Individual and company sponsorships keep mise fast, free, and independent.
v2026.6.4: : Declarative system packagesCompare Source
Added
[system.packages]) for apt, dnf, pacman, and Homebrew core formulae (installed without a brew CLI) via new experimentalmise system status/installcommands (#10326 by @jdx).mise system useandmise system upgradeto write[system.packages]entries and refresh installed system packages (#10346 by @jdx).matching(substring) andmatching_regexasset options to thegithub,gitlab, andforgejobackends, applied before platform autodetection and scoped through SLSA provenance verification (#10325 by @devnulled).mise oci build --owner UID[:GID]plus[oci].user_id/[oci].group_idconfig for layer file ownership (#10075 by @ThomasK33).Fixed
--minimum-release-age=0snow correctly disables the release-age cutoff instead of falling back to the default, and stable fast-path metadata avoids an unnecessary full version-list fetch (#10344 by @jdx).mise-versionsonly for mise-registry-backed Aqua tools, eliminating noisy403warnings for packages likeaqua:aws/session-manager-plugin(#10341 by @jdx).overrides[].envsselectors so platform-specific Aqua overrides for packages likeapache/tomcatandeza-community/ezaapply correctly (#10200 by @risu729).:task,//pkg:task, aliases) the same way at validation time as runtime, somise tasks validateno longer reports false missing-dependency errors (#10342 by @jdx).bash -ctasks on Windows instead of being assigned to$0(#10321 by @JamBalaya56562).descriptionvalues are surfaced inmise <task> --helpandmise run <task> --helpwhile task listings remain single-line (#10204 by @risu729).EDITOR/VISUAL) command handling to support values with arguments and improve error reporting (#9752 by @roele).cmd /ccall sites on Windows (mise exec -c, teraexec(),watch_files, postinstall hooks,[deps], credential commands) (#10323 by @JamBalaya56562).disable_tools/enable_toolsbefore raising registry errors (#10206 by @risu729).shorthand_vendorin the lockfile identity for shorthand requests likejava@17(#9989 by @risu729).runtimein the core .NET plugin lockfile identity so SDK and runtime installs no longer share a lock entry (#10175 by @risu729).Registry
ghtkn(#9967 by @TyceHerrman) andantigravity-cli(#10324 by @rhanneken).💚 Sponsor mise
mise is built by @jdx under en.dev — an independent studio making developer tooling (mise, aube, and more). Development is funded by sponsors.
If mise saves you or your team time, please consider sponsoring at en.dev. Individual and company sponsorships keep mise fast, free, and independent.
v2026.6.3: : auto_env, release-age polish, and lockfile fixesCompare Source
This release smooths over follow-ups to v2026.6.2's built-in
minimum_release_agecutoff, introduces opt-in platform-aware config environments, and tightens lockfile and Windows behavior for tasks and installs.Added
auto_envearly-init setting (MISE_AUTO_ENVor.miserc.toml) that automatically activates platform-derived config environments —unix,{os}(linux/macos/windows), and{os}-{arch}(e.g.windows-x64,macos-arm64) — so files likemise.windows.toml,mise/config.macos-arm64.toml, and matchingmise.<env>.locklockfiles load automatically. Precedence isunix<{os}<{os}-{arch}< explicitMISE_ENV, and auto envs are deliberately not propagated throughMISE_ENVor{{ mise_env }}. Off by default in this release; a transitional warning ships in 2026.12.0 and the default flips on in 2027.6.0 (#10316 by @jdx).mise token github --oauth --refresh(and the hiddenmise github tokenalias) forces a fresh OAuth token mint even when the cached token is still time-valid. The refresh-token grant is tried first with no user interaction, falling back to a new device-code flow. Useful when you authorize the app first and install it on a repo afterwards and the cached token still has the pre-installation permissions (#10317 by @jdx).version_exprcan now post-processversion_regexresults as a pipeline — when both are set, regex output is exposed as aversionsvariable to expr. This fixesocandopenshift-installlatestresolution (now4.22.0instead of4.9.9) by sorting the lexicographic HTML listing frommirror.openshift.comviaversion_expr = 'sortVersions(versions)'(#10302 by @konono).mise deps— automatic detection plus list, install, add, and remove (#10291 by @felipecrs).imagemagick(aqua:ImageMagick/ImageMagick) (#10118 by @thernstig) andvscode-cli(aqua:microsoft/vscode/code) (#10314 by @felipecrs).Fixed
minimum_release_ageintroduced in v2026.6.2 no longer disables installed-version fast paths, fixing a regression where shell startup grew from ~2.5s to ~65s because everymise which/mise hook-envinvocation fetched remote version lists. Cutoff resolution now tracks provenance (Default/Provided/Explicit): the default only gates remote picks at install time, while explicit CLI / setting / per-tool cutoffs keep their date-aware semantics (#10315 by @jdx).minimum_release_age = "0s"is now correctly treated as disabling the cutoff. Backends can also expose fast-path latest release metadata (withcreated_at), so the canonical latest can pass an age check even when cached remote version lists are stale (#10310 by @jdx).minimum_release_ageactually filters them (#10311 by @jdx)..node-version,.python-version, …) are now written to the projectmise.lockinstead of a phantom sibling lockfile, somise install --lockedno longer rejects them as missing (#10309 by @jdx). When multiple base configs share a project root, lockfile selection is now deterministic and picks the highest-precedence config — e.g. colocatedmise.tomland.mise/config.tomlconsistently target.mise/mise.lock(#10319 by @jdx).task_config.includesnow receive the collectedtask_templatesmap, so a task that only hasextends = "template:..."actually inherits itsrunentries instead of silently exiting successfully (#10312 by @jdx).[hooks]commands routed throughcmd /cpreserve inner double quotes. Previously, the std argv serializer produced\"-escaped strings thatcmd.exepassed through literally, so e.g.uv run --no-project python -c "import pathlib; print(pathlib.Path.home())"failed withSyntaxError: unterminated string literal. Commands are now built verbatim viacmd /s /c "...", with forwarded args still MSVCRT-quoted inside (#10301 by @JamBalaya56562).ERROR_ACCESS_DENIED (5)andERROR_SHARING_VIOLATION (32)errors (typically Windows Defender holding extracted files), with exponential backoff from 50ms to 800ms (#10300 by @jhult).usage3.5 in the generated usage spec to pick up zsh colon completion fixes; the zsh completion script now consumes three tab-separated fields and usescompadd(#10313 by @jdx).podmannow points at its new GitHub organization after the upstream rename on 2026-06-01 (#10288 by @TyceHerrman).New Contributors
Full Changelog: jdx/mise@v2026.6.2...v2026.6.3
💚 Sponsor mise
mise is built by @jdx under en.dev — an independent studio making developer tooling (mise, aube, and more). Development is funded by sponsors.
If mise saves you or your team time, please consider sponsoring at en.dev. Individual and company sponsorships keep mise fast, free, and independent.
v2026.6.2: : Supply-chain defaults and clearer install warningsCompare Source
This release tightens mise's default supply-chain posture: fuzzy version resolution now waits 24 hours after a release by default on timestamp-aware backends, with new excludes, opt-outs, and warnings so it stays out of your way when you don't want it. A couple of long-standing GitHub-attestation and npm-install rough edges are smoothed over as well.
Added
(config) Apply a built-in 24-hour
minimum_release_agewhen no global or per-tool value is set, for backends that expose release timestamps (core, aqua, github, npm, pipx, etc.). Asdf/vfox/plugin-style tools without release metadata are unaffected.mise ls-remotenow reports how many releases were hidden, andmise upgradewarns when a newer release is being ignored by the cutoff, e.g.:Set
minimum_release_age = "0s"to disable the default. Pinned exact versions still bypass the filter. (#10279 by @jdx)(config) New
minimum_release_age_excludessetting to skip the global (and built-in) release-age policy for selected tools or whole backends. Entries may be tool shorthands, full backend IDs, or backend wildcards:Per-tool
minimum_release_ageand CLI--minimum-release-agestill take precedence as before. (#10277 by @jdx)(registry)
cargo-msrvis now available in the registry, installed via aqua (foresterre/cargo-msrv) with acargo:cargo-msrvfallback (#10276 by @jdx).Fixed
github:repos and non-registry aqua packages talk to GitHub directly instead of routing through themise-versionshost. Python precompiled builds still use the versions host; Ruby precompiled attestations use it only for the defaultjdx/rubysource (#10260 by @jdx).preinstall/install/postinstall) that were skipped because mise still passes--ignore-scripts=true. Settingnpm_args = "--ignore-scripts=false"(or--no-ignore-scripts) correctly suppresses the warning, with later flags winning (#10280 by @jdx).Changed
aubeandpitchforknow resolve tojdx/aubeandjdx/pitchforkin both the mise registry and the vendored aqua registry, withendevco/*aliases retained for compatibility. Aube<= 1.18.1skips GitHub artifact attestations to match the upstream aqua registry change (#10285 by @jdx).Documentation
minimum_release_agedefault and0sopt-out, and clarifies that onlynpm:andpipx:currently forward the cutoff to transitive dependency resolution (#10278 by @jdx).mise settings set key=valueform (#10271 by @jdx).extrepo, since mise's deb repository was added to Debian extrepo (#10262 by @okulev).New Contributors
Full Changelog: jdx/mise@v2026.6.1...v2026.6.2
💚 Sponsor mise
mise is built by @jdx under en.dev — an independent studio making developer tooling (mise, aube, and more). Development is funded by sponsors.
If mise saves you or your team time, please consider sponsoring at en.dev. Individual and company sponsorships keep mise fast, free, and independent.
v2026.6.1: : aqua multi-registry, SOPS TOML, and a GitHub backend tune-upCompare Source
Added
aqua.registries; deprecates single-stringaqua.registry_url(#10179 by @risu729)..env.toml) throughrops(#10201 by @risu729).run_windowsfor Windows-specific inline hook commands (#10202 by @risu729).task_config.includeswith the Tera config context and expand~/for local includes (#10225 by @risu729)..tomltask files viagit::directory includes (#10219 by @davidolrik).7zarchives, including auto-detection of.7zassets (#10224 by @risu729).Fixed
uv.lock+.venv) in theenv_cachekey soVIRTUAL_ENVno longer leaks across sibling directories whenenv_cache=trueandpython.uv_venv_autois set (#10217 by @Nagato-Yuzuru).sourcesrelative to each task's directory and pass per-dependency--watchpaths to watchexec (#10054 by @43081j).builds.hex.pmmetadata; locked installs reuse the lockfile URL (#10226 by @risu729).mise-versionsrelease asset URLs (#10240 by @risu729).mise-versionsGitHub metadata lookups hit rate limits or non-404 errors (#10254 by @jdx).github:tools (#10255 by @jdx).gittonativeCheckInputs(#10243 by @okuuva).Security
Documentation
Registry
aqua:endevco/aubeforaubeso glibc/musl libc variants are picked up automatically (#10171 by @jdx).pgroll(#10252 by @diegoholiveira).cargo-release(#10258 by @jdx).💚 Sponsor mise
mise is built by @jdx under en.dev — an independent studio making developer tooling (mise, aube, and more). Development is funded by sponsors.
If mise saves you or your team time, please consider sponsoring at en.dev. Individual and company sponsorships keep mise fast, free, and independent.
v2026.6.0: : Corepack-managed npm and aqua Windows parityCompare Source
A focused release that wires npm into Corepack when requested, brings aqua's Windows extension handling in line with upstream, and fixes task include ordering plus a Git Bash
cygdriveregression.Added
node.corepack=trueandnode.npm_shim=false, so the Corepack-managed npm shim is enabled alongside yarn/pnpm (#10196 by @roele).mise sponsorssubcommand and a sponsor block on the docs site that lists sponsors fetched fromen.dev/sponsors.json(#10182 by @jdx).Fixed
complete_windows_extis now tri-state — explicittruecompletes Windows asset/URL/file source names, explicitfalseleaves them alone, and an omitted value completes by default except forgithub_content/github_archivepackages.windows_ext(default.exe,.shforgithub_content/github_archive) andappend_extare honored when rendering assets, URLs, and Windows install links..exeand.jarassets are treated as already complete, existing extensions like.ps1are preserved whenformatis omitted, and version dots in names liketool.1.0.0no longer suppress Windows completion. The registry compilation cache is bumped to version 2 and will be regenerated on next use.provider,api_url,artifactbundle, andartifactbundle_assetin SPM lock identity so toggling between source builds and artifact bundles no longer silently reuses a stalemise.lockentry.provideris canonicalized to lowercase (defaultgithubomitted),api_urlhas trailing slashes trimmed, andfilter_binsstays out of lock identity since it only affects which built executables are exposed (#10160 by @risu729).task_config.includesorder so a local task can override a same-namedgit::include. Previously a regression in #9147 combined with non-git includes being loaded before allgit::includes meant agit::include always clobbered a same-named local task regardless of position. Includes now load in their declared order with first-wins file-task dedup, so the earlier entry in the list takes precedence uniformly across directory, toml-file, andgit::includes (#10191 by @vmaleze).MISE_CYGDRIVE_PREFIXfor Git Bash / MSYS2, not only Cygwin. Git Bash users with a custom/etc/fstabautomount root can now set the prefix to fix the converted PATH; defaults are unchanged (/c/...for Git Bash,/cygdrive/c/...for Cygwin) (#10190 by @JamBalaya56562).-C/--cd,-j/--jobs, and-q/--quietare recognized before a mounted task without the broad promotion workaround. The narrowed promotion now only covers orphan-short flags-r/-S(whose root globals are long-only), andmin_usage_versionis bumped to3.4so older usage CLIs warn to upgrade instead of silently regressing (#10176 by @JamBalaya56562).Documentation
choicetemplate function example to use named-argument syntax (#10197 by @joekrill).New Contributors
Full Changelog: jdx/mise@v2026.5.18...v2026.6.0
💚 Sponsor mise
mise is built by @jdx under en.dev — an independent studio making developer tooling (mise, aube, and more). Development is funded by sponsors.
If mise saves you or your team time, please consider sponsoring at en.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 this update again.
This PR was generated by Mend Renovate. View the repository job log.