diff --git a/CHANGELOG.md b/CHANGELOG.md index 43d3ca8bf3..bff2e24218 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,25 @@ # Changelog +## [2025.12.7](https://github.com/jdx/mise/compare/v2025.12.6..v2025.12.7) - 2025-12-14 + +### 🚀 Features + +- **(java)** add created_at support to ls-remote --json by @jdx in [#7297](https://github.com/jdx/mise/pull/7297) +- **(ls-remote)** add created_at timestamps to ls-remote --json for more backends by @jdx in [#7295](https://github.com/jdx/mise/pull/7295) +- **(ls-remote)** add created_at timestamps to ls-remote --json for core plugins by @jdx in [#7294](https://github.com/jdx/mise/pull/7294) +- **(registry)** add --json flag to registry command by @jdx in [#7290](https://github.com/jdx/mise/pull/7290) +- **(ruby)** add created_at timestamps to ls-remote --json by @jdx in [#7296](https://github.com/jdx/mise/pull/7296) + +### 🐛 Bug Fixes + +- **(spm)** recursively update submodules after checkout by @JFej in [#7292](https://github.com/jdx/mise/pull/7292) +- prioritize raw task output over task_output setting by @skorfmann in [#7286](https://github.com/jdx/mise/pull/7286) + +### New Contributors + +- @skorfmann made their first contribution in [#7286](https://github.com/jdx/mise/pull/7286) +- @JFej made their first contribution in [#7292](https://github.com/jdx/mise/pull/7292) + ## [2025.12.6](https://github.com/jdx/mise/compare/v2025.12.5..v2025.12.6) - 2025-12-14 ### 🚀 Features diff --git a/Cargo.lock b/Cargo.lock index b7d462608e..970e09abe4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4498,7 +4498,7 @@ dependencies = [ [[package]] name = "mise" -version = "2025.12.6" +version = "2025.12.7" dependencies = [ "age", "anyhow", diff --git a/Cargo.toml b/Cargo.toml index 9ae67c2dd9..58473111a7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["crates/vfox", "crates/aqua-registry"] [package] name = "mise" -version = "2025.12.6" +version = "2025.12.7" edition = "2024" description = "The front-end to your dev env" authors = ["Jeff Dickey (@jdx)"] diff --git a/README.md b/README.md index f09b59904f..b5284b72d0 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.12.6 macos-arm64 (a1b2d3e 2025-12-14) +2025.12.7 macos-arm64 (a1b2d3e 2025-12-14) ``` Hook mise into your shell (pick the right one for your shell): diff --git a/completions/_mise b/completions/_mise index 5e6eea5f65..775b81dbbf 100644 --- a/completions/_mise +++ b/completions/_mise @@ -23,7 +23,7 @@ _mise() { return 1 fi - local spec_file="${TMPDIR:-/tmp}/usage__usage_spec_mise_2025_12_6.spec" + local spec_file="${TMPDIR:-/tmp}/usage__usage_spec_mise_2025_12_7.spec" if [[ ! -f "$spec_file" ]]; then mise usage > "$spec_file" fi diff --git a/completions/mise.bash b/completions/mise.bash index 761c2ab82f..efedb0fc0d 100644 --- a/completions/mise.bash +++ b/completions/mise.bash @@ -9,7 +9,7 @@ _mise() { local cur prev words cword was_split comp_args _comp_initialize -n : -- "$@" || return - local spec_file="${TMPDIR:-/tmp}/usage__usage_spec_mise_2025_12_6.spec" + local spec_file="${TMPDIR:-/tmp}/usage__usage_spec_mise_2025_12_7.spec" if [[ ! -f "$spec_file" ]]; then mise usage > "$spec_file" fi diff --git a/completions/mise.fish b/completions/mise.fish index d12f2b2ae3..5f4634a68d 100644 --- a/completions/mise.fish +++ b/completions/mise.fish @@ -8,7 +8,7 @@ if ! type -p usage &> /dev/null return 1 end set -l tmpdir (if set -q TMPDIR; echo $TMPDIR; else; echo /tmp; end) -set -l spec_file "$tmpdir/usage__usage_spec_mise_2025_12_6.spec" +set -l spec_file "$tmpdir/usage__usage_spec_mise_2025_12_7.spec" if not test -f "$spec_file" mise usage | string collect > "$spec_file" end diff --git a/default.nix b/default.nix index 24d848394f..d7c342b750 100644 --- a/default.nix +++ b/default.nix @@ -2,7 +2,7 @@ rustPlatform.buildRustPackage { pname = "mise"; - version = "2025.12.6"; + version = "2025.12.7"; src = lib.cleanSource ./.; diff --git a/packaging/rpm/mise.spec b/packaging/rpm/mise.spec index 58801e20a4..b3520c68f2 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.12.6 +Version: 2025.12.7 Release: 1 URL: https://github.com/jdx/mise/ Group: System diff --git a/snapcraft.yaml b/snapcraft.yaml index a2f8dc9353..d67dda5324 100644 --- a/snapcraft.yaml +++ b/snapcraft.yaml @@ -9,7 +9,7 @@ name: mise title: mise-en-place -version: "2025.12.6" +version: "2025.12.7" summary: The front-end to your dev env description: | mise-en-place is a command line tool to manage your development environment.