From d5c60af0ba5c02af85f384e42fa03bf132498cdc Mon Sep 17 00:00:00 2001 From: Tristan Date: Sun, 4 Sep 2022 02:01:18 +0100 Subject: [PATCH] Update HAProxy 2.6 to 2.6.5 --- .gitlab-ci.yml | 6 +++--- haproxy/Makefile | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index de89e57..f14b0cd 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -23,9 +23,9 @@ variables: &default-variables .haproxy_stable: &haproxy-stable HAPROXY_GITREPO: "https://git.haproxy.org/?p=haproxy-2.6.git" - HAPROXY_VERSION: 2.6.4 - # https://git.haproxy.org/?p=haproxy-2.6.git;a=commit;h=2a2078cbac2c2f84e0c25730b61f3ffbe891dd4d - HAPROXY_GITREF: 2a2078cbac2c2f84e0c25730b61f3ffbe891dd4d + HAPROXY_VERSION: 2.6.5 + # https://git.haproxy.org/?p=haproxy-2.6.git;a=commit;h=987a4e248bbccf4bffe955b27ccfbcbb626348c2 + HAPROXY_GITREF: 987a4e248bbccf4bffe955b27ccfbcbb626348c2 .haproxy_dev: &haproxy-dev HAPROXY_GITREPO: "https://git.haproxy.org/?p=haproxy.git" diff --git a/haproxy/Makefile b/haproxy/Makefile index 7043f8e..1eb4932 100644 --- a/haproxy/Makefile +++ b/haproxy/Makefile @@ -1,6 +1,6 @@ HAPROXY_GITREPO = https://git.haproxy.org/?p=haproxy-2.6.git -HAPROXY_VERSION = 2.6.4 -HAPROXY_GITREF = 2a2078cbac2c2f84e0c25730b61f3ffbe891dd4d +HAPROXY_VERSION = 2.6.5 +HAPROXY_GITREF = 987a4e248bbccf4bffe955b27ccfbcbb626348c2 HAPROXY_SHORTSHA = $(shell echo "$(HAPROXY_GITREF)" | grep -Eo '^.{7}' || echo "$(HAPROXY_GITREF)") HAPROXY_VERSION_MINOR = $(shell echo "$(HAPROXY_VERSION)" | cut -d'.' -f1-2)