ZIP
WinGet
mise-en-place
jdx · 2026.4.3 · arm64
Before deploying, verify this file with VirusTotal ↗
Silent Commands
Distributed as a ZIP archive — extract the contents and run the executable directly. No installer is included.
File Identity
Filename
mise-v2026.4.3-windows-arm64.zip
Signature
Status
Upload installer to verify signature
Installer Selection
WinGet Package
Package ID
jdx.mise
Version
2026.4.3
Description
Dev tools, env vars, tasks
License
MIT
↗
Homepage
https://mise.jdx.dev/
Support
https://github.com/jdx/mise
Installer URL
https://github.com/jdx/mise/releases/download/v2026.4.3/mise-v2026.4.3-windows-arm64.zip
Upgrade Behavior
install(Install over existing)
Release Notes
A small patch release that fixes a compile error preventing mise from building on 32-bit ARM (armv7) targets.
Fixed
- seccomp network filter build on armv7 -- The seccomp sandbox code that restricts network access during mise exec failed to compile on armv7 targets. The libc::SYS_socket and libc::SYS_socketpair constants are i32 on 32-bit platforms but the rule map expects i64 keys, causing a type mismatch. An explicit as i64 cast fixes the build while remaining a no-op on 64-bit platforms. #886…