diff --git a/.github/workflows/build-qa-os-matrix-large.yml b/.github/workflows/build-qa-os-matrix-large.yml index 2c1842c7..4b16be49 100644 --- a/.github/workflows/build-qa-os-matrix-large.yml +++ b/.github/workflows/build-qa-os-matrix-large.yml @@ -64,6 +64,7 @@ jobs: - ciready/ubuntu:20.04-ci-c - ciready/ubuntu:22.04-ci-c + - ciready/ubuntu:24.04-ci-c - ciready/ubuntu:rolling-ci-c diff --git a/.github/workflows/build-qa-os-matrix-small.yml b/.github/workflows/build-qa-os-matrix-small.yml index c07d2bdd..9b47a45f 100644 --- a/.github/workflows/build-qa-os-matrix-small.yml +++ b/.github/workflows/build-qa-os-matrix-small.yml @@ -53,7 +53,7 @@ jobs: - ciready/opensuse:leap-15.4-ci-c - - ciready/ubuntu:22.04-ci-c + - ciready/ubuntu:24.04-ci-c - ciready/ubuntu:rolling-ci-c diff --git a/.github/workflows/install-qa-os-matrix.yml b/.github/workflows/install-qa-os-matrix.yml index fd64be39..03acf766 100644 --- a/.github/workflows/install-qa-os-matrix.yml +++ b/.github/workflows/install-qa-os-matrix.yml @@ -59,6 +59,7 @@ jobs: - ubuntu:20.04 - ubuntu:22.04 + - ubuntu:24.04 - ubuntu:rolling diff --git a/.github/workflows/packaging-qa-os-matrix-large.yml b/.github/workflows/packaging-qa-os-matrix-large.yml index ebb954b0..ec10932d 100644 --- a/.github/workflows/packaging-qa-os-matrix-large.yml +++ b/.github/workflows/packaging-qa-os-matrix-large.yml @@ -62,6 +62,7 @@ jobs: - ciready/ubuntu:20.04-ci-c - ciready/ubuntu:22.04-ci-c + - ciready/ubuntu:24.04-ci-c diff --git a/.github/workflows/packaging-qa-os-matrix-small.yml b/.github/workflows/packaging-qa-os-matrix-small.yml index 9a17c115..53457823 100644 --- a/.github/workflows/packaging-qa-os-matrix-small.yml +++ b/.github/workflows/packaging-qa-os-matrix-small.yml @@ -48,7 +48,7 @@ jobs: - ciready/centos:stream-9-ci-c - - ciready/ubuntu:22.04-ci-c + - ciready/ubuntu:24.04-ci-c diff --git a/.github/workflows/publish-native-packages.yml b/.github/workflows/publish-native-packages.yml index 3f1a156f..e584130c 100644 --- a/.github/workflows/publish-native-packages.yml +++ b/.github/workflows/publish-native-packages.yml @@ -48,6 +48,7 @@ jobs: - ciready/ubuntu:20.04-ci-c - ciready/ubuntu:22.04-ci-c + - ciready/ubuntu:24.04-ci-c diff --git a/.github/workflows/release-qa-os-matrix-install-from-repo.yml b/.github/workflows/release-qa-os-matrix-install-from-repo.yml index 5e3f9855..9d937bea 100644 --- a/.github/workflows/release-qa-os-matrix-install-from-repo.yml +++ b/.github/workflows/release-qa-os-matrix-install-from-repo.yml @@ -56,6 +56,7 @@ jobs: - ubuntu:20.04 - ubuntu:22.04 + - ubuntu:24.04 diff --git a/.github/workflows/release-qa-os-matrix-install-from-source.yml b/.github/workflows/release-qa-os-matrix-install-from-source.yml index e909c5d6..273ec223 100644 --- a/.github/workflows/release-qa-os-matrix-install-from-source.yml +++ b/.github/workflows/release-qa-os-matrix-install-from-source.yml @@ -51,6 +51,7 @@ jobs: - ubuntu:20.04 - ubuntu:22.04 + - ubuntu:24.04 - ubuntu:rolling diff --git a/ChangeLog b/ChangeLog index 2ca4a9ca..c0ad1bac 100644 --- a/ChangeLog +++ b/ChangeLog @@ -4,10 +4,11 @@ -2023-xx-xx - Version 2.5.2 +2024-xx-xx - Version 2.5.2 -------------------------- New features: ============= +o Add Ubuntu 24.04 support. o Add OpenSUSE 15.5 support. o Configurable max log message length. Ref: https://github.com/a2o/snoopy/issue/254 diff --git a/doc/install-from-repo.md b/doc/install-from-repo.md index 27a78176..dc567f92 100644 --- a/doc/install-from-repo.md +++ b/doc/install-from-repo.md @@ -169,6 +169,14 @@ zypper install snoopy Packages are provided for active Ubuntu LTS versions only. List of supported Ubuntu LTS versions is [here](https://github.com/a2o/snoopy-packages/tree/master/repo/ubuntu/dists). +Ubuntu 24.04 LTS (Noble Numbat) [search-key:ubuntu-24.04]: +```shell +curl https://a2o.github.io/snoopy-packages/snoopy-packages-key.pub | apt-key add - && +echo "deb https://a2o.github.io/snoopy-packages/repo/ubuntu noble stable" > /etc/apt/sources.list.d/snoopy-stable.list && +apt update && +apt install snoopy +``` + Ubuntu 22.04 LTS (Jammy Jellyfish) [search-key:ubuntu-22.04]: ```shell curl https://a2o.github.io/snoopy-packages/snoopy-packages-key.pub | apt-key add - &&