deps: update dependency jdx/mise to v2026.4.8#1386
Open
renovate[bot] wants to merge 1 commit intomainfrom
Open
deps: update dependency jdx/mise to v2026.4.8#1386renovate[bot] wants to merge 1 commit intomainfrom
renovate[bot] wants to merge 1 commit intomainfrom
Conversation
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.7→2026.4.8Release Notes
jdx/mise (jdx/mise)
v2026.4.8: : Task engine stability and Go subpath version resolutionCompare Source
This release brings significant stability improvements to the task runner -- fixing hangs, deadlocks, and panics across several edge cases in task dependency graphs and parallel execution. It also overhauls Go version resolution for subpath packages by querying the module proxy directly, and adds new configuration options for sandbox environment filtering and lockfile platform targeting.
Highlights
go:github.com/foo/bar/cmd/bazthat live under a subpath of their Go module now resolve versions correctly, eliminating persistent "no latest version found" warnings.MISE_JOBS=1, panics in replacing output mode, stale source caching in dependency chains, and warnings with remote tasks.allow_envpatterns -- Sandbox env filtering now supports globs likeMYAPP_*to allow entire namespaces of environment variables.lockfile_platformssetting -- Restrict lockfile operations to only the platforms you care about, avoiding unnecessary checksum resolution.Added
Wildcard patterns in sandbox
allow_env--allow_envnow supports glob wildcards (e.g.,MYAPP_*) to pass through namespaces of environment variables in sandboxed tasks and exec. Works in both CLI flags and task config. #8974 by @jdxlockfile_platformssetting -- New setting to restrict which platforms are targeted during lockfile operations. When set,mise install,mise use, andmise lockonly resolve checksums/URLs for the configured platforms instead of all common platforms. Explicitmise lock --platformflags still override this setting. #8966 by @cameronbrillExamples rendered in
task --help--#USAGE exampledirectives in task scripts now appear in--helpoutput, thanks to an upgrade to usage-lib v3. #8890 by @baby-joelFixed
Go subpath package version resolution -- The Go backend previously used
go list -m -versionsto resolve versions, which returns an empty version list for subpath packages (e.g.,github.com/ankitpokhrel/jira-cli/cmd/jira), making it impossible to resolve "latest". mise now queries the Go module proxy ($GOPROXY) directly, generating path prefix candidates and using HTTP responses to distinguish real modules from non-module subpaths. This respects theGOPROXYenvironment variable and falls back togo listforGOPROXY=direct. #8968 by @c22Task hang when skipped task has dependents -- When a task with
sources/outputswas skipped (up-to-date), a race condition in the dependency graph could leave downstream dependents hanging indefinitely. The failed channel send now properly resets the task's "sent" state so it can be re-emitted on a new channel. #8937 by @jdxDependent task source invalidation -- When a dependency task runs because its own sources changed, downstream tasks that depend on it now also re-run, even if their own sources haven't changed. Sourceless dependencies (which always run) do not trigger this invalidation, preserving the usefulness of
sourceson dependents. #8975 by @jdxDeadlock with
MISE_JOBS=1and sub-task references -- WhenMISE_JOBS=1and a task'srunarray contains both sub-task references ({ task = "foo" }) and scripts, the parent task now temporarily releases its semaphore permit before waiting on the sub-task, preventing a classic deadlock. #8976 by @jdxPanic with parallel sub-tasks in replacing output mode -- Running parallel sub-tasks (via
tasks = [...]in run steps) withoutput = "replacing"no longer panics. Dynamically injected sub-tasks are now lazily initialized in the progress reporter map. #8986 by @jdxRemote task warning with arguments -- Remote git task files are now fetched before parsing usage specs, fixing spurious "failed to parse task file" warnings when running remote tasks with arguments. #8979 by @jdx
Tera templates in tool postinstall hooks -- Tool-level
postinstallscripts (e.g.,[tools.ripgrep] postinstall) now render Tera templates before execution, so variables like{{tools.ripgrep.path}}work correctly. #8978 by @jdxMissing env vars in tool postinstall hooks --
MISE_CONFIG_ROOTandMISE_PROJECT_ROOTare now set in tool-level postinstall hooks, matching the behavior of project-level hooks. #8977 by @jdxmise upgrade tool@versionnot updating lockfile --mise upgrade tool@versionandmise lock tool@versionnow properly update the lockfile with the specified version. When the version doesn't match the current config prefix (e.g., upgrading from"2"to3.0.1), the config is auto-bumped to match while preserving the original version precision. #8983 by @jdxBash 3.2 activation with
set -u-- The bash activation script no longer fails with__MISE_FLAGS[@​]: unbound variableon macOS's default bash 3.2 whenset -u(nounset) is enabled and no flags are set. #8988 by @jdxNew Contributors
Full Changelog: jdx/mise@v2026.4.7...v2026.4.8
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.