A small release that adds a --local flag for scoping outdated and upgrade to project-local tools, fixes several bugs around env var redaction, Tera template rendering in prepare, and task output configuration, and corrects a regression in the standalone installer.
Added
-
--localflag foroutdatedandupgradecommands -- You can now runmise upgrade --localormise outdated --localto restrict operations to tools defined in project-local config files (e.g.,mise.toml), skipping anything from the global config (~/.config/mise/config.toml). This is useful when you have separate workflows for managing global vs. project-local tool versions. #8451 by @malept# Only upgrade tools defined in the local mise.toml mise upgrade --local # Only show outdated tools from the local config mise outdated --local
-
tinygo added to the registry -- TinyGo is now available via
mise use tinygo, using the aqua backend. #8446 by @artemklevtsov
Fixed
-
task.outputconfig setting now works for quiet/silent modes -- Settingtask.output = "quiet"ortask.output = "silent"inmise.tomlwas not suppressing mise's own output during task runs. Only theMISE_TASK_OUTPUTenvironment variable worked. Both approaches now behave identically. #8445 by @my1e5 -
Redactions applied correctly when
tools = trueandredact = trueare combined -- Environment variables with bothtools = trueandredact = truewere not being redacted in task output because the tools-only code path collected redactions but never registered them with the global redactor. Secret values now correctly appear as[redacted]. #8449 by @jdx -
Tera templates rendered in
[prepare.*.env]values -- Tera template expressions like"{{env.MY_VAR}}"in prepare provider env blocks were being passed as literal strings instead of being rendered. They are now evaluated with the full toolset environment available in the template context. #8450 by @jdx -
Standalone installer tar zstd version check regex fixed (again) -- A follow-up fix to the regex repair in v2026.3.1: a missing escape on the opening parenthesis caused
grep: Unmatched ) or \)errors. The regex is now fully correct. #8453 by @chadlwilson
Full Changelog: v2026.3.1...v2026.3.2