Add support for 24.10 (oracular)

Refs #947
This commit is contained in:
Alexis Métaireau 2024-10-14 17:02:17 +02:00 committed by Alex Pyrgiotis
parent 8ad95981ea
commit 49c3c2c6bb
No known key found for this signature in database
GPG key ID: B6C15EBA0357C9AA
6 changed files with 19 additions and 2 deletions

View file

@ -37,6 +37,8 @@ jobs:
version: "23.10"
- distro: ubuntu
version: "24.04"
- distro: ubuntu
version: "24.10"
- distro: debian
version: bullseye
- distro: debian

View file

@ -19,6 +19,8 @@ jobs:
strategy:
matrix:
include:
- distro: ubuntu
version: "24.10" # oracular
- distro: ubuntu
version: "24.04" # noble
- distro: ubuntu

View file

@ -93,9 +93,9 @@ jobs:
strategy:
matrix:
include:
- runner: macos-latest # CPU type: Apple Silicon (M1)
- runner: macos-latest # CPU type: Apple Silicon (M1)
arch: arch64
- runner: macos-13 # CPU type: Intel x86_64
- runner: macos-13 # CPU type: Intel x86_64
arch: x86_64
env:
DUMMY_CONVERSION: 1
@ -124,6 +124,8 @@ jobs:
version: "23.10"
- distro: ubuntu
version: "24.04"
- distro: ubuntu
version: "24.10"
- distro: debian
version: bullseye
- distro: debian
@ -192,6 +194,8 @@ jobs:
version: "23.10"
- distro: ubuntu
version: "24.04"
- distro: ubuntu
version: "24.10"
- distro: debian
version: bullseye
- distro: debian
@ -309,6 +313,8 @@ jobs:
version: "23.10"
- distro: ubuntu
version: "24.04"
- distro: ubuntu
version: "24.10"
- distro: debian
version: bullseye
- distro: debian

View file

@ -10,6 +10,7 @@ since 0.4.1, and this project adheres to [Semantic Versioning](https://semver.or
### Added
- Point to the installation instructions that the Tails team maintains for Dangerzone ([announcement](https://tails.net/news/dangerzone/index.en.html))
- Platform support: Ubuntu 24.10 and Fedora 41 ([issue #947](https://github.com/freedomofpress/dangerzone/issues/947))
## [0.7.1](https://github.com/freedomofpress/dangerzone/compare/v0.7.1...v0.7.0)

View file

@ -9,6 +9,7 @@ On Linux, Dangerzone uses [Podman](https://podman.io/) instead of Docker Desktop
an isolated environment. It will be installed automatically when installing Dangerzone.
Dangerzone is available for:
- Ubuntu 24.10 (oracular)
- Ubuntu 24.04 (noble)
- Ubuntu 23.10 (mantic)
- Ubuntu 22.04 (jammy)

View file

@ -948,6 +948,11 @@ class QAUbuntu2404(QADebianBased):
VERSION = "24.04"
class QAUbuntu2410(QADebianBased):
DISTRO = "ubuntu"
VERSION = "24.10"
class QAFedora(QALinux):
"""Base class for Fedora distros.