[ANNOUNCE] haproxy-3.0.0

2024-05-29 Thread Willy Tarreau
Hi, HAProxy 3.0.0 was released on 2024/05/29. It added 21 new commits after version 3.0-dev13. I do appreciate that everything was only cosmetic. We're having a total of 1108 patches in this release among which 850 ones not concerning a bug, which makes it the smallest LTS release of all times (2

Re: [ANNOUNCE] haproxy-3.0.0

2024-05-29 Thread Tim Düsterhus
Hi On 5/29/24 17:07, Willy Tarreau wrote: HAProxy 3.0.0 was released on 2024/05/29. Congratulations on the successful release! I've just opened a PR for the "Official Docker Images" to add HAProxy 3.1: https://github.com/docker-library/haproxy/pull/234 And of course it wouldn't be a real r

[PATCH 2/2] REGTESTS: Remove REQUIRE_VERSION=2.2 from all tests

2024-05-29 Thread Tim Duesterhus
HAProxy 2.2 is the lowest supported version, thus this always matches. see 7aff1bf6b90caadfa95f6b43b526275191991d6f --- reg-tests/checks/http-check-expect.vtc | 1 - reg-tests/checks/http-check.vtc | 1 - reg-tests/checks/http-monitor-uri.vtc

[PATCH 1/2] REGTESTS: Remove REQUIRE_VERSION=2.1 from all tests

2024-05-29 Thread Tim Duesterhus
HAProxy 2.2 is the lowest supported version, thus this always matches. see 7aff1bf6b90caadfa95f6b43b526275191991d6f --- reg-tests/converter/sha2.vtc | 1 - reg-tests/sample_fetches/srv_name.vtc | 2 -- 2 files changed, 3 deletions(-) diff --git a/reg-tests/converter/sha2.vtc b/reg-tests

Re: [ANNOUNCE] haproxy-3.0.0

2024-05-29 Thread Willy Tarreau
Hi Tim, On Wed, May 29, 2024 at 07:48:10PM +0200, Tim Düsterhus wrote: > Hi > > On 5/29/24 17:07, Willy Tarreau wrote: > > HAProxy 3.0.0 was released on 2024/05/29. > > Congratulations on the successful release! Thanks! > I've just opened a PR for the "Official Docker Images" to add HAProxy 3.

[PATCH 1/3] CI: use "--no-install-recommends" for apt-get

2024-05-29 Thread Ilia Shipitsin
this reduces number of packages installed by 1 --- .github/workflows/coverity.yml | 2 +- .github/workflows/vtest.yml| 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/coverity.yml b/.github/workflows/coverity.yml index 0b3c4af91..18f4a251b 100644 --- a/.g

[PATCH 0/3] CI: preparation for Ubuntu 24.04

2024-05-29 Thread Ilia Shipitsin
GitHub has launched Ubuntu 24.04 runners in beta. While runners are not yet stable, switching to them has shown some inconsistance in pipeline which is better to be resolved before actual upgrade to Ubuntu 24.04 Ilia Shipitsin (3): CI: use "--no-install-recommends" for apt-get CI: switch to l

[PATCH 3/3] CI: use USE_PCRE2 instead of USE_PCRE

2024-05-29 Thread Ilia Shipitsin
USE_PCRE2 is recommended, I guess USE_PCRE is left unintentionally --- .github/matrix.py | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/matrix.py b/.github/matrix.py index d3ab890da..a9ab4424e 100755 --- a/.github/matrix.py +++ b/.github/matrix.py @@ -123,8 +12

[PATCH 2/3] CI: switch to lua 5.4

2024-05-29 Thread Ilia Shipitsin
current release is 5.4, let's switch to it --- .github/workflows/coverity.yml | 2 +- .github/workflows/vtest.yml| 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/coverity.yml b/.github/workflows/coverity.yml index 18f4a251b..82776148a 100644 --- a/.githu

Re: [PATCH 1/2] REGTESTS: Remove REQUIRE_VERSION=2.1 from all tests

2024-05-29 Thread Willy Tarreau
On Wed, May 29, 2024 at 07:55:32PM +0200, Tim Duesterhus wrote: > HAProxy 2.2 is the lowest supported version, thus this always matches. (...) Both patches applied, thank you Tim! Willy

Re: [PATCH 0/3] CI: preparation for Ubuntu 24.04

2024-05-29 Thread Willy Tarreau
On Wed, May 29, 2024 at 09:59:13PM +0200, Ilia Shipitsin wrote: > GitHub has launched Ubuntu 24.04 runners in beta. > While runners are not yet stable, switching to them > has shown some inconsistance in pipeline which is better > to be resolved before actual upgrade to Ubuntu 24.04 > > Ilia Ship