diff --git a/CHANGELOG.md b/CHANGELOG.md index 367b35ae0a..e0b93a4bc6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 @@ -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 diff --git a/Cargo.lock b/Cargo.lock index 6299caf959..554634a6c6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4532,7 +4532,7 @@ dependencies = [ [[package]] name = "mise" -version = "2025.9.16" +version = "2025.9.17" dependencies = [ "aqua-registry", "async-backtrace", diff --git a/Cargo.toml b/Cargo.toml index 7409847b25..253b8a670f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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)"] diff --git a/README.md b/README.md index c5d27edaa3..c1163a9980 100644 --- a/README.md +++ b/README.md @@ -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): diff --git a/completions/_mise b/completions/_mise index fe4e6925e1..eef970396f 100644 --- a/completions/_mise +++ b/completions/_mise @@ -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[@]}" )))" diff --git a/completions/mise.bash b/completions/mise.bash index fff5b4762b..5ed385eed4 100644 --- a/completions/mise.bash +++ b/completions/mise.bash @@ -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 diff --git a/completions/mise.fish b/completions/mise.fish index d73e63ce56..af51e5f275 100644 --- a/completions/mise.fish +++ b/completions/mise.fish @@ -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 diff --git a/crates/aqua-registry/aqua-registry/pkgs/amir20/dtop/registry.yaml b/crates/aqua-registry/aqua-registry/pkgs/amir20/dtop/registry.yaml new file mode 100644 index 0000000000..95a6737748 --- /dev/null +++ b/crates/aqua-registry/aqua-registry/pkgs/amir20/dtop/registry.yaml @@ -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 diff --git a/default.nix b/default.nix index 3e2738d7da..55d7c69075 100644 --- a/default.nix +++ b/default.nix @@ -2,7 +2,7 @@ rustPlatform.buildRustPackage { pname = "mise"; - version = "2025.9.16"; + version = "2025.9.17"; src = lib.cleanSource ./.; diff --git a/mise.lock b/mise.lock index f8be2067a5..a2369f4548 100644 --- a/mise.lock +++ b/mise.lock @@ -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" diff --git a/packaging/rpm/mise.spec b/packaging/rpm/mise.spec index b0baaf2402..94ef2aee75 100644 --- a/packaging/rpm/mise.spec +++ b/packaging/rpm/mise.spec @@ -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