diff --git a/CHANGELOG.md b/CHANGELOG.md index d3936f19a4..c2471c0754 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,40 @@ # Changelog +## [2025.11.7](https://github.com/jdx/mise/compare/v2025.11.6..v2025.11.7) - 2025-11-19 + +### 📦 Registry + +- added nelm by @tony-sol in [#7020](https://github.com/jdx/mise/pull/7020) + +### 🚀 Features + +- **(exec)** ensure MISE_ENV is set in spawned shell when specified via -E flag by @ceelian in [#7007](https://github.com/jdx/mise/pull/7007) + +### 🐛 Bug Fixes + +- **(go)** Don't allow auto mod=vendor mode by @mariduv in [#7006](https://github.com/jdx/mise/pull/7006) +- **(nushell)** test `use` not `source`, fix pipeline parse error by @jokeyrhyme in [#7013](https://github.com/jdx/mise/pull/7013) +- **(tasks)** make file paths relative to config location and templateable by @halms in [#7005](https://github.com/jdx/mise/pull/7005) + +### Chore + +- **(deny)** add exclusion for number_prefix by @jdx in [e955ecb](https://github.com/jdx/mise/commit/e955ecbb733d61ef1d0b522a979a7d1998ec8061) + +### New Contributors + +- @mariduv made their first contribution in [#7006](https://github.com/jdx/mise/pull/7006) +- @ceelian made their first contribution in [#7007](https://github.com/jdx/mise/pull/7007) + +### 📦 Aqua Registry Updates + +#### New Packages (2) + +- [`blender/blender`](https://github.com/blender/blender) +- [`werf/werf`](https://github.com/werf/werf) + +#### Updated Packages (1) + +- [`mas-cli/mas`](https://github.com/mas-cli/mas) ## [2025.11.6](https://github.com/jdx/mise/compare/v2025.11.5..v2025.11.6) - 2025-11-18 ### 📦 Registry diff --git a/Cargo.lock b/Cargo.lock index 85cab73c29..d5d415c6ad 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4522,7 +4522,7 @@ dependencies = [ [[package]] name = "mise" -version = "2025.11.6" +version = "2025.11.7" dependencies = [ "age", "aqua-registry", diff --git a/Cargo.toml b/Cargo.toml index 562fb45f68..f75b270d0b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["crates/vfox", "crates/aqua-registry"] [package] name = "mise" -version = "2025.11.6" +version = "2025.11.7" edition = "2024" description = "The front-end to your dev env" authors = ["Jeff Dickey (@jdx)"] diff --git a/README.md b/README.md index b2755e3ccc..8a26482347 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.11.6 macos-arm64 (a1b2d3e 2025-11-18) +2025.11.7 macos-arm64 (a1b2d3e 2025-11-19) ``` Hook mise into your shell (pick the right one for your shell): diff --git a/completions/_mise b/completions/_mise index a9c37c331e..d82437f49b 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_11_6.spec" + local spec_file="${TMPDIR:-/tmp}/usage__usage_spec_mise_2025_11_7.spec" if [[ ! -f "$spec_file" ]]; then mise usage > "$spec_file" fi diff --git a/completions/mise.bash b/completions/mise.bash index 5541fd4a13..069b3f9d5d 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_11_6.spec" + local spec_file="${TMPDIR:-/tmp}/usage__usage_spec_mise_2025_11_7.spec" if [[ ! -f "$spec_file" ]]; then mise usage > "$spec_file" fi diff --git a/completions/mise.fish b/completions/mise.fish index f2b35b1db9..1490b1904e 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_11_6.spec" +set -l spec_file "$tmpdir/usage__usage_spec_mise_2025_11_7.spec" if not test -f "$spec_file" mise usage | string collect > "$spec_file" end diff --git a/crates/aqua-registry/aqua-registry/pkgs/blender/blender/registry.yaml b/crates/aqua-registry/aqua-registry/pkgs/blender/blender/registry.yaml new file mode 100644 index 0000000000..98b0d63203 --- /dev/null +++ b/crates/aqua-registry/aqua-registry/pkgs/blender/blender/registry.yaml @@ -0,0 +1,33 @@ +# yaml-language-server: $schema=https://raw.githubusercontent.com/aquaproj/aqua/main/json-schema/registry.json +packages: + - type: http + repo_owner: blender + repo_name: blender + description: Blender is a free and open-source 3D computer graphics software + version_source: github_tag + version_constraint: "false" + version_overrides: + - version_constraint: "true" + url: https://download.blender.org/release/Blender{{(semver .Version).Major}}.{{(semver .Version).Minor}}/blender-{{trimV .Version}}-{{.OS}}-{{.Arch}}.{{.Format}} + format: tar.xz + replacements: + amd64: x64 + darwin: macos + supported_envs: + - linux/amd64 + - windows + - darwin/arm64 + files: + - name: blender + src: blender-{{trimV .Version}}-{{.OS}}-{{.Arch}}/blender + overrides: + - goos: windows + format: zip + files: + - name: blender + src: blender-{{trimV .Version}}-{{.OS}}-{{.Arch}}/blender.exe + - goos: darwin + format: dmg + files: + - name: blender + src: Blender.app/Contents/MacOS/Blender diff --git a/crates/aqua-registry/aqua-registry/pkgs/mas-cli/mas/registry.yaml b/crates/aqua-registry/aqua-registry/pkgs/mas-cli/mas/registry.yaml index b4ca49c354..7719eb32df 100644 --- a/crates/aqua-registry/aqua-registry/pkgs/mas-cli/mas/registry.yaml +++ b/crates/aqua-registry/aqua-registry/pkgs/mas-cli/mas/registry.yaml @@ -21,7 +21,7 @@ packages: src: mas_components.pkg/Payload/usr/local/bin/mas supported_envs: - darwin - - version_constraint: "true" + - version_constraint: semver("< 3.0.0") asset: mas-{{trimV .Version}}.{{.Format}} format: pkg files: @@ -29,3 +29,14 @@ packages: src: mas_components.pkg/Payload/mas supported_envs: - darwin + - version_constraint: "true" + asset: mas-{{trimV .Version}}-{{.Arch}}.{{.Format}} + format: pkg + replacements: + amd64: x86_64 + files: + - name: mas + src: mas_components.pkg/Payload/mas + supported_envs: + - darwin/amd64 + - darwin/arm64 diff --git a/crates/aqua-registry/aqua-registry/pkgs/werf/werf/registry.yaml b/crates/aqua-registry/aqua-registry/pkgs/werf/werf/registry.yaml new file mode 100644 index 0000000000..ea5b208586 --- /dev/null +++ b/crates/aqua-registry/aqua-registry/pkgs/werf/werf/registry.yaml @@ -0,0 +1,12 @@ +# yaml-language-server: $schema=https://raw.githubusercontent.com/aquaproj/aqua/main/json-schema/registry.json +packages: + - type: http + repo_owner: werf + repo_name: werf + description: A solution for implementing efficient and consistent software delivery to Kubernetes facilitating best practices. + version_constraint: "false" + version_overrides: + - version_constraint: "true" + url: https://tuf.werf.io/targets/releases/{{trimV .Version}}/{{.OS}}-{{.Arch}}/bin/werf + format: raw + windows_arm_emulation: true diff --git a/default.nix b/default.nix index 6aa8bc092f..83a791c70e 100644 --- a/default.nix +++ b/default.nix @@ -2,7 +2,7 @@ rustPlatform.buildRustPackage { pname = "mise"; - version = "2025.11.6"; + version = "2025.11.7"; src = lib.cleanSource ./.; diff --git a/mise.lock b/mise.lock index 1fb77fb80e..d1430b91e4 100644 --- a/mise.lock +++ b/mise.lock @@ -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.21.0" +version = "1.21.1" backend = "aqua:jdx/hk" [tools.hk.platforms.linux-x64] -checksum = "sha256:2dbe766a257272d4ad32704b434bccf9bbf985dd0d3b4fa59d0956d6c3c9020a" -size = 7243194 -url = "https://github.com/jdx/hk/releases/download/v1.21.0/hk-x86_64-unknown-linux-gnu.tar.gz" +checksum = "sha256:9cb2e6a0cc152886f38b4e8cf7725b1e335a0a3f2801830bb2f933ac81588dbf" +size = 7242866 +url = "https://github.com/jdx/hk/releases/download/v1.21.1/hk-x86_64-unknown-linux-gnu.tar.gz" [[tools.jq]] version = "1.8.1" @@ -108,7 +108,7 @@ version = "5.0.0" backend = "npm:ajv-cli" [[tools."npm:markdownlint-cli"]] -version = "0.45.0" +version = "0.46.0" backend = "npm:markdownlint-cli" [[tools."npm:prettier"]] diff --git a/packaging/rpm/mise.spec b/packaging/rpm/mise.spec index aecf368444..ae9e8e3779 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.11.6 +Version: 2025.11.7 Release: 1 URL: https://github.com/jdx/mise/ Group: System diff --git a/registry.toml b/registry.toml index d9e6691ab9..3b30f74654 100644 --- a/registry.toml +++ b/registry.toml @@ -3263,6 +3263,11 @@ test = ["navi --version", "navi {{version}}"] backends = ["github:HaxeFoundation/neko", "asdf:asdf-community/asdf-neko"] description = "The Neko Virtual Machine" +[tools.nelm] +backends = ["aqua:werf/nelm"] +description = "Nelm is a Helm 4 alternative - it is a Kubernetes deployment tool that manages Helm Charts and deploys them to Kubernetes" +test = ["nelm version | grep full", "full: {{version}}"] + [tools.neonctl] backends = ["aqua:neondatabase/neonctl", "ubi:neondatabase/neonctl"] description = "Neon CLI tool. The Neon CLI is a command-line interface that lets you manage Neon Serverless Postgres directly from the terminal" diff --git a/snapcraft.yaml b/snapcraft.yaml index 504c2ce681..dde0b0cc43 100644 --- a/snapcraft.yaml +++ b/snapcraft.yaml @@ -9,7 +9,7 @@ name: mise title: mise-en-place -version: "2025.11.6" +version: "2025.11.7" summary: The front-end to your dev env description: | mise-en-place is a command line tool to manage your development environment.