Skip to content

Commit f2c3a6e

Browse files
authored
chore: release 2026.4.2 (#8848)
### πŸš€ Features - **(exec)** add process sandboxing for mise x and mise run by @jdx in [#8845](#8845) ### πŸ“š Documentation - fix values for RUNTIME.osType and RUNTIME.archType. Simplify examples by @esteve in [#8785](#8785) ### πŸ“¦οΈ Dependency Updates - update ghcr.io/jdx/mise:copr docker digest to 6dd31ee by @renovate[bot] in [#8860](#8860) - update ghcr.io/jdx/mise:alpine docker digest to 4b8b285 by @renovate[bot] in [#8859](#8859) - update ghcr.io/jdx/mise:deb docker digest to 56ddc49 by @renovate[bot] in [#8861](#8861) - update ghcr.io/jdx/mise:rpm docker digest to b37cc3b by @renovate[bot] in [#8862](#8862) ### New Contributors - @esteve made their first contribution in [#8785](#8785)
1 parent f4592af commit f2c3a6e

File tree

12 files changed

+32
-11
lines changed

12 files changed

+32
-11
lines changed

β€ŽCHANGELOG.mdβ€Ž

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
# Changelog
22

3+
## [2026.4.2](https://github.com/jdx/mise/compare/v2026.4.1..v2026.4.2) - 2026-04-03
4+
5+
### πŸš€ Features
6+
7+
- **(exec)** add process sandboxing for mise x and mise run by @jdx in [#8845](https://github.com/jdx/mise/pull/8845)
8+
9+
### πŸ“š Documentation
10+
11+
- fix values for RUNTIME.osType and RUNTIME.archType. Simplify examples by @esteve in [#8785](https://github.com/jdx/mise/pull/8785)
12+
13+
### πŸ“¦οΈ Dependency Updates
14+
15+
- update ghcr.io/jdx/mise:copr docker digest to 6dd31ee by @renovate[bot] in [#8860](https://github.com/jdx/mise/pull/8860)
16+
- update ghcr.io/jdx/mise:alpine docker digest to 4b8b285 by @renovate[bot] in [#8859](https://github.com/jdx/mise/pull/8859)
17+
- update ghcr.io/jdx/mise:deb docker digest to 56ddc49 by @renovate[bot] in [#8861](https://github.com/jdx/mise/pull/8861)
18+
- update ghcr.io/jdx/mise:rpm docker digest to b37cc3b by @renovate[bot] in [#8862](https://github.com/jdx/mise/pull/8862)
19+
20+
### New Contributors
21+
22+
- @esteve made their first contribution in [#8785](https://github.com/jdx/mise/pull/8785)
23+
324
## [2026.4.1](https://github.com/jdx/mise/compare/v2026.4.0..v2026.4.1) - 2026-04-02
425

526
### πŸš€ Features

β€ŽCargo.lockβ€Ž

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€ŽCargo.tomlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ members = [
88

99
[package]
1010
name = "mise"
11-
version = "2026.4.1"
11+
version = "2026.4.2"
1212
edition = "2024"
1313
description = "The front-end to your dev env"
1414
authors = ["Jeff Dickey (@jdx)"]

β€ŽREADME.mdβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ $ ~/.local/bin/mise --version
6464
/ / / / / / (__ ) __/_____/ __/ / / /_____/ /_/ / / /_/ / /__/ __/
6565
/_/ /_/ /_/_/____/\___/ \___/_/ /_/ / .___/_/\__,_/\___/\___/
6666
/_/ by @jdx
67-
2026.4.1 macos-arm64 (2026-04-02)
67+
2026.4.2 macos-arm64 (2026-04-03)
6868
```
6969

7070
Hook mise into your shell (pick the right one for your shell):

β€Žcompletions/_miseβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ _mise() {
2323
return 1
2424
fi
2525

26-
local spec_file="${TMPDIR:-/tmp}/usage__usage_spec_mise_2026_4_1.spec"
26+
local spec_file="${TMPDIR:-/tmp}/usage__usage_spec_mise_2026_4_2.spec"
2727
if [[ ! -f "$spec_file" ]]; then
2828
mise usage >| "$spec_file"
2929
fi

β€Žcompletions/mise.bashβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ _mise() {
99

1010
local cur prev words cword was_split comp_args
1111
_comp_initialize -n : -- "$@" || return
12-
local spec_file="${TMPDIR:-/tmp}/usage__usage_spec_mise_2026_4_1.spec"
12+
local spec_file="${TMPDIR:-/tmp}/usage__usage_spec_mise_2026_4_2.spec"
1313
if [[ ! -f "$spec_file" ]]; then
1414
mise usage >| "$spec_file"
1515
fi

β€Žcompletions/mise.fishβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ if ! type -p usage &> /dev/null
88
return 1
99
end
1010
set -l tmpdir (if set -q TMPDIR; echo $TMPDIR; else; echo /tmp; end)
11-
set -l spec_file "$tmpdir/usage__usage_spec_mise_2026_4_1.spec"
11+
set -l spec_file "$tmpdir/usage__usage_spec_mise_2026_4_2.spec"
1212
if not test -f "$spec_file"
1313
mise usage | string collect > "$spec_file"
1414
end

β€Žcompletions/mise.ps1β€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Register-ArgumentCompleter -Native -CommandName 'mise' -ScriptBlock {
1010
param($wordToComplete, $commandAst, $cursorPosition)
1111

1212
$tmpDir = if ($env:TEMP) { $env:TEMP } else { [System.IO.Path]::GetTempPath() }
13-
$specFile = Join-Path $tmpDir "usage__usage_spec_mise_2026_4_1.kdl"
13+
$specFile = Join-Path $tmpDir "usage__usage_spec_mise_2026_4_2.kdl"
1414

1515
if (-not (Test-Path $specFile)) {
1616
mise usage | Out-File -FilePath $specFile -Encoding utf8

β€Ždefault.nixβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
rustPlatform.buildRustPackage {
44
pname = "mise";
5-
version = "2026.4.1";
5+
version = "2026.4.2";
66

77
src = lib.cleanSource ./.;
88

β€Ždocs/.vitepress/stars.data.tsβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
export default {
44
load() {
55
return {
6-
stars: "26.2k",
6+
stars: "26.3k",
77
};
88
},
99
};

0 commit comments

Comments
Β (0)