Sync from SUSE:SLFO:Main haproxy revision 06badce58fa9d16c9b30fceae1798842

This commit is contained in:
Adrian Schröter 2025-02-07 18:08:07 +01:00
parent 8159ab997f
commit 7ee1d2b632
6 changed files with 149 additions and 9 deletions

View File

@ -1,12 +1,12 @@
<services>
<service name="tar_scm" mode="manual">
<param name="url">http://git.haproxy.org/git/haproxy-3.0.git/</param>
<param name="url">http://git.haproxy.org/git/haproxy-3.1.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.0.6</param>
<param name="revision">v3.1.3</param>
<param name="changesgenerate">enable</param>
</service>

View File

@ -1,6 +1,6 @@
<servicedata>
<service name="tar_scm">
<param name="url">http://git.haproxy.org/git/haproxy-3.0.git/</param>
<param name="changesrevision">c2c009086d300d0f86b1274e0b9ba7cb798f3e1d</param>
<param name="url">http://git.haproxy.org/git/haproxy-3.1.git/</param>
<param name="changesrevision">929bedf83c79cfb8e4eb40921539cd135f8ec818</param>
</service>
</servicedata>

BIN
haproxy-3.0.6+git0.c2c009086.tar.gz (Stored with Git LFS)

Binary file not shown.

BIN
haproxy-3.1.3+git0.929bedf83.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -1,3 +1,143 @@
-------------------------------------------------------------------
Wed Jan 29 15:41:08 UTC 2025 - mrueckert@suse.de
- Update to version 3.1.3+git0.929bedf83:
* [RELEASE] Released version 3.1.3
* BUILD: ssl: more cleaner approach to WolfSSL without renegotiation
* BUILD: ssl: allow to build without the renegotiation API of WolfSSL
* CLEANUP: quic: remove unused prototype
* BUG/MINOR: stream: Properly handle "on-marked-up shutdown-backup-sessions"
* BUG/MINOR: ssl: put ssl_sock_load_ca under SSL_NO_GENERATE_CERTIFICATES
* BUG/MINOR: quic: do not increase congestion window if app limited
* BUG/MEDIUM: mux-h1: Properly close H1C if an error is reported before sending data
* BUILD: quic: Move an ASSUME_NONNULL() for variable which is not null
* MINOR: quic: Add a BUG_ON() on quic_tx_packet refcount
* BUG/MINOR: quic: ensure a detached coalesced packet can't access its neighbours
* BUG/MINOR: init: set HAPROXY_STARTUP_VERSION from the variable, not the macro
* BUG/MAJOR: log/sink: possible sink collision in sink_new_from_srv()
* BUG/MAJOR: quic: reject too large CRYPTO frames
* BUG/MEDIUM: promex: Use right context pointers to dump backends extra-counters
* BUG/MEDIUM: stktable: fix missing lock on some table converters
* BUG/MINOR: quic: reject NEW_TOKEN frames from clients
* BUG/MINOR: stktable: fix big-endian compatiblity in smp_to_stkey()
-------------------------------------------------------------------
Wed Jan 29 15:40:52 UTC 2025 - mrueckert@suse.de
- Update to version 3.1.2+git0.cda631a79:
* [RELEASE] Released version 3.1.2
* BUG/MEDIUM: h1-htx: Properly handle bodyless messages
* BUG/MEDIUM: promex/resolvers: Don't dump metrics if no nameserver is defined
* BUG/MINOR: mux-quic: handle closure of uni-stream
* MINOR: mux-quic: change return value of qcs_attach_sc()
* MINOR: mux-quic: add traces on sd attach
* BUG/MINOR: mux-quic: fix wakeup on qcc_set_error()
* MINOR: config: Alert about extra arguments for errorfile and errorloc
* BUG/MINOR: log: Allow to use if/unless conditionnals for do-log action
* BUG/MEDIUM: mux-quic: do not attach on already closed stream
* BUG/MAJOR: mux-quic: properly fix BUG_ON on empty STREAM emission
* Revert "BUG/MAJOR: mux-quic: fix BUG_ON on empty STREAM emission"
* BUG/MEDIUM: mux-h2: Count copied data when looping on RX bufs in h2_rcv_buf()
* BUG/MAJOR: mux-quic: fix BUG_ON on empty STREAM emission
* DOC: config: add missing "track-sc0" in action keywords matrix
* BUG/MINOR: stats: fix segfault caused by uninitialized value in "show schema json"
* BUG/MEDIUM: queue: Make process_srv_queue return the number of streams
* MINOR: hlua: rename "tune.lua.preserve-smp-bool" to "tune.lua.bool-sample-conversion"
* BUG/MINOR: h2/rhttp: fix HTTP2 conn counters on reverse
* CLEANUP: mux-quic: remove dead err label in qcc_build_frms()
* BUG/MEDIUM: mux-quic: prevent BUG_ON() by refreshing frms on MAX_DATA
* REGTESTS: fix lua-based regtests using tune.lua.smp-preserve-bool
* MINOR: hlua: add option to preserve bool type from smp to lua
* DOC: config: add "tune.lua.burst-timeout" to the list of global parameters
* DOC: config: reorder "tune.lua.*" keywords by alphabetical order
* DOC: config: add example for server "track" keyword
* MINOR: mux-quic: hide traces when woken up on pacing only
* MINOR: trace: implement tracing disabling API
* MEDIUM: mux-quic: remove pacing specific code on qcc_io_cb
* MEDIUM/OPTIM: mux-quic: do not rebuild frms list on every send
* MINOR: mux-quic: split STREAM and RS/SS emission
* MINOR: mux-quic: extract code to build STREAM frames list
* MEDIUM/OPTIM: mux-quic: implement purg_list
* MEDIUM/OPTIM: mux-quic: define a recv_list for demux resumption
* MINOR: mux-quic: refactor wait-for-handshake support
* MINOR: quic: add traces
* CLEANUP: mux-quic: remove unused qcc member send_retry_list
* BUG/MEDIUM: mux-quic: do not mix qcc_io_send() return codes with pacing
* BUILD: debug: only dump/reset glitch counters when really defined
* BUG/MEDIUM: queues: Do not use pendconn_grab_from_px().
* BUG/MEDIUM: queues: Make sure we call process_srv_queue() when leaving
* BUG/MEDIUM: stconn: Only consider I/O timers to update stream's expiration date
* CLEANUP: quic: Rename some BBR functions in relation with bw probing
* BUG/MINOR: quic: missing Startup accelerating probing bw states
* REGTESTS: ssl: add a PEM with mix of LF and CRLF line endings
* BUG/MINOR: cli: cli_snd_buf: preserve \r\n for payload lines
* BUG/MINOR: quic: too permissive exit condition for high loss detection in Startup (BBR)
* BUG/MINOR: quic: fix the wrong tracked recovery start time value
* CLEANUP: quic: remove a wrong comment about ->app_limited (drs)
* MINOR: quic: reduce the private data size of QUIC cc algos
* BUG/MINOR: quic: reduce packet losses at least during ProbeBW_CRUISE (BBR)
* BUG/MINOR: quic: underflow issue for bbr_inflight_hi_from_lost_packet()
* BUG/MINOR: quic: remove max_bw filter from delivery rate sampling
* BUG/MINOR: quic: wrong bbr_target_inflight() implementation
* BUG/MINOR: quic: fix BBB max bandwidth oscillation issue.
* BUG/MINOR: quic: wrong logical statement in in_recovery_period() (BBR)
* MINOR: window_filter: rely on the time to update the filter samples (QUIC/BBR)
-------------------------------------------------------------------
Thu Dec 12 15:13:23 UTC 2024 - mrueckert@suse.de
- Update to version 3.1.1+git0.717960de0:
* [RELEASE] Released version 3.1.1
* BUG/MINOR: hlua_fcn: restore server pairs iterator pointer consistency
* BUG/MINOR: server-state: Fix expiration date of srvrq_check tasks
* BUG/MINOR: http-fetch: Ignore empty argument string for query()
* BUG/MEDIUM: stats/server: use watcher to track server during stats dump
* MINOR: list: define a watcher type
* BUG/MINOR: stats: decrement srv refcount on stats-file release
* BUG/MINOR: resolvers: handle a possible strdup() failure
* BUG/MINOR: ssl_crtlist: handle a possible strdup() failure
* BUG/MINOR: namespace: handle a possible strdup() failure
* BUG/MEDIUM: mworker: report status, if daemonized master fails
* BUG/MEDIUM: startup: report status if daemonized process fails
* BUG/MEDIUM: startup: don't daemonize if started with -c
* BUG/MINOR: startup: fix error path for master, if can't open pidfile
* BUG/MINOR: mworker: fix -D -W -sf/-st modes
* BUG/MINOR: mworker: don't save program PIDs in oldpids
* BUG/MINOR: mux-h2: fix expression when detecting excess of CONTINUATION frames
* MINOR: mux-h2/glitches: add a description to the H2 glitches
* CLEANUP: mux-h2/traces: reword certain ambiguous traces
* MINOR: mux-h2/traces: add a missing trace on negative initial window size
* BUILD: debug: fix build issues in COUNT_IF() with -Wunused-value
* BUG/MINOR: debug: COUNT_IF() should return true/false
* DOC: config: fix confusing init-state examples
* BUG/MINOR: config: Fix parsing of accept-invalid-http-{request,response}
* BUG/MEDIUM: mux-h2: make sure not to touch dummy streams when sending WU
* BUG/MINOR: quic: remove startup alert if GSO unsupported
* BUG/MINOR: quic: remove startup alert if conn socket-owner unsupported
* BUG/MEDIUM: mux-quic: remove pacing status when everything is sent
* BUG/MINOR: init: do not call fork_poller() for non-forked processes
* BUG/MEDIUM: init: make sure only daemonized processes change their session
* BUG/MINOR: quic: fix bbr_inflight() calls with wrong gain value
* BUG/MINOR: startup: fix pidfile creation
* BUG/MINOR: startup: close pidfd and free global.pidfile in handle_pidfile()
* BUG/MINOR: signal: register default handler for SIGINT in signal_init()
* BUILD: quic: fix a build error about an non initialized timestamp
* BUG/MINOR: h1-htx: Use default reason if not set when formatting the response
* BUG/MEDIUM: http-ana: Reset request flag about data sent to perform a L7 retry
* BUG/MEDIUM: quic: prevent stream freeze on pacing
* BUG/MEDIUM: event_hdl: fix uninitialized value in async mode when no data is provided
* BUG/MINOR: improve BBR throughput on very fast links
* BUG/MINOR: log: fix lf_text() behavior with empty string
* MINOR: proxy: Add support of 421-Misdirected-Request in retry-on status
* BUG/MEDIUM: sock: Remove FD_POLL_HUP during connect() if FD_POLL_ERR is not set
-------------------------------------------------------------------
Tue Nov 26 14:57:39 UTC 2024 - mrueckert@suse.de
- Update to version 3.1.0+git0.f2b97918e:
https://www.mail-archive.com/haproxy@formilux.org/msg45435.html
https://www.haproxy.com/blog/announcing-haproxy-3-1
-------------------------------------------------------------------
Thu Nov 07 18:40:53 UTC 2024 - mrueckert@suse.de

View File

@ -53,7 +53,7 @@
%endif
Name: haproxy
Version: 3.0.6+git0.c2c009086
Version: 3.1.3+git0.929bedf83
Release: 0
#
#
@ -270,7 +270,7 @@ getent passwd %{pkg_name} >/dev/null || \
%files
%defattr(-,root,root,-)
%license LICENSE
%doc CHANGELOG README
%doc CHANGELOG README.md
%doc doc/* examples/
%doc admin/netsnmp-perl/ admin/selinux/
%dir %attr(-,root,haproxy) %{_sysconfdir}/%{pkg_name}