chore(deps): update dependency mise to v2026.4.20#562
Open
renovate[bot] wants to merge 1 commit intomainfrom
Open
chore(deps): update dependency mise to v2026.4.20#562renovate[bot] wants to merge 1 commit intomainfrom
renovate[bot] wants to merge 1 commit intomainfrom
Conversation
Deploying with
|
| Status | Name | Latest Commit | Preview URL | Updated (UTC) |
|---|---|---|---|---|
| ✅ Deployment successful! View logs |
biwa-docs | fab1949 | Commit Preview URL Branch Preview URL |
Apr 24 2026, 04:17 PM |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #562 +/- ##
==========================================
+ Coverage 41.28% 47.87% +6.59%
==========================================
Files 16 20 +4
Lines 671 1387 +716
==========================================
+ Hits 277 664 +387
- Misses 394 723 +329 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
b4639f2 to
263dae5
Compare
263dae5 to
fab1949
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.4.17→2026.4.20Release Notes
jdx/mise (mise)
v2026.4.20: : Lockfile cleanup and path: fixesCompare Source
A focused patch release that cleans up two long-standing lockfile and path-resolution bugs, makes GitHub attestation verification tolerant of regex-based aqua registry URLs, and reworks how the aqua registry is baked into mise.
Highlights
mise lock tool@latestnow writes a concrete version and heals lockfiles already poisoned withversion = "latest".path:tool versions with relative paths resolve correctly against the config root.registry.yaml, pinned by tag.Fixed
(config) Relative
path:tool versions are now resolved at parse time against the config's root directory (or CWD for CLI args), with~/expansion and leading./stripped. Previously, a value likepath:./packages/logrwas joined withinstalls_pathat install time and produced a bogus directory such as~/.local/share/mise/installs/logr/./packages/logr. (#9320) by @jdx(lock)
mise lockhandling of@latesthas been overhauled (#9321 by @jdx):mise lock tool@latestnow resolveslatestto the newest installed version instead of writing the literal string"latest"into the lockfile.mise lockno longer produces duplicate[[tools.<name>]]entries when the config usestool = "latest".version = "latest"are cleaned up in a singlemise lockrun.GitHub artifact attestation verification now works when the aqua registry entry uses a regex in the workflow URL, unblocking installs such as
aqua:updatecli/updatecli. (#9327) by @monotekChanged
registry.yaml, pinned by tag viacrates/aqua-registry/aqua-registry/metadata.json. The build script generates a canonical package-id map plus an alias lookup table, so runtime lookups only parse the selected package YAML. The pinned tag is now visible inmise doctor. (#9043) by @risu729Added
grafana-kubernetes-plugin. (#9300) by @monotekDocumentation
http/https, dismissals persist per-id inlocalStorage, and the banner height is kept in sync with--vp-layout-top-heightvia aResizeObserver. Theexpiresfield is respected so banners automatically hide after a given date. (#9326, #9330, #9334) by @jdxAqua Registry
Updated aqua-registry from v4.492.0 to v4.498.0, which includes:
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.
Full Changelog: jdx/mise@v2026.4.19...v2026.4.20
💚 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.4.19: : OCI images, aqua templates, and more resilient installsCompare Source
2026.4.19: OCI images, aqua templates, and more resilient installs
This release adds a new way to package environments as OCI images, improves backend flexibility with aqua variable templating, and tightens several authentication and concurrency edge cases that were causing friction in real workflows.
The biggest addition is
misesupport for building OCI images directly frommise.toml, with per-tool layering to make image rebuilds more efficient. Alongside that, aqua-backed tools can now use templated variables, which should make more registries and package definitions work cleanly without custom glue. On the reliability side, fixes in conda, GitHub auth handling, vfox token usage, and interactive CLI cancellation should make automation and authenticated installs behave more predictably.Highlights
mise.tomlwith per-tool image layers.gsudo,kiro-cli,llama.cpp, and Flux operator tooling.Changes
Features
mise.tomlwith per-tool layers by @jdx in #9273gsudo(Sudo for Windows) to registry by @jdx in #9281Bug Fixes
self-updatecommand by @jdx in #9259Registry
flux-operator&flux-operator-mcpby @tiyee in #8852kiro-cliby @jdx in #9274llama.cpp(github:ggml-org/llama.cpp) by @jdx in #9282💚 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.4.18: : Deps management, aube support, and vfox plugin dependenciesCompare Source
A feature-packed release that renames
mise preparetomise depswith new package management subcommands, adds aube as an npm backend package manager, enables vfox plugins to declare their own dependencies, and ships several important fixes for version resolution, lockfile concurrency, and GitHub Enterprise attestation verification.Highlights
mise preparerenamed tomise depswith add/remove subcommands -- The experimental dependency management command is nowmise deps, with newmise deps add npm:reactandmise deps remove npm:lodashsubcommands for managing individual packages. All config keys, settings, state files, and CLI flags have been updated accordingly ([prepare]to[deps],--no-prepareto--no-deps).npm.package_managernow defaults to"auto", which prefers theaubepackage manager when available and falls back tonpm. Explicitnpm.package_manager = "aube"is also supported.PLUGIN.depends = {"node", "python"}inmetadata.lua, so mise resolves installation order automatically without users needingdepends = [...]in their config.version_list_urlnow query their upstream sources directly, fixing the issue where tools like Flutter showed outdated versions.Added
mise depscommand with add/remove subcommands -- The experimentalmise preparecommand has been renamed tomise deps. Newmise deps addandmise deps removesubcommands let you manage individual packages usingecosystem:packagesyntax. Currently supports npm, yarn, pnpm, and bun ecosystems. Baremise depsdefaults tomise deps install(the previousmise preparebehavior). #9056 by @jdx--beforeflag formise latest-- One-off latest-version lookups can now be constrained by release date. Supports absolute dates (2024-06-01) and relative durations (90d,1y). Overrides per-toolinstall_beforeoptions and the globalinstall_beforesetting. #9168 by @risu729Aube package manager support for npm backend -- The npm backend now supports
aubeas an alternative package manager. The new defaultnpm.package_manager = "auto"prefersaubewhen it is available in the active toolset and falls back tonpmotherwise. #9256 by @jdxfilter_binsoption for SPM backend -- Restrict which executable products are built and linked from a Swift package. Filtering happens beforeswift build, so unwanted products are never compiled. #9253 by @jdxvfox plugin-declared dependencies via
metadata.lua-- Plugin authors can now declare tool dependencies directly in their plugin'smetadata.lua. User-specifieddependsinmise.tomlremains additive. #9051 by @ahemonRegistry: bitwarden-secrets-manager -- Now available via the aqua backend (
aqua:bitwarden/sdk-sm), replacing the legacy asdf plugin for better checksum/SLSA verification. #9255 by @msuzoaguFixed
Stale version listings for package-registry backends -- Backends with canonical upstream sources (npm, pipx, cargo, gem, go, and http/s3 with
version_list_url) now skip themise-versions.jdx.devcache and query upstream directly. This fixes the issue where tools like Flutter showed outdated versions until users setMISE_USE_VERSIONS_HOST=0. #9245 by @jdxConcurrent lockfile save race condition -- Fixed
ENOENTerrors when multiple mise processes updated the same lockfile simultaneously (commonly seen with parallel tool installs in CI viahk). Each save now uses a uniquely named temp file instead of a fixedmise.lock.tmppath. #9250 by @jdxGitHub Enterprise attestation verification -- Artifact attestation verification now routes to the configured
api_urlinstead of always hittingapi.github.com, fixing401 Unauthorizederrors for GHES users. #9254 by @jdxNoisy third-party debug/trace logs suppressed -- Debug and trace logs from dependency crates (h2, hyper, reqwest, rustls, etc.) are now filtered out of
-v/-vvoutput. SetMISE_LOG_VERBOSE_DEPS=1to restore them. #9248 by @jdxAnimated progress UI disabled in CI -- CI environments no longer show animated progress frames even when stderr is allocated as a TTY, preventing thousands of duplicate log lines. #9249 by @jdx
mise userespects--quietand--silent-- The "tools:", "removed:", and "would update" messages are now suppressed when--quietor--silentis passed. #9251 by @jdx--lockedworks for vfox backend plugins -- Custom Lua backend plugins that cannot provide download URLs no longer fail with "No lockfile URL found" when usingmise install --locked. #9252 by @jdxNew Contributors
Full Changelog: jdx/mise@v2026.4.17...v2026.4.18
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.