deps: update dependency jdx/mise to v2026.2.11 #1328
+7
−7
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.2.3→2026.2.11Release Notes
jdx/mise (jdx/mise)
v2026.2.11: : Templates Level UpCompare Source
A small release with a nice quality-of-life improvement for tera template users and a bug fix for file watching.
Highlights
tools.<name>[0].path,tools.<name>[1].path, etc. Single-version tools continue to work as before withtools.<name>.path. #8129Bug Fixes
read_file(),hash_file(),file_size(), andlast_modified()are now properly tracked byhook-env. Previously, changes to these files wouldn't trigger an environment refresh until you changed directories. #8122New Tools
v2026.2.10: : Shims, Stdin, and Smarter OfflineCompare Source
This release brings several quality-of-life features alongside a solid round of bug fixes.
Highlights
Shims as PATH fallback during activation — When
not_found_auto_installis enabled (the default), mise now adds the shims directory to your PATH as a fallback. This fixes a subtle issue where subshells or child processes could miss uninstalled tools or pick up the wrong system version instead of the mise-managed one. Thanks @ctaintor for this contribution! #8106toolsvariable in Tera templates — You can now reference{{ tools.node.version }}and{{ tools.node.path }}directly in env templates and task templates (withtools = true), eliminating the need forexec(command='node --version')workarounds. #8108 — Template docsmise set --stdinfor multiline values — Need to set an SSH key, certificate, or other multiline value as an environment variable?mise set --stdin MY_KEYnow reads from stdin until EOF. #8110Bug Fixes
MISE_OFFLINEnow works correctly — Previously, offline mode could hang or error out instead of gracefully falling back to local data. This is now fixed, andoffline/prefer_offlineare proper settings configurable inmise.toml. #8109mise upgradecould leave behind invalid symlinks when uninstalling old versions, thanks @roele. #8099 #8101github:docker/buildxthat ship in-toto statements without sigstore signatures no longer fail verification, thanks @gerhard. #8094latestversion prefix — Thevprefix is no longer incorrectly added when resolving "latest" for GitHub release backends. #8105version_expr. #8081Registry
New Contributors
Welcome @ctaintor, @rileychh, @fortmarek, @pose, and @gerhard — thanks for your first contributions!
📦 Aqua Registry Updates
New Packages (2)
entireio/clirmitchellscott/reManagerUpdated Packages (1)
atuinsh/atuinv2026.2.9: : Ruby Plays Nice with Legacy LinuxCompare Source
This release brings a quality-of-life improvement for Ruby users on older Linux distributions, plus a couple of important bug fixes.
Highlights
Automatic Ruby variant selection for older glibc systems (#8069)
If you're running Linux with glibc older than 2.35 (common on RHEL 7, Amazon Linux 2, CentOS 7, or older Debian/Ubuntu versions), mise will now automatically download the no-YJIT precompiled Ruby variant instead of failing with cryptic errors. This means precompiled Ruby "just works" on a much wider range of Linux systems without any manual configuration. Systems with glibc 2.35+ (Ubuntu 22.04+, Debian 12+, Fedora 36+) continue to get the standard YJIT-enabled builds as before.
Bug Fixes
Windows shim updates with self-update (#8075) —
mise self-updateon Windows now properly updatesmise-shim.exealongsidemise.exe. Previously, users had to manually download the shim from GitHub releases after updating.Fixed
cargo install mise(#8077) — Bumped thexxdependency to 2.5 to fix an issue where Cargo was selecting an incompatible older version, causing installation failures. Thanks @erickt for the fix and welcome to mise!Documentation
📦 Aqua Registry Updates
Updated Packages (1)
carthage-software/magov2026.2.8: : Hooks Get Their Act TogetherCompare Source
This release focuses on hooks—fixing 12 community-reported issues that were making them unreliable. There are also some nice quality-of-life improvements for Node.js and Ruby users.
Highlights
Hooks overhaul — A comprehensive fix for the hooks system addressing a dozen issues reported by the community. Global hooks now actually work, hook execution order is corrected (leave fires before enter), infinite loops in fish shell are fixed, and postinstall hooks can now find all installed tools. #8058
Node version detection from package.json — mise now reads tool versions directly from
package.jsonusing thedevEnginesandpackageManagerfields. This means your Node, Bun, pnpm, yarn, and npm versions can be auto-detected without a separate.tool-versionsormise.tomlfile. Semver ranges are simplified automatically (>=18.0.0→18). #8059Precompiled Ruby goes stable — You can now use precompiled Ruby binaries by setting
ruby.compile=falsewithout needingexperimental=true. This will become the default in 2026.8.0. If you haven't tried it, precompiled Ruby installs in seconds instead of minutes. #8052New Features
--dry-run-codeflag — Added toinstall,upgrade,prune,uninstall, andusecommands. Behaves like--dry-runbut exits with code 1 when there's work to do, enabling patterns likeif ! mise install --dry-run-code -q; then mise install; fi#8063Bug Fixes
MISE_ARCHat runtime, which is useful for Windows ARM64 users running x64 binaries under emulation #8062mise settings set,mise settings add,mise config set, andmise shell-alias setnow acceptkey=valueas a single argument #8053Registry
npm:quicktype) — thanks @zdunecki! #8054Dependencies
v2026.2.7: : Windows Gets RealCompare Source
This release brings a significant improvement for Windows users with native
.exeshims, along with several bug fixes that improve the reliability of tool installation and version resolution.Highlights
Native Windows Shims (#8045)
mise now generates native
.exeshim files instead of.cmdbatch scripts. This resolves a whole category of frustrating issues:ENOENTerrors fromspawnSyncin nodewhere.exenow correctly finds your toolsThe new
"exe"mode is now the default forwindows_shim_mode. This follows the same pattern used by Scoop, Volta, and Chocolatey. If you need to switch back, you can setwindows_shim_mode = "file"in your settings. Thanks to @iki for helping with this.Bug Fixes
Config options preserved during CLI installs (#8044) - Running
mise install tool@versionwith an explicit version no longer loses tool-level config options likepostinstallfrom yourmise.toml. Registry defaults (likeuvx=falseorpipx_args) are also preserved when using table syntax.Linked versions take priority over lockfiles (#8050) - Tools created with
mise linknow correctly override lockfile entries during version resolution. Previously, a lockfile pin would override your linked version, causing confusing "missing" warnings.Fixed duplicate entries in
ls --all-sources(#8042) - Thanks @roele!Registry Updates
oxlintto use npm backend by default (#8038) - Thanks @risu729!orvalfor OpenAPI client generation:mise use orval(#8051) - Thanks @zdunecki for your first contribution!v2026.2.6: : Shell Expansion & Source TrackingCompare Source
This release brings a couple of nice quality-of-life improvements alongside several bug fixes.
Highlights
Shell-style variable expansion in env values (#8029) - You can now use shell-style variable expansion like
${VAR:-default}and${VAR:+alternate}directly in yourmise.tomlenvironment variables. This makes it easier to set up flexible configurations without needing to drop into shell scripts.New
--all-sourcesflag formise ls(#8019) - Thanks to @TylerHillery for adding this flag, which shows all the sources where a tool version is defined. Useful for debugging why a particular version is being used when you have multiple config files.Bug Fixes
--all-sourcesoutput are now sorted deterministically (#8037)mise.toml, matching the behavior of inline tasks (#8030)Security
timecrate to 0.3.47 to address RUSTSEC-2026-0009 (#8026)New Tools
New Contributors
Welcome to @sheeki03 and @TylerHillery for their first contributions!
📦 Aqua Registry Updates
New Packages (1)
kubernetes-sigs/kubectl-validateUpdated Packages (6)
flux-iac/tofu-controller/tfctlgogs/gogsj178/preksyncthing/syncthingtuist/tuistyaml/yamlscriptv2026.2.5: : Lockfiles Break FreeCompare Source
This is a small maintenance release with one user-facing improvement.
Bug Fixes
mise.lockfiles without settingexperimental = truein your configuration. Lockfiles help ensure reproducible tool versions across your team, and this change makes them accessible to everyone by default. (#8011)For more information on lockfiles, see the documentation.
📦 Aqua Registry Updates
Updated Packages (1)
uutils/coreutilsv2026.2.4: : Taming the EnvironmentCompare Source
This release focuses on fixing several edge cases in environment handling and tool management. Users working with complex environment configurations, npm package managers, and locked tool versions will find this update particularly helpful.
Bug Fixes
Environment variable resolution for tool templates: When using
env._.sourceto source environment files, tool templates now correctly resolve the sourced environment variables. Previously, tool version templates that depended on sourced env vars might not have worked as expected. Thanks to @corymhall for this fix! #7895npm package manager dependencies: When using mise to manage Node.js package managers (npm, yarn, pnpm, bun), mise now only declares the specifically configured package manager as a dependency rather than all of them. This prevents unnecessary dependency resolution issues. #7995
Respect
use_locked_versionduring upgrades: Themise upgradecommand now properly respects theuse_locked_versionsetting when checking tracked configs. If you have this setting enabled, upgrades will now correctly use the locked versions from your config files. #7997Ignore
MISE_TOOL_VERSIONin env parsing: Fixed an issue where the internalMISE_TOOL_VERSIONenvironment variable could interfere with environment variable parsing, preventing potential conflicts in certain workflows. #8004New Contributors
Welcome to @corymhall who made their first contribution to mise! 🎉
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 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.