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

## [2025.11.6](https://github.com/jdx/mise/compare/v2025.11.5..v2025.11.6) - 2025-11-18

### πŸ“¦ Registry

- add tbls by @artemklevtsov in [#6987](https://github.com/jdx/mise/pull/6987)
- add kubeswitch tool and add test for ruff by @jylenhof in [#6990](https://github.com/jdx/mise/pull/6990)

### πŸ› Bug Fixes

- **(nushell)** add missing `| parse env | update-env` for deactivation operations by @jokeyrhyme in [#6994](https://github.com/jdx/mise/pull/6994)
- **(pwsh)** wrap the executable path with double quotes by @leosuncin in [#6993](https://github.com/jdx/mise/pull/6993)
- in `activate bash` output, wrap mise executable path in single-quotes by @cspotcode in [#7002](https://github.com/jdx/mise/pull/7002)
- On Windows, preserve/proxy the exit code of tools, to match behavior on Unix by @cspotcode in [#7001](https://github.com/jdx/mise/pull/7001)

### πŸ“š Documentation

- simplify apt instructions by @scop in [#6986](https://github.com/jdx/mise/pull/6986)
- update idiomatic version files enablement info by @scop in [#6985](https://github.com/jdx/mise/pull/6985)
- registry notability explanation by @jdx in [8f9ab15](https://github.com/jdx/mise/commit/8f9ab15e18d8cf0983d08a1f14b04511c999d681)

### πŸ§ͺ Testing

- **(aqua)** remove biome test due to version incompatibility by @jdx in [#7000](https://github.com/jdx/mise/pull/7000)

### πŸ“¦οΈ Dependency Updates

- lock file maintenance by @renovate[bot] in [#6997](https://github.com/jdx/mise/pull/6997)

### New Contributors

- @cspotcode made their first contribution in [#7001](https://github.com/jdx/mise/pull/7001)
- @jokeyrhyme made their first contribution in [#6994](https://github.com/jdx/mise/pull/6994)
- @artemklevtsov made their first contribution in [#6987](https://github.com/jdx/mise/pull/6987)
- @leosuncin made their first contribution in [#6993](https://github.com/jdx/mise/pull/6993)

### πŸ“¦ Aqua Registry Updates

#### New Packages (1)

- [`houseabsolute/omegasort`](https://github.com/houseabsolute/omegasort)

#### Updated Packages (5)

- [`apache/maven`](https://github.com/apache/maven)
- [`chaqchase/lla`](https://github.com/chaqchase/lla)
- [`leoafarias/fvm`](https://github.com/leoafarias/fvm)
- [`rustic-rs/rustic`](https://github.com/rustic-rs/rustic)
- [`sigstore/rekor`](https://github.com/sigstore/rekor)
## [2025.11.5](https://github.com/jdx/mise/compare/v2025.11.4..v2025.11.5) - 2025-11-15

### πŸš€ Features
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.11.5"
version = "2025.11.6"
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.11.5 macos-arm64 (a1b2d3e 2025-11-15)
2025.11.6 macos-arm64 (a1b2d3e 2025-11-18)
```

Hook mise into your shell (pick the right one for your shell):
Expand Down
2 changes: 1 addition & 1 deletion completions/_mise
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ _mise() {
return 1
fi

local spec_file="${TMPDIR:-/tmp}/usage__usage_spec_mise_2025_11_5.spec"
local spec_file="${TMPDIR:-/tmp}/usage__usage_spec_mise_2025_11_6.spec"
if [[ ! -f "$spec_file" ]]; then
mise usage > "$spec_file"
fi
Expand Down
2 changes: 1 addition & 1 deletion completions/mise.bash
Original file line number Diff line number Diff line change
Expand Up @@ -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_11_5.spec"
local spec_file="${TMPDIR:-/tmp}/usage__usage_spec_mise_2025_11_6.spec"
if [[ ! -f "$spec_file" ]]; then
mise usage > "$spec_file"
fi
Expand Down
2 changes: 1 addition & 1 deletion completions/mise.fish
Original file line number Diff line number Diff line change
Expand Up @@ -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_11_5.spec"
set -l spec_file "$tmpdir/usage__usage_spec_mise_2025_11_6.spec"
if not test -f "$spec_file"
mise usage | string collect > "$spec_file"
end
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@ packages:
description: Apache Maven core
version_prefix: maven-
version_constraint: "false"
version_filter: not (Version matches "-(rc|alpha|beta)")
version_overrides:
- version_constraint: "true"
url: https://archive.apache.org/dist/maven/maven-3/{{.SemVer}}/binaries/apache-maven-{{.SemVer}}-bin.{{.Format}}
url: https://archive.apache.org/dist/maven/maven-{{(semver .SemVer).Major}}/{{.SemVer}}/binaries/apache-maven-{{.SemVer}}-bin.{{.Format}}
format: tar.gz
files:
- name: mvn
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,14 @@ packages:
description: A modern alternative to ls
version_constraint: "false"
version_overrides:
- version_constraint: Version == "v0.5.1"
asset: lla-{{.OS}}-{{.Arch}}
format: raw
replacements:
darwin: macos
supported_envs:
- linux
- darwin
- version_constraint: semver("<= 0.2.7")
no_asset: true
- version_constraint: "true"
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# yaml-language-server: $schema=https://raw.githubusercontent.com/aquaproj/aqua/main/json-schema/registry.json
packages:
- type: github_release
repo_owner: houseabsolute
repo_name: omegasort
description: The last text sorting tool you'll ever need
version_constraint: "false"
version_overrides:
- version_constraint: "true"
asset: omegasort-{{.OS}}-{{.Arch}}.{{.Format}}
format: tar.gz
replacements:
amd64: x86_64
arm64: aarch64
darwin: Darwin
linux: Linux
windows: Windows
overrides:
- goos: linux
asset: omegasort-{{.OS}}-{{.Arch}}-musl.{{.Format}}
- goos: windows
format: zip
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ packages:
src: fvm/fvm.bat
- version_constraint: semver("<= 3.0.0-alpha.2")
no_asset: true
- version_constraint: "true"
- version_constraint: semver("<= 4.0.0")
asset: fvm-{{.Version}}-{{.OS}}-{{.Arch}}.{{.Format}}
format: tar.gz
windows_arm_emulation: true
Expand All @@ -186,3 +186,19 @@ packages:
files:
- name: fvm
src: fvm/fvm.bat
- version_constraint: "true"
asset: fvm-{{.Version}}-{{.OS}}-{{.Arch}}.{{.Format}}
format: tar.gz
windows_arm_emulation: true
files:
- name: fvm
src: fvm/fvm
replacements:
amd64: x64
darwin: macos
overrides:
- goos: windows
format: zip
files:
- name: fvm
src: fvm/fvm.exe
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,23 @@ packages:
description: rustic - fast, encrypted, and deduplicated backups powered by Rust
version_constraint: "false"
version_overrides:
- version_constraint: Version == "v0.10.2"
asset: rustic-{{.Version}}-1-g189b17c-{{.Arch}}-{{.OS}}.{{.Format}}
format: tar.gz
windows_arm_emulation: true
overrides:
- goos: linux
goarch: arm64
asset: rustic-{{.Version}}-1-{{.Arch}}-{{.OS}}.{{.Format}}
- goos: darwin
goarch: arm64
asset: rustic-{{.Version}}-1-{{.Arch}}-{{.OS}}.{{.Format}}
replacements:
amd64: x86_64
arm64: aarch64
darwin: apple-darwin
linux: unknown-linux-musl
windows: pc-windows-msvc
- version_constraint: semver("<= 0.2.0-rc1")
asset: rustic_{{trimV .Version}}_{{.Arch}}_64-{{.OS}}.{{.Format}}
format: bz2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ packages:
type: github_release
asset: rekor_checksums.txt
algorithm: sha256
- version_constraint: "true"
- version_constraint: semver("<= 1.4.2")
asset: rekor-cli-{{.OS}}-{{.Arch}}
format: raw
windows_arm_emulation: true
Expand All @@ -44,3 +44,20 @@ packages:
- https://accounts.google.com
- --signature
- https://github.com/sigstore/rekor/releases/download/{{.Version}}/rekor_checksums.txt-keyless.sig
- version_constraint: "true"
asset: rekor-cli-{{.OS}}-{{.Arch}}
format: raw
windows_arm_emulation: true
checksum:
type: github_release
asset: rekor_checksums.txt
algorithm: sha256
cosign:
bundle:
type: github_release
asset: "rekor_checksums.txt-keyless.sigstore.json"
opts:
- --certificate-identity
- [email protected]
- --certificate-oidc-issuer
- https://accounts.google.com
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.11.5";
version = "2025.11.6";

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: "21.3k",
stars: "21.4k",
};
},
};
16 changes: 8 additions & 8 deletions mise.lock
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@ checksum = "blake3:d9f743140120e39812867aa896512deea4fe99ab866029f8bd5a347557c61
size = 39630922

[[tools.cargo-binstall]]
version = "1.15.11"
version = "1.16.0"
backend = "aqua:cargo-bins/cargo-binstall"

[tools.cargo-binstall.platforms.linux-x64]
checksum = "sha256:82d6c69a87d222bbf834371af0dc4d1c08037739ea54be9f4857e00ff7af05c7"
size = 6770344
url = "https://github.com/cargo-bins/cargo-binstall/releases/download/v1.15.11/cargo-binstall-x86_64-unknown-linux-musl.tgz"
checksum = "sha256:d9f55ae6aff2ab7dbbd3f6478510a81d56dc700fdd1d2510c7ef6d074c2c94c9"
size = 6768003
url = "https://github.com/cargo-bins/cargo-binstall/releases/download/v1.16.0/cargo-binstall-x86_64-unknown-linux-musl.tgz"

[[tools."cargo:cargo-edit"]]
version = "0.13.8"
Expand Down Expand Up @@ -72,13 +72,13 @@ size = 18174787
url = "https://github.com/cli/cli/releases/download/v2.83.1/gh_2.83.1_linux_amd64.tar.gz"

[[tools.hk]]
version = "1.20.0"
version = "1.21.0"
backend = "aqua:jdx/hk"

[tools.hk.platforms.linux-x64]
checksum = "sha256:f35036c5e43f32e5c110a6c147df598d69d2afb56186ffa7b5d5af0d517c7069"
size = 7184547
url = "https://github.com/jdx/hk/releases/download/v1.20.0/hk-x86_64-unknown-linux-gnu.tar.gz"
checksum = "sha256:2dbe766a257272d4ad32704b434bccf9bbf985dd0d3b4fa59d0956d6c3c9020a"
size = 7243194
url = "https://github.com/jdx/hk/releases/download/v1.21.0/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.11.5
Version: 2025.11.6
Release: 1
URL: https://github.com/jdx/mise/
Group: System
Expand Down
2 changes: 1 addition & 1 deletion snapcraft.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

name: mise
title: mise-en-place
version: "2025.11.5"
version: "2025.11.6"
summary: The front-end to your dev env
description: |
mise-en-place is a command line tool to manage your development environment.
Expand Down
Loading