Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## [2025.9.22](https://github.com/jdx/mise/compare/v2025.9.21..v2025.9.22) - 2025-09-28

### 📦 Registry

- re-enable tests by @risu729 in [#6454](https://github.com/jdx/mise/pull/6454)
- restore comments and tests by @risu729 in [#6378](https://github.com/jdx/mise/pull/6378)
- add github backend for graphite by @jdx in [#6455](https://github.com/jdx/mise/pull/6455)

### 🚀 Features

- **(backend)** add environment variable override for tool backends by @jdx in [#6456](https://github.com/jdx/mise/pull/6456)
- add a http_retries setting to define number of retry attempts by @roele in [#6444](https://github.com/jdx/mise/pull/6444)

## [2025.9.21](https://github.com/jdx/mise/compare/v2025.9.20..v2025.9.21) - 2025-09-27

### 📦 Registry
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ members = ["crates/vfox", "crates/aqua-registry"]

[package]
name = "mise"
version = "2025.9.21"
version = "2025.9.22"
edition = "2024"
description = "The front-end to your dev env"
authors = ["Jeff Dickey (@jdx)"]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ See [Getting started](https://mise.jdx.dev/getting-started.html) for more option
```sh-session
$ curl https://mise.run | sh
$ ~/.local/bin/mise --version
2025.9.21 macos-arm64 (a1b2d3e 2025-09-27)
2025.9.22 macos-arm64 (a1b2d3e 2025-09-28)
```

Hook mise into your shell (pick the right one for your shell):
Expand Down
16 changes: 11 additions & 5 deletions completions/_mise
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# @generated by usage-cli from usage spec

#compdef mise
local curcontext="$curcontext"

Expand All @@ -15,7 +17,7 @@ _mise() {
typeset -A opt_args
local curcontext="$curcontext" spec cache_policy

if ! command -v usage &> /dev/null; then
if ! type -p usage &> /dev/null; then
echo >&2
echo "Error: usage CLI not found. This is required for completions to work in mise." >&2
echo "See https://usage.jdx.dev for more information." >&2
Expand All @@ -27,14 +29,18 @@ _mise() {
zstyle ":completion:${curcontext}:" cache-policy _usage_mise_cache_policy
fi

if ( [[ -z "${_usage_spec_mise_2025_9_21:-}" ]] || _cache_invalid _usage_spec_mise_2025_9_21 ) \
&& ! _retrieve_cache _usage_spec_mise_2025_9_21;
if ( [[ -z "${_usage_spec_mise_2025_9_22:-}" ]] || _cache_invalid _usage_spec_mise_2025_9_22 ) \
&& ! _retrieve_cache _usage_spec_mise_2025_9_22;
then
spec="$(mise usage)"
_store_cache _usage_spec_mise_2025_9_21 spec
_store_cache _usage_spec_mise_2025_9_22 spec
fi

_arguments "*: :(($(usage complete-word --shell zsh -s "$spec" -- "${words[@]}" )))"
local spec_file="${TMPDIR:-/tmp}/usage__usage_spec_mise_2025_9_22.spec"
if [[ ! -f "$spec_file" ]]; then
echo "$spec" > "$spec_file"
fi
_arguments "*: :(($(command usage complete-word --shell zsh -f "$spec_file" -- "${words[@]}" )))"
return 0
}

Expand Down
13 changes: 9 additions & 4 deletions completions/mise.bash
Original file line number Diff line number Diff line change
@@ -1,19 +1,24 @@
# @generated by usage-cli from usage spec
_mise() {
if ! command -v usage &> /dev/null; then
if ! type -p usage &> /dev/null; then
echo >&2
echo "Error: usage CLI not found. This is required for completions to work in mise." >&2
echo "See https://usage.jdx.dev for more information." >&2
return 1
fi

if [[ -z ${_usage_spec_mise_2025_9_21:-} ]]; then
_usage_spec_mise_2025_9_21="$(mise usage)"
if [[ -z ${_usage_spec_mise_2025_9_22:-} ]]; then
_usage_spec_mise_2025_9_22="$(mise usage)"
fi

local cur prev words cword was_split comp_args
_comp_initialize -n : -- "$@" || return
local spec_file="${TMPDIR:-/tmp}/usage__usage_spec_mise_2025_9_22.spec"
if [[ ! -f "$spec_file" ]]; then
echo "${_usage_spec_mise_2025_9_22}" > "$spec_file"
fi
# shellcheck disable=SC2207
_comp_compgen -- -W "$(usage complete-word --shell bash -s "${_usage_spec_mise_2025_9_21}" --cword="$cword" -- "${words[@]}")"
_comp_compgen -- -W "$(command usage complete-word --shell bash -f "$spec_file" --cword="$cword" -- "${words[@]}")"
_comp_ltrim_colon_completions "$cur"
# shellcheck disable=SC2181
if [[ $? -ne 0 ]]; then
Expand Down
18 changes: 13 additions & 5 deletions completions/mise.fish
Original file line number Diff line number Diff line change
@@ -1,17 +1,25 @@
# @generated by usage-cli from usage spec

# if "usage" is not installed show an error
if ! command -v usage &> /dev/null
if ! type -p usage &> /dev/null
echo >&2
echo "Error: usage CLI not found. This is required for completions to work in mise." >&2
echo "See https://usage.jdx.dev for more information." >&2
return 1
end

if ! set -q _usage_spec_mise_2025_9_21
set -g _usage_spec_mise_2025_9_21 (mise usage | string collect)
if ! set -q _usage_spec_mise_2025_9_22
set -g _usage_spec_mise_2025_9_22 (mise usage | string collect)
end
set -l tmpdir (if set -q TMPDIR; echo $TMPDIR; else; echo /tmp; end)
set -l spec_file "$tmpdir/usage__usage_spec_mise_2025_9_22.spec"
if not test -f "$spec_file"
echo $_usage_spec_mise_2025_9_22 > "$spec_file"
end

set -l tokens
if commandline -x >/dev/null 2>&1
complete -xc mise -a '(usage complete-word --shell fish -s "$_usage_spec_mise_2025_9_21" -- (commandline -xpc) (commandline -t))'
complete -xc mise -a "(command usage complete-word --shell fish -f \"$spec_file\" -- (commandline -xpc) (commandline -t))"
else
complete -xc mise -a '(usage complete-word --shell fish -s "$_usage_spec_mise_2025_9_21" -- (commandline -opc) (commandline -t))'
complete -xc mise -a "(command usage complete-word --shell fish -f \"$spec_file\" -- (commandline -opc) (commandline -t))"
end
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,10 @@ packages:
amd64: x64
darwin: osx
windows: win
overrides:
- goos: linux
goarch: amd64
asset: cyclonedx-{{.OS}}-musl-{{.Arch}}
- version_constraint: "true"
asset: cyclonedx-{{.OS}}-{{.Arch}}
format: raw
replacements:
amd64: x64
darwin: osx
windows: win
overrides:
- goos: linux
goarch: amd64
asset: cyclonedx-{{.OS}}-musl-{{.Arch}}
2 changes: 1 addition & 1 deletion default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

rustPlatform.buildRustPackage {
pname = "mise";
version = "2025.9.21";
version = "2025.9.22";

src = lib.cleanSource ./.;

Expand Down
2 changes: 1 addition & 1 deletion docs/.vitepress/stars.data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
export default {
load() {
return {
stars: "19.5k",
stars: "19.6k",
};
},
};
1 change: 1 addition & 0 deletions docs/cli/activate.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<!-- @generated by usage-cli from usage spec -->
# `mise activate`

- **Usage**: `mise activate [FLAGS] [SHELL_TYPE]`
Expand Down
1 change: 1 addition & 0 deletions docs/cli/alias.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<!-- @generated by usage-cli from usage spec -->
# `mise alias`

- **Usage**: `mise alias [-p --plugin <PLUGIN>] [--no-header] <SUBCOMMAND>`
Expand Down
1 change: 1 addition & 0 deletions docs/cli/alias/get.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<!-- @generated by usage-cli from usage spec -->
# `mise alias get`

- **Usage**: `mise alias get <PLUGIN> <ALIAS>`
Expand Down
1 change: 1 addition & 0 deletions docs/cli/alias/ls.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<!-- @generated by usage-cli from usage spec -->
# `mise alias ls`

- **Usage**: `mise alias ls [--no-header] [TOOL]`
Expand Down
1 change: 1 addition & 0 deletions docs/cli/alias/set.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<!-- @generated by usage-cli from usage spec -->
# `mise alias set`

- **Usage**: `mise alias set <ARGS>…`
Expand Down
1 change: 1 addition & 0 deletions docs/cli/alias/unset.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<!-- @generated by usage-cli from usage spec -->
# `mise alias unset`

- **Usage**: `mise alias unset <PLUGIN> [ALIAS]`
Expand Down
1 change: 1 addition & 0 deletions docs/cli/backends.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<!-- @generated by usage-cli from usage spec -->
# `mise backends`

- **Usage**: `mise backends <SUBCOMMAND>`
Expand Down
1 change: 1 addition & 0 deletions docs/cli/backends/ls.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<!-- @generated by usage-cli from usage spec -->
# `mise backends ls`

- **Usage**: `mise backends ls`
Expand Down
1 change: 1 addition & 0 deletions docs/cli/bin-paths.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<!-- @generated by usage-cli from usage spec -->
# `mise bin-paths`

- **Usage**: `mise bin-paths [TOOL@VERSION]…`
Expand Down
1 change: 1 addition & 0 deletions docs/cli/cache.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<!-- @generated by usage-cli from usage spec -->
# `mise cache`

- **Usage**: `mise cache <SUBCOMMAND>`
Expand Down
1 change: 1 addition & 0 deletions docs/cli/cache/clear.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<!-- @generated by usage-cli from usage spec -->
# `mise cache clear`

- **Usage**: `mise cache clear [PLUGIN]…`
Expand Down
1 change: 1 addition & 0 deletions docs/cli/cache/path.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<!-- @generated by usage-cli from usage spec -->
# `mise cache path`

- **Usage**: `mise cache path`
Expand Down
1 change: 1 addition & 0 deletions docs/cli/cache/prune.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<!-- @generated by usage-cli from usage spec -->
# `mise cache prune`

- **Usage**: `mise cache prune [--dry-run] [-v --verbose…] [PLUGIN]…`
Expand Down
1 change: 1 addition & 0 deletions docs/cli/completion.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<!-- @generated by usage-cli from usage spec -->
# `mise completion`

- **Usage**: `mise completion [--include-bash-completion-lib] [SHELL]`
Expand Down
1 change: 1 addition & 0 deletions docs/cli/config.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<!-- @generated by usage-cli from usage spec -->
# `mise config`

- **Usage**: `mise config [FLAGS] <SUBCOMMAND>`
Expand Down
1 change: 1 addition & 0 deletions docs/cli/config/generate.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<!-- @generated by usage-cli from usage spec -->
# `mise config generate`

- **Usage**: `mise config generate [-t --tool-versions <TOOL_VERSIONS>] [-o --output <OUTPUT>]`
Expand Down
1 change: 1 addition & 0 deletions docs/cli/config/get.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<!-- @generated by usage-cli from usage spec -->
# `mise config get`

- **Usage**: `mise config get [-f --file <FILE>] [KEY]`
Expand Down
1 change: 1 addition & 0 deletions docs/cli/config/ls.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<!-- @generated by usage-cli from usage spec -->
# `mise config ls`

- **Usage**: `mise config ls [FLAGS]`
Expand Down
1 change: 1 addition & 0 deletions docs/cli/config/set.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<!-- @generated by usage-cli from usage spec -->
# `mise config set`

- **Usage**: `mise config set [-f --file <FILE>] [-t --type <TYPE>] <KEY> <VALUE>`
Expand Down
1 change: 1 addition & 0 deletions docs/cli/deactivate.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<!-- @generated by usage-cli from usage spec -->
# `mise deactivate`

- **Usage**: `mise deactivate`
Expand Down
1 change: 1 addition & 0 deletions docs/cli/doctor.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<!-- @generated by usage-cli from usage spec -->
# `mise doctor`

- **Usage**: `mise doctor [-J --json] <SUBCOMMAND>`
Expand Down
1 change: 1 addition & 0 deletions docs/cli/doctor/path.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<!-- @generated by usage-cli from usage spec -->
# `mise doctor path`

- **Usage**: `mise doctor path [-f --full]`
Expand Down
1 change: 1 addition & 0 deletions docs/cli/en.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<!-- @generated by usage-cli from usage spec -->
# `mise en`

- **Usage**: `mise en [-s --shell <SHELL>] [DIR]`
Expand Down
1 change: 1 addition & 0 deletions docs/cli/env.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<!-- @generated by usage-cli from usage spec -->
# `mise env`

- **Usage**: `mise env [FLAGS] [TOOL@VERSION]…`
Expand Down
1 change: 1 addition & 0 deletions docs/cli/exec.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<!-- @generated by usage-cli from usage spec -->
# `mise exec`

- **Usage**: `mise exec [FLAGS] [TOOL@VERSION]… [-- COMMAND]…`
Expand Down
1 change: 1 addition & 0 deletions docs/cli/fmt.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<!-- @generated by usage-cli from usage spec -->
# `mise fmt`

- **Usage**: `mise fmt [FLAGS]`
Expand Down
1 change: 1 addition & 0 deletions docs/cli/generate.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<!-- @generated by usage-cli from usage spec -->
# `mise generate`

- **Usage**: `mise generate <SUBCOMMAND>`
Expand Down
1 change: 1 addition & 0 deletions docs/cli/generate/bootstrap.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<!-- @generated by usage-cli from usage spec -->
# `mise generate bootstrap`

- **Usage**: `mise generate bootstrap [FLAGS]`
Expand Down
1 change: 1 addition & 0 deletions docs/cli/generate/config.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<!-- @generated by usage-cli from usage spec -->
# `mise generate config`

- **Usage**: `mise generate config [-t --tool-versions <TOOL_VERSIONS>] [-o --output <OUTPUT>]`
Expand Down
1 change: 1 addition & 0 deletions docs/cli/generate/devcontainer.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<!-- @generated by usage-cli from usage spec -->
# `mise generate devcontainer`

- **Usage**: `mise generate devcontainer [FLAGS]`
Expand Down
1 change: 1 addition & 0 deletions docs/cli/generate/git-pre-commit.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<!-- @generated by usage-cli from usage spec -->
# `mise generate git-pre-commit`

- **Usage**: `mise generate git-pre-commit [FLAGS]`
Expand Down
1 change: 1 addition & 0 deletions docs/cli/generate/github-action.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<!-- @generated by usage-cli from usage spec -->
# `mise generate github-action`

- **Usage**: `mise generate github-action [FLAGS]`
Expand Down
1 change: 1 addition & 0 deletions docs/cli/generate/task-docs.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<!-- @generated by usage-cli from usage spec -->
# `mise generate task-docs`

- **Usage**: `mise generate task-docs [FLAGS]`
Expand Down
1 change: 1 addition & 0 deletions docs/cli/generate/task-stubs.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<!-- @generated by usage-cli from usage spec -->
# `mise generate task-stubs`

- **Usage**: `mise generate task-stubs [-m --mise-bin <MISE_BIN>] [-d --dir <DIR>]`
Expand Down
1 change: 1 addition & 0 deletions docs/cli/generate/tool-stub.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<!-- @generated by usage-cli from usage spec -->
# `mise generate tool-stub`

- **Usage**: `mise generate tool-stub [FLAGS] <OUTPUT>`
Expand Down
1 change: 1 addition & 0 deletions docs/cli/implode.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<!-- @generated by usage-cli from usage spec -->
# `mise implode`

- **Usage**: `mise implode [--config] [-n --dry-run]`
Expand Down
1 change: 1 addition & 0 deletions docs/cli/index.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<!-- @generated by usage-cli from usage spec -->
# `mise`

**Usage**: `mise [FLAGS] [TASK] <SUBCOMMAND>`
Expand Down
1 change: 1 addition & 0 deletions docs/cli/install-into.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<!-- @generated by usage-cli from usage spec -->
# `mise install-into`

- **Usage**: `mise install-into <TOOL@VERSION> <PATH>`
Expand Down
1 change: 1 addition & 0 deletions docs/cli/install.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<!-- @generated by usage-cli from usage spec -->
# `mise install`

- **Usage**: `mise install [FLAGS] [TOOL@VERSION]…`
Expand Down
1 change: 1 addition & 0 deletions docs/cli/latest.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<!-- @generated by usage-cli from usage spec -->
# `mise latest`

- **Usage**: `mise latest [-i --installed] <TOOL@VERSION>`
Expand Down
1 change: 1 addition & 0 deletions docs/cli/link.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<!-- @generated by usage-cli from usage spec -->
# `mise link`

- **Usage**: `mise link [-f --force] <TOOL@VERSION> <PATH>`
Expand Down
1 change: 1 addition & 0 deletions docs/cli/lock.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<!-- @generated by usage-cli from usage spec -->
# `mise lock`

- **Usage**: `mise lock [FLAGS] [TOOL]…`
Expand Down
1 change: 1 addition & 0 deletions docs/cli/ls-remote.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<!-- @generated by usage-cli from usage spec -->
# `mise ls-remote`

- **Usage**: `mise ls-remote [--all] [TOOL@VERSION] [PREFIX]`
Expand Down
Loading
Loading