Skip to content

1.4.1

Compare
Choose a tag to compare
@nesitor nesitor released this 21 Feb 14:29
· 211 commits to main since this release
f3ef334

We are excited to announce our release for aleph-vm in version 1.4.1 !

This new release of aleph-vm fixes bugs related to persistent executions, pricing, and network checks.

Bug Fixes

  • load_persistent_executions Start Error: Fixed a start error in the load_persistent_executions function. (PR #759)
  • Notify Endpoint Pricing: Resolved a pricing calculation issue on the /notify endpoint. (PR #758)
  • DiagnosticVM IPv4 Check: Fixed an issue in DiagnosticVM to force IPv4 connection on the /internet check. (PR #760)

Full List

  • Fix start error in load_persistent_executions by @olethanh in #759
  • Solve pricing calculation issue on Notify endpoint by @nesitor in #758
  • Fix DiagnosticVM, force ipv4 connexion on /internet check by @olethanh in #760

Full Changelog: 1.4.0...1.4.1

How to upgrade

1. Upgrade the packages

This part did not change, download and install the new package as usual.

On Debian 12 (Bookworm):

rm -f /opt/aleph-vm.debian-12.deb
wget -P /opt https://github.com/aleph-im/aleph-vm/releases/download/1.4.1/aleph-vm.debian-12.deb
apt install /opt/aleph-vm.debian-12.deb

On Ubuntu 22.04 (Jammy Jellyfish):

sudo rm -f /opt/aleph-vm.ubuntu-22.04.deb
sudo wget -P /opt https://github.com/aleph-im/aleph-vm/releases/download/1.4.1/aleph-vm.ubuntu-22.04.deb
sudo apt install /opt/aleph-vm.ubuntu-22.04.deb

On Ubuntu 24.04 (Noble Numbat):

sudo rm -f /opt/aleph-vm.ubuntu-24.04.deb
sudo wget -P /opt https://github.com/aleph-im/aleph-vm/releases/download/1.4.1/aleph-vm.ubuntu-24.04.deb
sudo apt install /opt/aleph-vm.ubuntu-24.04.deb

2. Enable GPU support (optional)

In order to enable GPU support on your Compute Resource Node, you must:

  1. Ensure that your system have a compatible GPU card.
  2. Detach GPU cards from the kernel module drivers and attach it to QEMU vfio drivers.
  3. Enable GPU support in the aleph-vm configuration.

Please follow these instructions

Enable GPU in the configuration of aleph-vm, by default in /etc/aleph-vm/supervisor.env. This is not the default yet.

ALEPH_VM_ENABLE_GPU_SUPPORT=True

After launching the server you can check the endpoint
http://localhost:4020/status/config or https://<your-node-domain>/status/config and verify that ENABLE_GPU_SUPPORT has the value true.