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
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# Changelog

## [2025.9.17](https://github.com/jdx/mise/compare/v2025.9.16..v2025.9.17) - 2025-09-24

### 🚀 Features

- **(java)** add support for Liberica NIK releases by @roele in [#6382](https://github.com/jdx/mise/pull/6382)

### 🐛 Bug Fixes

- **(toolset)** handle underflow in version_sub function by @koh-sh in [#6389](https://github.com/jdx/mise/pull/6389)

### 📚 Documentation

- document MISE_ENV behavior for global/system configs by @jdx in [#6385](https://github.com/jdx/mise/pull/6385)

### New Contributors

- @jc00ke made their first contribution in [#6386](https://github.com/jdx/mise/pull/6386)
- @koh-sh made their first contribution in [#6389](https://github.com/jdx/mise/pull/6389)

## [2025.9.16](https://github.com/jdx/mise/compare/v2025.9.15..v2025.9.16) - 2025-09-22

### 📦 Registry
Expand All @@ -11,6 +30,7 @@
- **(aqua)** remove blake3 support from aqua checksum algorithms by @risu729 in [#6370](https://github.com/jdx/mise/pull/6370)
- **(aqua)** remove cosign and slsa-verifier dependencies by @risu729 in [#6371](https://github.com/jdx/mise/pull/6371)
- **(aqua)** remove cosign.experimental by @risu729 in [#6376](https://github.com/jdx/mise/pull/6376)
- **(file)** handle GNU sparse files and tar crate extraction issues by @jdx in [#6380](https://github.com/jdx/mise/pull/6380)

### 📚 Documentation

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.16"
version = "2025.9.17"
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.16 macos-arm64 (a1b2d3e 2025-09-22)
2025.9.17 macos-arm64 (a1b2d3e 2025-09-24)
```

Hook mise into your shell (pick the right one for your shell):
Expand Down
6 changes: 3 additions & 3 deletions completions/_mise
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ _mise() {
zstyle ":completion:${curcontext}:" cache-policy _usage_mise_cache_policy
fi

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

_arguments "*: :(($(usage complete-word --shell zsh -s "$spec" -- "${words[@]}" )))"
Expand Down
6 changes: 3 additions & 3 deletions completions/mise.bash
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ _mise() {
return 1
fi

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

local cur prev words cword was_split comp_args
_comp_initialize -n : -- "$@" || return
# shellcheck disable=SC2207
_comp_compgen -- -W "$(usage complete-word --shell bash -s "${_usage_spec_mise_2025_9_16}" --cword="$cword" -- "${words[@]}")"
_comp_compgen -- -W "$(usage complete-word --shell bash -s "${_usage_spec_mise_2025_9_17}" --cword="$cword" -- "${words[@]}")"
_comp_ltrim_colon_completions "$cur"
# shellcheck disable=SC2181
if [[ $? -ne 0 ]]; then
Expand Down
8 changes: 4 additions & 4 deletions completions/mise.fish
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ if ! command -v usage &> /dev/null
return 1
end

if ! set -q _usage_spec_mise_2025_9_16
set -g _usage_spec_mise_2025_9_16 (mise usage | string collect)
if ! set -q _usage_spec_mise_2025_9_17
set -g _usage_spec_mise_2025_9_17 (mise usage | string collect)
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_16" -- (commandline -xpc) (commandline -t))'
complete -xc mise -a '(usage complete-word --shell fish -s "$_usage_spec_mise_2025_9_17" -- (commandline -xpc) (commandline -t))'
else
complete -xc mise -a '(usage complete-word --shell fish -s "$_usage_spec_mise_2025_9_16" -- (commandline -opc) (commandline -t))'
complete -xc mise -a '(usage complete-word --shell fish -s "$_usage_spec_mise_2025_9_17" -- (commandline -opc) (commandline -t))'
end
35 changes: 35 additions & 0 deletions crates/aqua-registry/aqua-registry/pkgs/amir20/dtop/registry.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# yaml-language-server: $schema=https://raw.githubusercontent.com/aquaproj/aqua/main/json-schema/registry.json
packages:
- type: github_release
repo_owner: amir20
repo_name: dtop
description: Terminal dashboard for Docker monitoring across multiple hosts with Dozzle integration
version_constraint: "false"
version_overrides:
- version_constraint: semver("<= 0.0.4")
asset: dtop_{{.OS}}_{{.Arch}}.{{.Format}}
format: tar.gz
replacements:
amd64: x86_64
darwin: Darwin
linux: Linux
windows: Windows
checksum:
type: github_release
asset: dtop_{{trimV .Version}}_checksums.txt
algorithm: sha256
overrides:
- goos: windows
format: zip
- version_constraint: "true"
asset: dtop_{{.OS}}_{{.Arch}}.{{.Format}}
format: tar.gz
replacements:
amd64: x86_64
checksum:
type: github_release
asset: dtop_{{trimV .Version}}_checksums.txt
algorithm: sha256
overrides:
- goos: windows
format: zip
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.16";
version = "2025.9.17";

src = lib.cleanSource ./.;

Expand Down
8 changes: 4 additions & 4 deletions mise.lock
Original file line number Diff line number Diff line change
Expand Up @@ -105,13 +105,13 @@ size = 12793347
url = "https://github.com/cli/cli/releases/download/v2.62.0/gh_2.62.0_macOS_arm64.zip"

[[tools.hk]]
version = "1.15.3"
version = "1.15.5"
backend = "aqua:jdx/hk"

[tools.hk.platforms.linux-x64]
checksum = "blake3:ddfbc94d8c9f6fb12682ec4b02ce12a2e05961afc6139a2989a5e6bc4d94a259"
size = 6982412
url = "https://github.com/jdx/hk/releases/download/v1.15.3/hk-x86_64-unknown-linux-gnu.tar.gz"
checksum = "blake3:dbfd6f2b7d0f399f6ec8cd251a76656c27af25aa327c015ef1acf4307c6a4cbb"
size = 6984984
url = "https://github.com/jdx/hk/releases/download/v1.15.5/hk-x86_64-unknown-linux-gnu.tar.gz"

[[tools.jq]]
version = "1.8.1"
Expand Down
2 changes: 1 addition & 1 deletion packaging/rpm/mise.spec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Summary: The front-end to your dev env
Name: mise
Version: 2025.9.16
Version: 2025.9.17
Release: 1
URL: https://github.com/jdx/mise/
Group: System
Expand Down
Loading