diff --git a/docs/reference/changelog.rst b/docs/reference/changelog.rst index 27c4ea193..706631f8f 100644 --- a/docs/reference/changelog.rst +++ b/docs/reference/changelog.rst @@ -15,6 +15,15 @@ Changelog For a complete list of commits, check out the `1.2.3`_ release on GitHub. +6.1.2 (2026-MM-DD) +------------------ + +Bug fixes +========= + +- The ``test`` command can now run tests with an Ubuntu 26.04 backend, using daily + images. + 6.1.1 (2026-01-27) ------------------ diff --git a/spread/.extension b/spread/.extension index 237f84561..d0ee36a12 100755 --- a/spread/.extension +++ b/spread/.extension @@ -11,6 +11,10 @@ allocate-lxd-vm(){ DISK="${DISK:-20}" CPU="${CPU:-4}" MEM="${MEM:-8}" + # Allow early testing on 26.04 + if [[ "$SERIES" == "26.04" && "$DISTRO" == "ubuntu" ]]; then + DISTRO="ubuntu-daily" + fi cloud_config="$(mktemp)" sed "s|SPREAD_PASSWORD|$SPREAD_PASSWORD|g" "${SCRIPTDIR}/cloud-config.yaml" > "$cloud_config"