Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
a8aa632
chore: release 2025.9.13
mise-en-dev Sep 19, 2025
fc1b6da
fix: remove openssl/vendored feature from ARM builds
jdx Sep 19, 2025
427cc2b
fix: disable default features for sigstore-verification
jdx Sep 19, 2025
5527a15
fix: disable default features to avoid native-tls
jdx Sep 19, 2025
c6f4f59
fix: use default features with openssl/vendored for ARM builds
jdx Sep 19, 2025
2a504f8
Revert "fix: use default features with openssl/vendored for ARM builds"
jdx Sep 19, 2025
71b432a
fix: add aws-lc-rs with bindgen feature for rustls builds
jdx Sep 19, 2025
32d8e34
fix: install bindgen-cli in cross Docker images for rustls builds
jdx Sep 19, 2025
d500717
fix(build): add bindgen to cross pre-build for ARM targets
jdx Sep 19, 2025
35a294c
[autofix.ci] apply automated fixes
autofix-ci[bot] Sep 19, 2025
ec73c70
fix(build): use $CARGO variable in cross pre-build commands
jdx Sep 19, 2025
b4dec18
fix(build): install bindgen-cli on CI hosts for ARM builds
jdx Sep 19, 2025
a6bdce4
Revert "fix(build): install bindgen-cli on CI hosts for ARM builds"
jdx Sep 19, 2025
04ff7dd
fix(build): configure TLS backends to use rustls
jdx Sep 19, 2025
af0fa59
refactor: remove cross and cargo-zigbuild from build setup
jdx Sep 19, 2025
f528aca
fix: use ubuntu-24.04-arm runners for ARM builds
jdx Sep 19, 2025
b0596f5
refactor: remove ARM-specific OpenSSL vendoring
jdx Sep 19, 2025
c5dcb46
fix: add cross-compilation tools for ARMv7 on ARM64 runners
jdx Sep 19, 2025
919115e
fix: add musl cross-compilation tools for ARM targets
jdx Sep 19, 2025
37e7de7
fix: add musl-tools for x86_64-musl targets
jdx Sep 19, 2025
ad1ae7b
fix: use correct ARM compilers for soft-float vs hard-float targets
jdx Sep 19, 2025
bec7fff
machete
jdx Sep 19, 2025
1240170
fix: add proper musl cross-compiler for ARMv7 targets
jdx Sep 19, 2025
f03cbc6
fix: resolve PR #6309 build failures
jdx Sep 19, 2025
f0f8bb1
[autofix.ci] apply automated fixes
autofix-ci[bot] Sep 19, 2025
446d1df
fix: use ubuntu-latest for ARMv7 musl builds
jdx Sep 19, 2025
bb48264
fix: improve ARMv7 musl build script
jdx Sep 19, 2025
19d9a70
fix: use mise.jdx.dev for ARMv7 musl cross-compiler
jdx Sep 19, 2025
4dffecc
fix: set BINDGEN_EXTRA_CLANG_ARGS for ARMv7 musl cross-compilation
jdx Sep 19, 2025
8cc806f
feat: add checksum verification for ARMv7 musl cross-compiler download
jdx Sep 19, 2025
aae638c
fix: store ARMv7 musl cross-compiler checksum in workflow
jdx Sep 19, 2025
551b97a
fix: update ARMv7 musl cross-compiler checksum
jdx Sep 19, 2025
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
75 changes: 67 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,15 +40,15 @@ jobs:
- os: ubuntu
name: linux-arm64
target: aarch64-unknown-linux-gnu
runs-on: ubuntu-latest
runs-on: ubuntu-24.04-arm
- os: ubuntu
name: linux-arm64-musl
target: aarch64-unknown-linux-musl
runs-on: ubuntu-latest
runs-on: ubuntu-24.04-arm
- os: ubuntu
name: linux-armv7
target: armv7-unknown-linux-gnueabi
runs-on: ubuntu-latest
runs-on: ubuntu-24.04-arm
- os: ubuntu
name: linux-armv7-musl
target: armv7-unknown-linux-musleabi
Expand All @@ -75,11 +75,70 @@ jobs:
path: ~/.cargo/registry/cache
key: cargo-registry-${{ hashFiles('**/Cargo.lock') }}
restore-keys: cargo-registry
- if: matrix.runs-on != 'ubuntu-latest'
run: rustup target add ${{matrix.target}}
- if: matrix.runs-on == 'ubuntu-latest'
uses: taiki-e/install-action@0aa4f22591557b744fe31e55dbfcdfea74a073f7 # v2
with: { tool: cross }
- name: Install cross-compilation tools
if: contains(matrix.target, 'armv7') || contains(matrix.target, 'musl')
run: |
set -x
sudo apt-get update
# For ARMv7 targets on ARM runners
case "${{matrix.runs-on}}" in
*arm*)
case "${{matrix.target}}" in
*armv7*)
# Install both soft-float and hard-float toolchains
sudo apt-get install -y gcc-arm-linux-gnueabi libc6-dev-armel-cross gcc-arm-linux-gnueabihf libc6-dev-armhf-cross
;;
esac
;;
esac
# For musl targets (all platforms)
case "${{matrix.target}}" in
*musl*)
sudo apt-get install -y musl-tools
# For ARMv7 musl cross-compilation on x86_64, download prebuilt toolchain
if [ "${{matrix.target}}" = "armv7-unknown-linux-musleabi" ]; then
echo "Downloading ARMv7 musl cross-compiler..."
wget -q https://mise.jdx.dev/arm-linux-musleabi-cross.tgz || exit 1
echo "Verifying checksum..."
echo "d70c607101fee5330083463feacf5992892a85b826d1626094500e0c37ec7d25 arm-linux-musleabi-cross.tgz" | sha256sum -c || exit 1
echo "Extracting cross-compiler..."
sudo tar -xzf arm-linux-musleabi-cross.tgz -C /opt || exit 1
rm arm-linux-musleabi-cross.tgz
echo "/opt/arm-linux-musleabi-cross/bin" >> "$GITHUB_PATH"
echo "Cross-compiler setup complete"
fi
;;
esac
- name: Setup Rust target and linkers
run: |
rustup target add ${{matrix.target}}
# Set linkers for cross-compilation
case "${{matrix.target}}" in
armv7-unknown-linux-gnueabi)
# Use soft-float compiler for gnueabi target
echo "CARGO_TARGET_ARMV7_UNKNOWN_LINUX_GNUEABI_LINKER=arm-linux-gnueabi-gcc" >> "$GITHUB_ENV"
echo "CC_armv7_unknown_linux_gnueabi=arm-linux-gnueabi-gcc" >> "$GITHUB_ENV"
echo "AR_armv7_unknown_linux_gnueabi=arm-linux-gnueabi-ar" >> "$GITHUB_ENV"
;;
armv7-unknown-linux-musleabi)
# Use the downloaded musl cross-compiler for ARMv7 soft-float
echo "CARGO_TARGET_ARMV7_UNKNOWN_LINUX_MUSLEABI_LINKER=arm-linux-musleabi-gcc" >> "$GITHUB_ENV"
echo "CC_armv7_unknown_linux_musleabi=arm-linux-musleabi-gcc" >> "$GITHUB_ENV"
echo "AR_armv7_unknown_linux_musleabi=arm-linux-musleabi-ar" >> "$GITHUB_ENV"
# Set include paths for bindgen to find musl headers
echo "BINDGEN_EXTRA_CLANG_ARGS=--sysroot=/opt/arm-linux-musleabi-cross/arm-linux-musleabi" >> "$GITHUB_ENV"
;;
aarch64-unknown-linux-musl)
echo "CARGO_TARGET_AARCH64_UNKNOWN_LINUX_MUSL_LINKER=musl-gcc" >> "$GITHUB_ENV"
echo "CC_aarch64_unknown_linux_musl=musl-gcc" >> "$GITHUB_ENV"
echo "CC=musl-gcc" >> "$GITHUB_ENV"
;;
x86_64-unknown-linux-musl)
echo "CARGO_TARGET_X86_64_UNKNOWN_LINUX_MUSL_LINKER=musl-gcc" >> "$GITHUB_ENV"
echo "CC_x86_64_unknown_linux_musl=musl-gcc" >> "$GITHUB_ENV"
echo "CC=musl-gcc" >> "$GITHUB_ENV"
;;
esac
- name: build-tarball
uses: nick-fields/retry@ce71cc2ab81d554ebbe88c79ab5975992d79ba08 # v3
with:
Expand Down
54 changes: 48 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,47 @@
# Changelog

## [2025.9.13](https://github.com/jdx/mise/compare/v2025.9.12..v2025.9.13) - 2025-09-19

### πŸ“¦ Registry

- remove deprecated virtualos by @jdx in [166379f](https://github.com/jdx/mise/commit/166379f71c79fccacfc980dd14d4e18642c7d1e5)
- add trufflehog ([aqua:trufflesecurity/trufflehog](https://github.com/trufflesecurity/trufflehog)) by @risu729 in [#6316](https://github.com/jdx/mise/pull/6316)

### πŸš€ Features

- **(aqua)** integrate native sigstore-verification for security verification by @jdx in [#6332](https://github.com/jdx/mise/pull/6332)
- **(docs)** improve search result readability with lighter teal background by @jdx in [#6328](https://github.com/jdx/mise/pull/6328)
- **(ui)** update logo as favicon and fix hover transitions by @jdx in [#6325](https://github.com/jdx/mise/pull/6325)
- **(vfox)** add file.read lua function by @malept in [#6333](https://github.com/jdx/mise/pull/6333)
- add documentation for "Environment in tasks" #5134 #5638 by @Its-Just-Nans in [#6329](https://github.com/jdx/mise/pull/6329)

### πŸ› Bug Fixes

- **(github)** correctly paginate releases/tags for private repos by @malept in [#6318](https://github.com/jdx/mise/pull/6318)
- **(hk)** exclude aqua-registry from prettier linting by @jdx in [#6327](https://github.com/jdx/mise/pull/6327)
- **(ui)** improve GitHub star badge layout and alignment by @jdx in [#6326](https://github.com/jdx/mise/pull/6326)

### πŸ“š Documentation

- change 'hello.py' to 'main.py' in python.md by @my1e5 in [#6319](https://github.com/jdx/mise/pull/6319)
- customize VitePress theme with unique branding by @jdx in [#6324](https://github.com/jdx/mise/pull/6324)

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

- update taiki-e/install-action digest to 0aa4f22 by @renovate[bot] in [#6334](https://github.com/jdx/mise/pull/6334)
- update rust crate comfy-table to v7.2.1 by @renovate[bot] in [#6335](https://github.com/jdx/mise/pull/6335)
- update rust crate console to v0.16.1 by @renovate[bot] in [#6336](https://github.com/jdx/mise/pull/6336)
- update rust crate indexmap to v2.11.4 by @renovate[bot] in [#6337](https://github.com/jdx/mise/pull/6337)

### Chore

- fixing typos by @Its-Just-Nans in [#6331](https://github.com/jdx/mise/pull/6331)

### New Contributors

- @Its-Just-Nans made their first contribution in [#6331](https://github.com/jdx/mise/pull/6331)
- @my1e5 made their first contribution in [#6319](https://github.com/jdx/mise/pull/6319)

## [2025.9.12](https://github.com/jdx/mise/compare/v2025.9.11..v2025.9.12) - 2025-09-16

### πŸ› Bug Fixes
Expand Down Expand Up @@ -251,10 +293,10 @@
### πŸ› Bug Fixes

- **(aqua)** respect order of asset_strs by @risu729 in [#6143](https://github.com/jdx/mise/pull/6143)
- **(java)** treat freebsd as linux (assuming linux compatibility) by @roele in [#6161](https://github.com/jdx/mise/pull/6161)
- **(java)** treat freebsd as linux (assuming linux compatability) by @roele in [#6161](https://github.com/jdx/mise/pull/6161)
- **(nushell/windows)** Fix $env.PATH getting converted to a string by @zackyancey in [#6157](https://github.com/jdx/mise/pull/6157)
- **(sync)** create uv_versions_path dir if it doesn't exist by @risu729 in [#6142](https://github.com/jdx/mise/pull/6142)
- **(ubi)** show relevant error messages for v-prefixed tags by @risu729 in [#6183](https://github.com/jdx/mise/pull/6183)
- **(ubi)** show relevent error messages for v-prefixed tags by @risu729 in [#6183](https://github.com/jdx/mise/pull/6183)
- remove nodejs/golang alias migrate code by @risu729 in [#6141](https://github.com/jdx/mise/pull/6141)
- mise activate not working on powershell v5 by @L0RD-ZER0 in [#6168](https://github.com/jdx/mise/pull/6168)

Expand Down Expand Up @@ -2122,7 +2164,7 @@

### πŸ› Bug Fixes

- **(ubi)** API URL for GitHub should not have /repos segment by @roele in [#4848](https://github.com/jdx/mise/pull/4848)
- **(ubi)** API URL for GitHub should not have /repos segement by @roele in [#4848](https://github.com/jdx/mise/pull/4848)
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bug: Commit Fixes Typos But Introduces New Errors

It looks like the commit intended to fix typos actually introduced several new spelling errors. For example, "third" was changed to "thrid" in the maltmill package description, and "segment" was changed to "segement" in the changelog.

Additional Locations (1)

Fix in CursorΒ Fix in Web

- **(ubi)** URL syntax fails by @roele in [#4859](https://github.com/jdx/mise/pull/4859)
- allow to install non-numeric elixir versions by @roele in [#4850](https://github.com/jdx/mise/pull/4850)
- removed possible single-point-of-failure while running `mise upgrade` by @hitblast in [#4847](https://github.com/jdx/mise/pull/4847)
Expand Down Expand Up @@ -2771,7 +2813,7 @@
### Chore

- make self_update optional by @jdx in [#4230](https://github.com/jdx/mise/pull/4230)
- added some default reqwest features by @jdx in [#4232](https://github.com/jdx/mise/pull/4232)
- added some defaul reqwest features by @jdx in [#4232](https://github.com/jdx/mise/pull/4232)

### New Contributors

Expand Down Expand Up @@ -3701,9 +3743,9 @@
### πŸš€ Features

- add the users PATH to `mise doctor` by @syhol in [#3474](https://github.com/jdx/mise/pull/3474)
- feat : Add superfile with aqua backend to registry by @yodatak in [#3479](https://github.com/jdx/mise/pull/3479)
- feat : Add superfile with aqua backend to registery by @yodatak in [#3479](https://github.com/jdx/mise/pull/3479)
- added `task_auto_install` setting by @jdx in [#3481](https://github.com/jdx/mise/pull/3481)
- Add yazi with aqua backend to registry by @yodatak in [#3485](https://github.com/jdx/mise/pull/3485)
- Add yazi with aqua backend to registery by @yodatak in [#3485](https://github.com/jdx/mise/pull/3485)
- Migrating Terragrunt asdf plugin over to gruntwork-io by @yhakbar in [#3486](https://github.com/jdx/mise/pull/3486)
- add settings for python venv creation by @jdx in [#3489](https://github.com/jdx/mise/pull/3489)
- added MISE_ARCH setting by @jdx in [#3490](https://github.com/jdx/mise/pull/3490)
Expand Down
Loading
Loading