Skip to content

deps: update dependency jdx/mise to v2026.5.14#1417

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/jdx-mise-2026.x
Open

deps: update dependency jdx/mise to v2026.5.14#1417
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/jdx-mise-2026.x

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented May 24, 2026

This PR contains the following updates:

Package Update Change Pending
jdx/mise patch 2026.5.102026.5.14 v2026.5.15

Release Notes

jdx/mise (jdx/mise)

v2026.5.14: : Reject wrong-arch release assets

Compare Source

A small fix release that hardens GitHub release asset auto-selection against picking binaries for the wrong CPU architecture.

Fixed

  • (github) Asset auto-selection now hard-rejects any candidate whose filename explicitly declares a non-matching architecture, even when other scoring bonuses (preferred name, archive type, libc match) would otherwise rank it first. This fixes cases like cargo-msrv on aarch64 Linux, where cargo-msrv-x86_64-unknown-linux-gnu-*.tgz was being chosen over no-match-better-than-wrong-match. Explicit asset_pattern configuration 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 completions

Compare 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=true by default when installing through npm, and no longer adds Bun's --trust flag automatically. npm_args and bun_args remain the user escape hatches and are appended after the defaults, so you can opt back in per tool (#​9913 by @​risu729):

    [tools]
    # opt back into npm lifecycle scripts for one tool
    "npm:some-tool" = { version = "latest", npm_args = "--ignore-scripts=false" }
    # opt into Bun's broad install-time script trust
    "npm:other-tool" = { version = "latest", bun_args = "--trust" }

    For dependency build approvals, prefer aube or pnpm with --allow-build=<pkg>; see the refreshed npm backend docs.

Fixed

  • (completion) mise completion is 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).
  • (github) Auto-detection scoring now gives a small bonus to assets whose platform-stripped filename matches the repo/tool name, and treats manylinux* / musllinux* asset names as Linux with the right glibc/musl libc. This fixes installs like opengrep/opengrep, where opengrep-core_linux_aarch64.tar.gz was previously winning over the primary opengrep_* binary. Explicit asset_pattern configuration is unchanged (#​10008 by @​risu729).
  • (shim) Optioned tool aliases (e.g. GitHub tool_alias entries with per-alias asset_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, leaving latest symlinks or executable shims unbuilt (#​9848 by @​risu729).
  • (release) The embedded mise-plugins vfox plugin set now includes vfox-groovy, vfox-php, and vfox-scala as fallbacks after the default asdf backend (#​9832 by @​risu729).
  • (doctor) The mise doctor version-check request now uses the regular HTTP client and the configured http_timeout (controllable via MISE_HTTP_TIMEOUT), instead of an unconfigurable 3s timeout. Timeout error messages now point at the real setting (#​9977 by @​risu729).
  • (config) Tool options coming from the install manifest are tracked as their own source layer, kept below config and inline backend args in precedence, and no longer serialized back out as inline backend args (#​9958 by @​risu729).

Changed

  • (registry) vector now uses the aqua backend, which has Vector-specific vdev-* release filtering. This avoids resolving stray vdev-* GitHub releases as the latest Vector (#​10011 by @​jdx).
  • (registry) vale now tracks its updated aqua-registry location (#​10002 by @​eread).
  • (dotnet) The .NET backend reads 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 fixes

Compare Source

A focused release that renames the release-age cutoff flag to something more discoverable, deprecates the legacy default_packages_file mechanism, and fixes several install_env propagation gaps across backends.

Added

  • (cli) mise edit --global / -g opens the global config file (~/.config/mise/config.toml, or $MISE_GLOBAL_CONFIG_FILE if set), bringing mise edit in line with mise 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, and latest has been renamed from --before to --minimum-release-age, matching the per-tool option and global setting of the same name. The old --before spelling is kept as a hidden alias so existing scripts keep working (#​9768 by @​risu729):

    mise latest node --minimum-release-age 2024-01-01
    mise install --minimum-release-age 90d

Fixed

  • (aqua) Verify cosign bundles that ship a long-lived public key via cosign.opts --key locally, instead of routing them through sigstore-verify's unsupported public-key bundle path. This fixes installs like aqua:stackrox/kube-linter@0.8.3, which previously failed with public key verification not yet supported (#​9972 by @​jdx).
  • (backend) Per-tool install_env is now passed into tool-level postinstall hook commands (#​9930 by @​risu729) and applied to command-backed install paths across package-manager backends, vfox cmd.exec hooks, SPM build/probe commands, and core language install-time commands (#​9929 by @​risu729).
  • (cargo) Fall back to cargo install (instead of cargo-binstall) when tool options require source-build feature selection. cargo-binstall is still used for compatible options such as bin, crate, and locked (#​9928 by @​risu729).
  • (config) Restore the env_file setting and the MISE_ENV_FILE env var, which had been incorrectly marked deprecated. env._.file in mise.toml is the right replacement for legacy top-level env_file entries, but it's not behaviorally equivalent to MISE_ENV_FILE=.env, which uses FindUp from 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, and ruby.default_packages_file (i.e. ~/.default-go-packages, ~/.default-npm-packages, ~/.default-python-packages, ~/.default-gems) will start emitting a warning in 2026.11.0 and be removed in 2027.11.0. The recommended replacements are package-manager backends for CLIs:

    [tools]
    "npm:typescript" = "latest"
    "pipx:black"     = "latest"
    "gem:rubocop"    = "latest"
    "go:github.com/jesseduffield/lazygit" = "latest"

    or a tool-level postinstall hook for packages that really should be installed into every runtime version:

    [tools]
    node = { version = "22", postinstall = "npm install -g typescript" }
  • (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}_VERSION references to MISE_${TOOL}_VERSION. mise tool-alias now prefers --tool as the primary long flag, with --plugin retained as an alias (#​9906 by @​risu729).

  • (registry) The qsv shorthand now resolves to aqua:dathere/qsv first, falling back to the existing github:dathere/qsv and asdf:vjda/asdf-qsv entries (#​9910 by @​risu729).

  • (snap) The snap package is now built and published for arm64 in addition to amd64, so snap install mise works 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 time

Compare Source

Added

  • (security) Verify and record provenance during mise lock, with a new provenance_api_failures_fatal setting to control whether GitHub attestation API failures are fatal (#​9945 by @​jdx).
  • (security) Fall back to verifying archive contents when SLSA provenance attests every file inside an archive but not the archive itself, fixing releases like github:prefix-dev/pixi@0.68.1 (#​9898 by @​sargunv).
  • (plugins) Support remote git subdirectory sources for plugins, e.g. git::https://host/repo.git//path/to/plugin?ref=branch (#​9893 by @​jdx).

Fixed

  • (github) Asset picker now picks the shortest matching name as a tiebreaker for asset_pattern and accepts platform-agnostic runtime archives like .phar, .jar, and .pyz (fixes installing composer) (#​9946 by @​jdx).
  • (config) Invalid miserc.toml now produces a clear parse error at startup instead of being silently ignored (#​9937 by @​jdx).
  • (install) Per-tool .mise.backend.toml metadata 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).
  • (install) postinstall hooks now run through the configured default inline shell instead of $SHELL -c (#​9812 by @​risu729).
  • (cache) mise cache prune [PLUGIN]... now honors the plugin filter instead of pruning every cache directory (#​9914 by @​risu729).
  • (task) Preserve task-declared env, MISE_TASK_* metadata, and MISE_ENV across nested hook-env invocations, while keeping the nested-PATH fix from #​9765 intact (#​9850 by @​risu729).
  • (backend) Resolve helper dependency toolsets in offline mode so minimum_release_age cannot mis-route helper tools like node/npm when querying upstream versions (#​9808 by @​risu729).
  • (vfox) Key vfox EnvKeys hooks by the resolved install path so shared/system installs don't reuse user-path cache entries (#​9907 by @​risu729).
  • (use) Skip the mise use -g shadow warning when the active version comes from system config (#​9900 by @​risu729).
  • (doctor) List installed plugins from install state, including those owned by disabled backends, and add a plugins object to mise doctor -J (#​9863 by @​risu729).
  • (erlang) erlang.compile = false is now strict precompiled mode and no longer falls back to kerl build-install on unsupported distros (#​9866 by @​risu729).

Changed

  • (registry) Prefer the aqua backend for cilium-hubble, localstack, mark, openbao, porter, process-compose, rtk, sqlc, turso, and xcodegen, with existing GitHub/asdf backends preserved as fallbacks (#​9789 by @​risu729).
  • (registry) Add aqua:jbangdev/jbang as the primary backend for jbang, enabling Windows support (#​9811 by @​risu729).
  • (registry) Alias dotnet-core to dotnet (#​9807 by @​risu729).
  • (registry) Add lisette (#​9944 by @​ivov).
  • (registry) Fix sourcery archive format so macOS installs use the .zip asset instead of trying to extract it as tar.gz (#​9902 by @​risu729).
  • (docs) Trim the global settings example in the configuration docs (#​9912 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.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • "on sunday"
  • 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.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot requested a review from a team as a code owner May 24, 2026 01:05
@renovate renovate Bot force-pushed the renovate/jdx-mise-2026.x branch from e5b46f4 to e368a8d Compare May 24, 2026 13:49
@renovate renovate Bot changed the title deps: update dependency jdx/mise to v2026.5.11 deps: update dependency jdx/mise to v2026.5.12 May 24, 2026
@renovate renovate Bot force-pushed the renovate/jdx-mise-2026.x branch from e368a8d to ac8e511 Compare May 26, 2026 15:05
@renovate renovate Bot changed the title deps: update dependency jdx/mise to v2026.5.12 deps: update dependency jdx/mise to v2026.5.13 May 26, 2026
@renovate renovate Bot force-pushed the renovate/jdx-mise-2026.x branch from ac8e511 to 697907e Compare May 27, 2026 17:58
@renovate renovate Bot changed the title deps: update dependency jdx/mise to v2026.5.13 deps: update dependency jdx/mise to v2026.5.14 May 27, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants