Update dependency jdx/mise to v2026#1350
Open
renovate[bot] wants to merge 1 commit into
Open
Conversation
c1e1b5e to
64fa1d6
Compare
fe0733f to
672422c
Compare
7f3d79f to
b49c7c7
Compare
098337e to
82a7b5a
Compare
bd03337 to
2118436
Compare
2118436 to
98adc4d
Compare
eb5a672 to
f3744e5
Compare
1cb991e to
5b89e4c
Compare
cbb9c56 to
92a91b3
Compare
ca59d0d to
f133d69
Compare
dd24c2d to
d47be0c
Compare
9f295fe to
047bc08
Compare
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:
v2024.7.1→v2026.6.3Release Notes
jdx/mise (jdx/mise)
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.
v2026.5.18: : Hook script arrays and lock-identity fixesCompare Source
A focused release that teaches hooks to accept script arrays, ships an
npm install -g misepackage, and tightens lock identity across several backends somise.lockentries can no longer be reused for option combinations that resolve to a different artifact set.Added
(config) Hooks now accept
script/scriptsarrays for current-shell hooks (#9836 by @risu729):Note that
runis still string-only — to spawn multiple inline commands, use a list of{ run = "..." }entries or one multilinerunstring.Fixed
hook-envreactivation, so an inactive install path likeinstalls/node/24/bininherited from a parent shell can no longer sit ahead of the active project'sinstalls/node/22.17.1/bin(#10162 by @risu729)..miserc.tomldiscovery now stops at rawMISE_CEILING_PATHSentries (without recursing through the lazy fallback), preventing a parent.miserc.tomlabove the ceiling from injectingMISE_ENV(#10165 by @risu729).mise tasks ls --json,tasks info --json, and the MCP tasks resource now serialize fullrunentries — including single task refs and task groups — instead of script-only strings (#10163 by @risu729).usage-libto 3.4.0 and update the zsh completion to readdisplay<TAB>insertpairs fromusage complete-word, restoring task completions after theusage-cli3.4.0 output change (#10181 by @jdx).warnhelper used by the standalone installer's checksum fallback paths (#10157 by @risu729, recreating @olfway's original fix).Lock identity
A batch of fixes ensures
mise lockselects entries by an identity that actually reflects the installed result, so toggling an option no longer silently reuses a stale lock entry:tool@versionresolved againstconda-forge,bioconda, or a private channel can produce entirely different builds and checksums (#9984 by @risu729).profile,components, andtargets, read from both tool options andrust-toolchain.toml, with stable sorting (#9988 by @risu729).api_url,version_prefix, per-platformasset_pattern, directurl,no_app) for GitHub, GitLab, and Forgejo backends, resolved per target platform (#9985 by @risu729).patch_sysconfig = false(the interpreter tree differs after install);virtualenvstays out as an activation-only overlay (#10161 by @risu729).Changed
misepackage, sonpm install -g miseandnpx misework directly. The legacy@jdxcode/misescoped package continues to be published, and the new wrapper reuses the existing@jdxcode/mise-<os>-<arch>platform tarballs (#10183 by @jdx).Full Changelog: jdx/mise@v2026.5.17...v2026.5.18
💚 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.5.17: : Custom aqua registry cache and Windows fixesCompare Source
A catch-up release for the tag that shipped the compiled custom aqua registry cache, several Windows task/shim fixes, and a handful of backend install improvements. This release is backfilled without binary assets; use
v2026.5.18or newer for downloadable artifacts.Added
Fixed
vprefix in--bumplatest queries (#10130 by @jdx).PATH, avoiding mixed-case path handling surprises (#9927 by @jdx).windows-arm64build for Bun 1.3.10 and newer (#10150 by @M1noa).PATHto/cygdriveform for Cygwin bash tasks on Windows (#10147 by @M1noa).-C/--cdusable in task argument completion (#10153 by @M1noa).x86release assets asx64fallbacks where upstreams publish mismatched naming (#10103 by @jdx).Changed
herdrviagithub:ogulcancelik/herdr(#10154 by @ogulcan).databricks-cliviaaqua:databricks/cli(#10072 by @nstrug).Documentation
Full Changelog: jdx/mise@v2026.5.16...v2026.5.17
💚 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.5.16: : versions-host metadata, fork-bomb fixes, and friendlier upgradesCompare Source
Added
mise-versionshost for release metadata and artifact attestations before falling back toapi.github.com, dramatically cutting anonymous GitHub API usage in CI/Docker (#10127 by @jdx).node.npm_shimsetting (MISE_NODE_NPM_SHIM) to opt out of the bundled npm wrapper, lettingcorepackmanagebin/npmcleanly (#10082 by @jjb).allow_buildstool option for npm-backend installs that expands to--allow-build=<pkg>for aube and pnpm, accepting a string, array, ortruefor all builds (#10116 by @jdx).Fixed
dependency_envPATH to prevent npm/go shim re-entry fork-bombs in devcontainer/Docker setups usingmise install --system(#10019 by @andrewjamesbrown).gcompaton Alpine no longer flips mise to glibc binaries (#10020 by @thespags).github_contentpackages using raw GitHub content URLs instead of archive URLs (#10102 by @risu729).hook-envand other prefer-offline flows no longer fetch remote versions to resolve concrete/latest/prefix:*specs, speeding up shells with many fuzzy tools (#10098 by @jdx).go = "1.25"show the best matching installed version in summaries (#9973 by @jdx).mise lockandmise upgradeto refreshmise.lockeven whenlocked = trueis set (#10111 by @jdx).disable_backends, including explicit syntax likeubi:owner/repo(#9905 by @risu729).-(e.g.mise use dummy@--version) (#10113 by @jdx).MISE_ENV/-Eprofile when an activated subshell sourcesmise activate(#10124 by @jdx).MISE_GLOBAL_CONFIG_FILEwhen runningmise unsetfrom$HOME, matchingmise set/use(#10105 by @jdx).config_rooton tasks loaded from global config so{{config_root}}renders correctly (#10106 by @jdx).~/in sandboxallow_read/allow_writepaths (#10112 by @jdx).--pip-args=VALUEinto a single argv element so pipx's argparse accepts values starting with--(#10120 by @iloveitaly).url_replacementsto the GitHub attestations API base URL (#9971 by @SlaterByte).Performance
Changed
npmon Windows (aqua's standalonenpm/clitarball is broken on Windows) (#10101 by @risu729).wrangler,gemini-cli,vercel,codebuff,jules,orval,serverless), and drop npm fallbacks forast-grep,lefthook,claude,code(#9916 by @risu729).modem-dev/hunk(#10051 by @naoki-mizuno),wacli(#10043 by @dovocoder),liquibasevia the github backend (#10052 by @benberryallwood),longbridge-terminal(#10073 by @hogan-yuan), and makeaubemore resilient (#10092 by @bgeron, #10110).Documentation
main.tfreference (#10099 by @risu729).💚 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.5.15: : loongarch64 and riscv64 supportCompare Source
A small release that recognizes
loongarch64andriscv64as valid platform arches and refreshes the conda (rattler) backend.Fixed
loongarch64andriscv64to the set of arches accepted byPlatform::validate(). Previously, lockfiles targetinglinux-riscv64orlinux-loongarch64would fall back to the common platform set instead of resolving to the requested single platform, so installs on those machines couldn't use lockfile-authoritative platform selection (#10038 by @k0tran).Changed
rattler(used by the conda backend) from 0.42 to 0.43, picking up upstream fixes for missing symlinks during Windows installs, deterministic path ordering fromlink_package_sync, and accepting full URLs as the OAuth issuer host (#10030).New Contributors
Full Changelog: jdx/mise@v2026.5.14...v2026.5.15
💚 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.5.14: : Reject wrong-arch release assetsCompare Source
A small fix release that hardens GitHub release asset auto-selection against picking binaries for the wrong CPU architecture.
Fixed
cargo-msrvon aarch64 Linux, wherecargo-msrv-x86_64-unknown-linux-gnu-*.tgzwas being chosen over no-match-better-than-wrong-match. Explicitasset_patternconfiguration is unchanged (#10018 by @jdx).Full Changelog: jdx/mise@v2026.5.13...v2026.5.14
💚 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.5.13: : Safer npm installs, faster shell completionsCompare Source
A focused release that tightens npm install safety by default, removes network calls from shell completion generation, and fixes asset picking so primary release binaries beat related sub-archives.
Added
(npm) The npm backend now passes
--ignore-scripts=trueby default when installing throughnpm, and no longer adds Bun's--trustflag automatically.npm_argsandbun_argsremain the user escape hatches and are appended after the defaults, so you can opt back in per tool (#9913 by @risu729):For dependency build approvals, prefer
aubeorpnpmwith--allow-build=<pkg>; see the refreshed npm backend docs.Fixed
mise completionis often invoked on shell init. It no longer refreshes remote version metadata while building the toolset, so slow networks and timeouts don't delay every new shell (#10010 by @sargunv-headway).manylinux*/musllinux*asset names as Linux with the right glibc/musl libc. This fixes installs likeopengrep/opengrep, whereopengrep-core_linux_aarch64.tar.gzwas previously winning over the primaryopengrep_*binary. Explicitasset_patternconfiguration is unchanged (#10008 by @risu729).tool_aliasentries with per-aliasasset_pattern/bin_path) are now visible to runtime symlink and shim rebuilds. Previously these alias backends bypassed the global backend cache and could be missed after install, leavinglatestsymlinks or executable shims unbuilt (#9848 by @risu729).mise-pluginsvfox plugin set now includesvfox-groovy,vfox-php, andvfox-scalaas fallbacks after the default asdf backend (#9832 by @risu729).mise doctorversion-check request now uses the regular HTTP client and the configuredhttp_timeout(controllable viaMISE_HTTP_TIMEOUT), instead of an unconfigurable 3s timeout. Timeout error messages now point at the real setting (#9977 by @risu729).Changed
vectornow uses the aqua backend, which has Vector-specificvdev-*release filtering. This avoids resolving strayvdev-*GitHub releases as the latest Vector (#10011 by @jdx).valenow tracks its updated aqua-registry location (#10002 by @eread).prerelease(and other tool options) through a local typed option reader, with the legacy package-flag fallback preserved (#9962 by @risu729).Full Changelog: jdx/mise@v2026.5.12...v2026.5.13
💚 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.5.12: : minimum-release-age, global edit, and install_env fixesCompare Source
A focused release that renames the release-age cutoff flag to something more discoverable, deprecates the legacy
default_packages_filemechanism, and fixes severalinstall_envpropagation gaps across backends.Added
(cli)
mise edit --global/-gopens the global config file (~/.config/mise/config.toml, or$MISE_GLOBAL_CONFIG_FILEif set), bringingmise editin line withmise use --global,mise settings set --global, and other commands. A positional path still wins over the flag (#9953 by @fru1tworld).(cli) The release-age cutoff flag on
mise install,use,upgrade, andlatesthas been renamed from--beforeto--minimum-release-age, matching the per-tool option and global setting of the same name. The old--beforespelling is kept as a hidden alias so existing scripts keep working (#9768 by @risu729):Fixed
cosign.opts --keylocally, instead of routing them throughsigstore-verify's unsupported public-key bundle path. This fixes installs likeaqua:stackrox/kube-linter@0.8.3, which previously failed withpublic key verification not yet supported(#9972 by @jdx).install_envis now passed into tool-levelpostinstallhook commands (#9930 by @risu729) and applied to command-backed install paths across package-manager backends, vfoxcmd.exechooks, SPM build/probe commands, and core language install-time commands (#9929 by @risu729).cargo install(instead ofcargo-binstall) when tool options require source-build feature selection.cargo-binstallis still used for compatible options such asbin,crate, andlocked(#9928 by @risu729).env_filesetting and theMISE_ENV_FILEenv var, which had been incorrectly marked deprecated.env._.fileinmise.tomlis the right replacement for legacy top-levelenv_fileentries, but it's not behaviorally equivalent toMISE_ENV_FILE=.env, which usesFindUpfrom the current directory (#9903 by @risu729).Changed
(core) Default package files are now on a deprecation timeline (#9970 by @jdx). The settings
go.default_packages_file,node.default_packages_file,python.default_packages_file, andruby.default_packages_file(i.e.~/.default-go-packages,~/.default-npm-packages,~/.default-python-packages,~/.default-gems) will start emitting a warning in2026.11.0and be removed in2027.11.0. The recommended replacements are package-manager backends for CLIs:or a tool-level
postinstallhook for packages that really should be installed into every runtime version:(cli) User-facing help, docs, and the man page now use tool/backend wording instead of plugin/runtime where tools are not necessarily plugins, including renaming
MISE_${PLUGIN}_VERSIONreferences toMISE_${TOOL}_VERSION.mise tool-aliasnow prefers--toolas the primary long flag, with--pluginretained as an alias (#9906 by @risu729).(registry) The
qsvshorthand now resolves toaqua:dathere/qsvfirst, falling back to the existinggithub:dathere/qsvandasdf:vjda/asdf-qsventries (#9910 by @risu729).(snap) The snap package is now built and published for
arm64in addition toamd64, sosnap install miseworks on arm64 desktops (#9948 by @jnsgruk).New Contributors
Full Changelog: jdx/mise@v2026.5.11...v2026.5.12
💚 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.5.11: : Provenance verification at lock timeCompare Source
Added
mise lock, with a newprovenance_api_failures_fatalsetting to control whether GitHub attestation API failures are fatal (#9945 by @jdx).github:prefix-dev/pixi@0.68.1(#9898 by @sargunv).Configuration
📅 Schedule: (UTC)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, 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.