Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package haproxy for openSUSE:Factory checked in at 2025-11-27 15:20:07 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/haproxy (Old) and /work/SRC/openSUSE:Factory/.haproxy.new.14147 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "haproxy" Thu Nov 27 15:20:07 2025 rev:172 rq:1320231 version:3.3.0+git0.7832fb21f Changes: -------- --- /work/SRC/openSUSE:Factory/haproxy/haproxy.changes 2025-11-21 16:56:51.034795753 +0100 +++ /work/SRC/openSUSE:Factory/.haproxy.new.14147/haproxy.changes 2025-11-27 15:20:13.029579266 +0100 @@ -1,0 +2,12 @@ +Wed Nov 26 15:48:38 UTC 2025 - Marcus Rueckert <[email protected]> + +- Update to version 3.3.0+git0.7832fb21f: + https://www.haproxy.com/blog/announcing-haproxy-3-3 + https://www.mail-archive.com/[email protected]/msg46300.html +- refresh patches: + haproxy-1.6.0-makefile_lib.patch + haproxy-1.6.0-sec-options.patch +- enable USE_KTLS +- prepare ech/quic support + +------------------------------------------------------------------- Old: ---- haproxy-3.2.9+git0.170436929.tar.gz New: ---- haproxy-3.3.0+git0.7832fb21f.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ haproxy.spec ++++++ --- /var/tmp/diff_new_pack.hC06ms/_old 2025-11-27 15:20:14.089623967 +0100 +++ /var/tmp/diff_new_pack.hC06ms/_new 2025-11-27 15:20:14.089623967 +0100 @@ -46,8 +46,10 @@ %bcond_with tmpfiles %endif +%bcond_with ech + Name: haproxy -Version: 3.2.9+git0.170436929 +Version: 3.3.0+git0.7832fb21f Release: 0 # Summary: The Reliable, High Performance TCP/HTTP Load Balancer @@ -121,6 +123,7 @@ USE_RELRO_NOW=1 \ USE_STACKPROTECTOR=1 \ USE_PIE=1 \ + USE_KTLS=1 \ USE_PCRE2=1 \ %if %{with pcre2_jit} USE_PCRE2_JIT=1 \ @@ -133,6 +136,10 @@ USE_OPENSSL_AWSLC=1 \ %else USE_OPENSSL=1 \ +%if %{with ech} + USE_QUIC_OPENSSL_COMPAT=1 \ + USE_ECH=1 \ +%endif %endif USE_LUA=1 \ USE_ZLIB=1 \ ++++++ _service ++++++ --- /var/tmp/diff_new_pack.hC06ms/_old 2025-11-27 15:20:14.157626834 +0100 +++ /var/tmp/diff_new_pack.hC06ms/_new 2025-11-27 15:20:14.161627003 +0100 @@ -1,12 +1,12 @@ <services> <service name="tar_scm" mode="manual"> - <param name="url">http://git.haproxy.org/git/haproxy-3.2.git/</param> + <param name="url">http://git.haproxy.org/git/haproxy-3.3.git/</param> <param name="scm">git</param> <param name="filename">haproxy</param> <param name="versionformat">@PARENT_TAG@+git@TAG_OFFSET@.%h</param> <param name="versionrewrite-pattern">v(.*)</param> <param name="versionrewrite-replacement">\1</param> - <param name="revision">v3.2.9</param> + <param name="revision">v3.3.0</param> <param name="changesgenerate">enable</param> </service> ++++++ _servicedata ++++++ --- /var/tmp/diff_new_pack.hC06ms/_old 2025-11-27 15:20:14.181627847 +0100 +++ /var/tmp/diff_new_pack.hC06ms/_new 2025-11-27 15:20:14.185628015 +0100 @@ -3,6 +3,10 @@ <param name="url">http://git.haproxy.org/git/haproxy-3.2.git/</param> <param name="changesrevision">170436929ac78cfc4d1a43b3340535e1ac4d00d8</param> </service> + <service name="tar_scm"> + <param name="url">http://git.haproxy.org/git/haproxy-3.3.git/</param> + <param name="changesrevision">7832fb21fe2dd11ce44e996d8e86802731b871b2</param> + </service> </servicedata> (No newline at EOF) ++++++ haproxy-1.6.0-makefile_lib.patch ++++++ --- /var/tmp/diff_new_pack.hC06ms/_old 2025-11-27 15:20:14.209629027 +0100 +++ /var/tmp/diff_new_pack.hC06ms/_new 2025-11-27 15:20:14.221629533 +0100 @@ -1,8 +1,8 @@ -Index: haproxy-3.2/Makefile +Index: haproxy-3.3/Makefile =================================================================== ---- haproxy-3.2.orig/Makefile -+++ haproxy-3.2/Makefile -@@ -794,7 +794,7 @@ ifneq ($(USE_PCRE:0=)$(USE_STATIC_PCRE:0 +--- haproxy-3.3.orig/Makefile ++++ haproxy-3.3/Makefile +@@ -799,7 +799,7 @@ ifneq ($(USE_PCRE:0=)$(USE_STATIC_PCRE:0 PCREDIR := $(shell $(PCRE_CONFIG) --prefix 2>/dev/null || echo /usr/local) ifneq ($(PCREDIR),) PCRE_INC := $(PCREDIR)/include @@ -11,7 +11,7 @@ endif PCRE_CFLAGS := $(if $(PCRE_INC),-I$(PCRE_INC)) -@@ -812,7 +812,7 @@ ifneq ($(USE_PCRE2:0=)$(USE_STATIC_PCRE2 +@@ -817,7 +817,7 @@ ifneq ($(USE_PCRE2:0=)$(USE_STATIC_PCRE2 PCRE2DIR := $(shell $(PCRE2_CONFIG) --prefix 2>/dev/null || echo /usr/local) ifneq ($(PCRE2DIR),) PCRE2_INC := $(PCRE2DIR)/include ++++++ haproxy-1.6.0-sec-options.patch ++++++ --- /var/tmp/diff_new_pack.hC06ms/_old 2025-11-27 15:20:14.241630377 +0100 +++ /var/tmp/diff_new_pack.hC06ms/_new 2025-11-27 15:20:14.245630546 +0100 @@ -4,21 +4,21 @@ SUSE: Makefile sec options -Index: haproxy-3.2/Makefile +Index: haproxy-3.3/Makefile =================================================================== ---- haproxy-3.2.orig/Makefile -+++ haproxy-3.2/Makefile -@@ -346,7 +346,8 @@ use_opts = USE_EPOLL USE_KQUEUE USE_NETF - USE_THREAD_DUMP USE_EVPORTS USE_OT USE_QUIC USE_PROMEX \ - USE_MEMORY_PROFILING \ +--- haproxy-3.3.orig/Makefile ++++ haproxy-3.3/Makefile +@@ -351,7 +351,8 @@ use_opts = USE_EPOLL USE_KQUEUE USE_NETF + USE_MEMORY_PROFILING USE_SHM_OPEN \ USE_STATIC_PCRE USE_STATIC_PCRE2 \ -- USE_PCRE USE_PCRE_JIT USE_PCRE2 USE_PCRE2_JIT USE_QUIC_OPENSSL_COMPAT -+ USE_PCRE USE_PCRE_JIT USE_PCRE2 USE_PCRE2_JIT USE_QUIC_OPENSSL_COMPAT \ + USE_PCRE USE_PCRE_JIT USE_PCRE2 USE_PCRE2_JIT \ +- USE_QUIC_OPENSSL_COMPAT USE_KTLS ++ USE_QUIC_OPENSSL_COMPAT USE_KTLS \ + USE_PIE USE_STACKPROTECTOR USE_RELRO_NOW # preset all variables for all supported build options among use_opts $(reset_opts_vars) -@@ -897,6 +898,35 @@ ifneq ($(TRACE),) +@@ -902,6 +903,35 @@ ifneq ($(TRACE),) COPTS += -finstrument-functions endif ++++++ haproxy-3.2.9+git0.170436929.tar.gz -> haproxy-3.3.0+git0.7832fb21f.tar.gz ++++++ ++++ 62471 lines of diff (skipped)
