Update dependency jdx/mise to v2026.6.10 (dev)#295
Merged
Conversation
cc58e04 to
f07dc23
Compare
f07dc23 to
0b88189
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:
v2026.6.6→v2026.6.10v2026.6.11Release Notes
jdx/mise (jdx/mise)
v2026.6.10: : Env defaults, Unix 7z, and stale-PATH fixesCompare Source
A focused release that adds a
defaultshorthand for env vars, brings.7zarchive support to Unix, and cleans up several long-standing PATH and shim edge cases on Linux, macOS, Windows, and WSL.Added
env: New
{ default = "fallback" }shorthand for[env](and config/task[vars]). The default applies only when the variable is unset or empty; existing non-empty values from the process env or earlier config are preserved. Mixingdefaultwithvalue,required, oragenow fails with a clear message (#10441 by @jdx).backend:
.7zarchives now extract on Unix as well as Windows, andstrip_componentsprobing works cross-platform. Migrated from the unmaintainedsevenz-rusttosevenz-rust2, and tightened extraction to reject directory traversal and absolute paths (#10434 by @risu729).Fixed
env_shell_expandis enabled,${VAR:-default}now follows POSIX semantics: empty strings are treated as missing (fallback applies),${VAR-default}only substitutes when the variable is unset, and fallback text is recursively expanded (e.g.${NONEXISTENT:-$OTHER}). Braced parsing is also stricter — unterminated${…stays literal and}inside$(…)no longer closes the brace (#10445 by @jdx, fixes #10444).mise x/run/envnow strip mise-managed install directories from the inherited PATH when composing the child environment. Stale entries carried in from a frozen env snapshot (IDE terminals, CI wrappers, AI-agent harnesses) no longer sit ahead of the freshly injected bin dir, so subshells,#!/usr/bin/envshebangs, and package-manager workers all resolve the requested tool version (#10422 by @JamBalaya56562, addresses #10345).os.executenow run under the same sanitizedmise_envascmd.exec. Combined with new resolution oftools = trueenv values during install, this fixes setups like gcloud depending on python where a singlemise installpreviously leftCLOUDSDK_PYTHONpointing at a nonexistent path (#10432 by @JamBalaya56562, fixes #10282).WSL_DISTRO_NAME/WSL_INTEROP/WSLInterop), drop their own dir from PATH, andexecthe tool directly. This breaks the infinitemise xloop that happened when the Windows shims dir was exposed at/mnt/c/...inside WSL, and gives a clean<tool>: not foundwhen no Linux tool is installed.file-mode shims are now also flagged version-stale so a normal reshim regenerates them on upgrade (#10421 by @JamBalaya56562, addresses #10299).make_symlinkon Unix now creates the link at a unique temp name in the destination dir and atomicallyrename(2)s it into place. This eliminates the noisyfailed to ln -sf … File exists (os error 17)warnings that surfaced when several mise processes (shellhook-env, direnv, editor integrations) raced on the same tracked-config link, e.g. when spawning a new git worktree (#10414 by @JamBalaya56562, fixes #10292)..ps1) over their extensionless siblings, and extensionless takeover only applies when the match is unambiguous and stays within the same config family (#10443 by @jdx).Changed
number_prefix(RUSTSEC-2025-0119) and stalehumansizecrates withbytesize. Size strings in generatedtool-stubcomments andmise cache pruneoutput now use nativebytesizeIEC formatting — e.g.821.69 KiBbecomes821.7 KiBand2.15 MiBbecomes2.2 MiB(#10438 by @risu729).Full Changelog: jdx/mise@v2026.6.9...v2026.6.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.6.9: : Release plumbing cleanupCompare Source
A maintenance-only release. There are no user-facing changes — just a revert of the release workflow plumbing introduced last cycle, plus routine aqua registry updates.
Changed
gh release create --draftcall, which avoids the tag-lookup failure that broke the v2026.6.8 publish run (GitHub returns anuntagged-*URL for freshly created drafts) (#10433 by @jdx).Full Changelog: jdx/mise@v2026.6.8...v2026.6.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.6.8: : Rolling zig@master and fresher Ruby buildsCompare Source
A small fix release:
zig@masternow behaves as a true rolling channel, andjdx/rubyprecompiled installs always pick up the latest numbered build revision.Fixed
ruby: Precompiled installs from the default
jdx/rubysource now require a numeric build-revision tag (e.g.3.3.11-1,3.3.11-2) and ignore the floating base release. Lockfiles already pin to a revision and the base tag is treated as revision0, so unlocked installs land on the newest rebuilt binary instead of an older one. Customruby.precompiled_urlGitHub sources keep the previous base-tag fallback (#10428 by @jdx).zig:
zig@masteris now treated as a rolling release channel. mise resolves it to the concrete nightly it currently points at (e.g.0.17.0-dev.836+e357134f0) viaziglang.org/download/index.json, installs into a versioned directory rather than a frozeninstalls/zig/master, and reuses the latest installed nightly for the channel — never an unrelated stable release — when running offline or from hook-env. As a result,mise upgrade zigandmise outdatedcan finally track new nightlies (#10423 by @JamBalaya56562, addresses #10251).mise use zig@master mise upgrade zig # moves to the current nightlyDocumentation
New Contributors
Full Changelog: jdx/mise@v2026.6.7...v2026.6.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.6.7: : pkgx backend, more bootstrap surface, and forge install fixesCompare Source
Added
pkgx:backend: install pkgx pantry packages natively (nopkgxCLI required), with checksum-verified bottles, dependency resolution, and lockfile support viapkgx_depsand a shared[pkgx-packages]section (#10408 by @jdx).[bootstrap.macos.launchd.agents]for declarative macOS user LaunchAgents, plusmise bootstrap launchd apply/status(#10396 by @jdx).[bootstrap.linux.systemd.units]for declarative systemd user services, plusmise bootstrap systemd apply/status(#10399 by @jdx).[bootstrap.hooks]to run shell commands at named bootstrap phases (pre-packages,post-dotfiles,post-tools,final, etc.), honoring--dry-run(#10395 by @jdx).[bootstrap.macos.dock],[bootstrap.macos.finder],[bootstrap.macos.keyboard],[bootstrap.macos.trackpad]with curated keys likeshow_all_filesandtap_to_click(#10398 by @jdx).mas:package manager for[bootstrap.packages]to install Mac App Store apps by ADAM ID (#10397 by @jdx).mise bootstrap --force-dotfilesto replace conflicting whole-file dotfile targets, plus no-force replacement of regular files whose contents match the symlink source (#10410 by @jdx).tbzrecognized as an alias fortar.bz2extraction (#10403 by @risu729).aqua:oracle.com/sqlcl) (#10417 by @jasonlyle88).Fixed
mise activate --shimsno longer re-prepends the directory containing themiseexecutable (#10394 by @JamBalaya56562).tarand downloads.tar.gz, fixingtar: invalid tar magicon Alpine (#10385 by @JamBalaya56562).postinstallhooks run against the just-installed version with fuzzy requests likeversion = "3"(#10415 by @JamBalaya56562).github:/forgejo:/gitlab:paginate past an all-prerelease first page (#10420 by @JamBalaya56562).dotnet:searches sendsemVerLevel=2.0.0, fixing lookups for tools likeroslyn-language-server(#10384 by @JamBalaya56562).mise watch --wrap-processis now forwarded to watchexec (#10392 by @JamBalaya56562).{{.AssetWithoutExt}}strips the full aqua format list including.zst(#10104 by @risu729).tar.br,br,tar.lz4,lz4,tar.sz,sz,rar) fail with clear errors (#10409 by @risu729).windows-x64(#10400 by @risu729).Documentation
💚 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.