Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
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
9 changes: 9 additions & 0 deletions docs/reference/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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)
------------------

Expand Down
4 changes: 4 additions & 0 deletions spread/.extension
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down