Update dependency mise to v2026.5.15#103
Merged
Merged
Conversation
5fb3708 to
6a9b774
Compare
6a9b774 to
5aafcf4
Compare
5aafcf4 to
9d70606
Compare
9d70606 to
cd58ee7
Compare
cd58ee7 to
330d5b1
Compare
330d5b1 to
18b3b28
Compare
18b3b28 to
376678b
Compare
376678b to
bca040e
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:
2026.5.6→2026.5.15v2026.5.16Release Notes
jdx/mise (mise)
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).git::https://host/repo.git//path/to/plugin?ref=branch(#9893 by @jdx).Fixed
asset_patternand accepts platform-agnostic runtime archives like.phar,.jar, and.pyz(fixes installingcomposer) (#9946 by @jdx).miserc.tomlnow produces a clear parse error at startup instead of being silently ignored (#9937 by @jdx)..mise.backend.tomlmetadata is now written alongside install directories, making merged/copied installs self-describing and refreshing install state mid-run so same-run dependency resolution sees freshly installed tools (#9941 by @jdx).postinstallhooks now run through the configured default inline shell instead of$SHELL -c(#9812 by @risu729).mise cache prune [PLUGIN]...now honors the plugin filter instead of pruning every cache directory (#9914 by @risu729).MISE_TASK_*metadata, andMISE_ENVacross nestedhook-envinvocations, while keeping the nested-PATH fix from #9765 intact (#9850 by @risu729).minimum_release_agecannot mis-route helper tools likenode/npmwhen querying upstream versions (#9808 by @risu729).EnvKeyshooks by the resolved install path so shared/system installs don't reuse user-path cache entries (#9907 by @risu729).mise use -gshadow warning when the active version comes from system config (#9900 by @risu729).pluginsobject tomise doctor -J(#9863 by @risu729).erlang.compile = falseis now strict precompiled mode and no longer falls back tokerl build-installon unsupported distros (#9866 by @risu729).Changed
aquabackend forcilium-hubble,localstack,mark,openbao,porter,process-compose,rtk,sqlc,turso, andxcodegen, with existing GitHub/asdf backends preserved as fallbacks (#9789 by @risu729).aqua:jbangdev/jbangas the primary backend forjbang, enabling Windows support (#9811 by @risu729).dotnet-coretodotnet(#9807 by @risu729).lisette(#9944 by @ivov).sourceryarchive format so macOS installs use the.zipasset instead of trying to extract it astar.gz(#9902 by @risu729).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.5.10: : AWS SSO for s3 backendsCompare Source
A small release that unblocks s3 backends for users on AWS SSO profiles, plus two minor option-handling fixes that fell out of an internal refactor of the GitHub/GitLab/Forgejo backend.
Fixed
(s3) s3 backends now work with SSO-based AWS profiles. The
ssofeature ofaws-configis enabled, so configurations that authenticate via AWS IAM Identity Center no longer fail with:(#9875 by @Amir-Ahmad).
(backend) Two small behavior fixes landed while centralizing Git backend option reads (#9838 by @risu729):
no_appis now read through target-aware platform option lookup, soplatforms.<target>.no_app = trueis honored when resolving assets for cross-platform lockfiles.Changed
BackendOptionsreader and a typed option wrapper for the unified GitHub/GitLab/Forgejo backend. No user-visible behavior change beyond the fixes above (#9838 by @risu729).New Contributors
Full Changelog: jdx/mise@v2026.5.9...v2026.5.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.5.9: : SwiftPM artifact bundles and per-hook watch shellsCompare Source
A modest release: SwiftPM gains artifact bundle support,
[[watch_files]]hooks can pick their own inline shell, and a handful of fixes land for aqua latest-tag resolution, vfoxcmd.exec, and GitHub OAuth device-flow URLs. Plain-string Tera rendering also gets a fast path.Added
(spm) SwiftPM installs now prefer prebuilt artifact bundles (
*.artifactbundle.zip) when a release publishes one for the current Swift target triple, falling back to a source build otherwise (#9825) by @ikesyo. New controls:(config)
[[watch_files]]entries withrunaccept an optionalshellfield, rendered through templates and falling back to the configured default inline shell when unset (#9810) by @risu729:shellonly applies torunhooks; combining it withtaskproduces a warning and the value is ignored.Fixed
latestrelease pointed at a tag that aqua's registry rejected viaversion_filterorversion_constraint, mise would return it anyway. The latest fast path now applies both checks before accepting a tag (#9834) by @risu729.cmd.execcalls inside vfox plugins now build commands from mise's configuredunix_default_inline_shell_args/windows_default_inline_shell_argsinstead of hardcodingsh -corcmd /C, aligning plugin behavior with tasks, Tera command rendering, and other inline shell users (#9837) by @risu729.oauth_auth_urlis now the GitHub login base, with mise appending/device/codeand/oauth/access_tokenper GitHub's device-flow docs (#9791) by @jasisk.mise patronsnow points the "become a patron" link to the en.dev homepage instead of/sponsor(#9868) by @jdx.Changed
npmis now resolved throughaqua:npm/cli(withnpm:npmretained as a fallback), andbuck2switches toaqua:facebook/buck2withprerelease = trueso its always-prerelease releases are visible (#9762, #9805) by @risu729.aqua:SonarSource/sonarqube-cli(#9824) by @3PeatVR.Performance
{{,{%,{#, including whitespace-trimmed forms) now bypass the Tera renderer at config evaluation sites, skipping context construction, async context fetches, andget_terasetup. Tera 1.20.1's grammar guarantees these are the only block openers, so output is unchanged for both well-formed and malformed templates (#9833) by @risu729.Documentation
New Contributors
Full Changelog: jdx/mise@v2026.5.8...v2026.5.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.5.8: : Patrons, cleaner task output, and sigstore-rustCompare Source
A small release: a new
mise patronscommand, cleaner task command output when scripts start with a shebang, and a fix formise upgradesummaries getting wiped by progress cleanup. Under the hood, signature verification moves to the modern sigstore-rust stack.Added
(patrons) New
mise patronssubcommand lists individuals on the Patron tier supporting mise development (#9841) by @jdx. Data is fetched from the en.dev patrons feed, cached for 24h, and falls back to stale cache on network failure. Each patron's name renders as a clickable OSC 8 hyperlink in supporting terminals.Flags:
-J/--json,--refresh.(registry) Add a
racketshorthand backed by the aquaracket/racket/minimalpackage, exposing bothracketandracofrom the official racket-lang.org release artifacts (#9784) by @albertnetymk.Fixed
(task) When a task's
runbody starts with#!/usr/bin/env bashorset -Eeuo pipefail, the echoed command line would show only that boilerplate and hide the rest of the script. Leading shebang, blank, andset ...lines are now skipped when building the displayed command, so the first real command shows up. Execution is unchanged (#9844) by @jdx. Fixes #9842.(upgrade)
mise upgradecould erase its ownUpgraded N tools:summary detail lines when an upgrade also performed an uninstall — fresh progress jobs registered for the cleanup phase were still active at shutdown, sostop_clear()wiped them along with the summary. Progress jobs are now finished and reset before the summary prints (#9860) by @risu729. Regression from #9779; addresses #9856.Changed
verify_github_attestation,verify_cosign_signature,verify_slsa_provenance,detect_attestations) now runs on a localmise-sigstoreadapter built onsigstore-verify0.7 from sigstore-rust, replacing the previoussigstore-verification0.2 dependency (#9260) by @jdx. The mise call sites and helper API are unchanged. The new adapter still covers legacy cosign v1 bundles (e.g. goreleaser-signed releases) and raw DSSE*.intoto.jsonlenvelopes (slsa-github-generator) that the upstreamBundle::from_jsonrejects.Deprecated
(config) The top-level
env_filesetting (andMISE_ENV_FILE) is now marked deprecated. Useenv._.fileinmise.tomlinstead (#9862) by @risu729. The JSON Schema gains thedeprecatedkeyword, a warning is scheduled for 2026.11.0, and removal is planned for 2027.11.0.New Contributors
Full Changelog: jdx/mise@v2026.5.7...v2026.5.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.5.7: : Lazy GitHub tokens, hardened version parsing, and faster task freshnessCompare Source
A round of correctness and performance fixes: vfox-managed tools no longer prompt your password manager on every shell hook,
mise upgradestops double-printing its summary,mise settings getfinally distinguishes typos from unset values, and conda installs that pulled inadwaita-icon-themeare unstuck. Plus a security pass that hardens version-string parsing against shell injection.Fixed
(vfox) GitHub tokens are now resolved lazily inside Lua plugins. Previously,
mise hook-env,mise activate,mise completion, and evenmise --helpwould callgithub.credential_commandfor every installed vfox tool — potentially unlocking a password manager on every prompt. The resolver is now only invoked when a Lua plugin actually issues an HTTP request to a GitHub API URL, e.g. during an install (#9816) by @jdx. Fixes #9797.(upgrade)
mise upgrade(andmise up) no longer prints the installed-tools block twice when an upgrade also needs to uninstall an older version. The shared progress-job registry is now cleared after each phase so the subsequent uninstall renders cleanly (#9779) by @jdx. Fixes #9774.(settings)
mise settings getdistinguishes between a known setting that hasn't been set and a typo:$ mise settings get python.compile mise ERROR Setting [python.compile] is not set $ mise settings get not.a.real.setting mise ERROR Unknown setting: not.a.real.settingPreviously both returned
Unknown setting, sinceOption<T>fields skipped by TOML serialization were indistinguishable from missing keys (#9818) by @jdx.(backend) Several backends (
aqua,github/gitlab/forgejo,http,s3,ubi,vfox,conda, Windowsnpm) reportedbin-pathspointing at the concrete resolved install dir (e.g.installs/tiny/1.0.0/...) instead of the stable runtime symlink for the requested label (e.g.installs/tiny/latest/...). A newruntime_path_for_install_pathhelper remaps backend-discovered absolute paths onto the runtime path while leaving explicit relativebin_pathvalues alone (#9606) by @risu729.(conda)
mise use -g imagemagick(and other tools pulling inadwaita-icon-theme) failed withconda solve failed: encountered duplicate records for adwaita-icon-theme-40.1.1-.... rattler-solve detects duplicates byDistArchiveIdentifierrather than URL, so when conda-forge served the same archive under multiple CDN URLs, the existing URL-based dedup wasn't enough. Dedup now usesr.identifier, the exact key the solver uses (#9831) by @jdx. Fixes #9829.Added
github.credential_commandnow runs through the configured default inline shell (instead of hardcodedsh -c) and is invoked withMISE_CREDENTIAL_HOSTandMISE_CREDENTIAL_PROVIDERin the environment. The deprecated$1/${1}hostname positional argument continues to work for sh-compatible shells (ash,bash,dash,ksh,sh,zsh); a deprecation warning lands in2026.11.0and removal is planned for2027.11.0(#9664) by @risu729.Performance
(aqua) The baked aqua standard-registry package and alias lookup tables are now generated as static
phf::Maps at build time viaphf_codegen, instead of lazy runtimeHashMaps. Warmed lookup is comparable, but first-use no longer allocates ~115 KiB of heap or builds a 2,179-entry bucket table (#9763) by @risu729.(task) When
task.source_freshness_hash_contents = true, mise now caches each source file's blake3 hash keyed by(size, mtime_secs, mtime_nanos)— git's stat-info trick — in a per-task file underSTATE/task-sources/. Unchanged files are skipped on subsequent runs; entries for files removed fromsourcesare pruned automatically (#9819) by @jdx. See discussion #9802.Security
ToolRequestboundary (#9814) by @jdx.ToolRequest::newnow validatesversion,prefix,ref/*,sub-*, andpath:requests, rejecting$, backticks, quotes,\, control chars, and..traversal. This single change neutralizes the CRITICAL RCE class flagged againstvfox-ag,vfox-bfs,vfox-bpkg,vfox-chezscheme,vfox-redis,vfox-yarn, and shell-injection findings onclickhouse,leiningen,pipenv,poetry,azure-functions-core-tools,carthage, andandroid-sdk, since no Lua hook can observe a hostilectx.version/ctx.rootPath. Real-world strings like1.2.3-beta,lts/hydrogen,3.12.0a1, andnightlycontinue to validate. The PR also tightensworkflow_dispatchinput validation in the COPR, PPA, npm-publish, and Docker workflows.Registry
exe = ...options across ~30 GitHub/GitLab registry entries (astro,babashka,coursier,glab,odin,openbao,purescript, and many more) (#9587) by @risu729. Two entries gained real config to fix Linux installs:soliditynow usesbin = "solc"so the installed binary matches the upstreamsolc-static-linuxasset.sourcerynow usesformat = "tar.gz"because the upstream Linux asset is gzip-compressed despite its.tar.xzfilename.pitoearendil-works/pi(#9792) by @garysassano.Documentation
Full Changelog: jdx/mise@v2026.5.6...v2026.5.7
💚 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: 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.