forked from pool/haproxy
Accepting request 869992 from server:http
- Update to version 2.3.5+git0.5902ad99b: OBS-URL: https://build.opensuse.org/request/show/869992 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/haproxy?expand=0&rev=98
This commit is contained in:
commit
ea473019e8
2
_service
2
_service
@ -6,7 +6,7 @@
|
||||
<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">v2.3.4</param>
|
||||
<param name="revision">v2.3.5</param>
|
||||
<param name="changesgenerate">enable</param>
|
||||
</service>
|
||||
|
||||
|
@ -7,4 +7,4 @@
|
||||
<param name="url">http://git.haproxy.org/git/haproxy-2.2.git</param>
|
||||
<param name="changesrevision">34b2b106689c8a017eb5726193b199ea96f2c9f7</param></service><service name="tar_scm">
|
||||
<param name="url">http://git.haproxy.org/git/haproxy-2.3.git</param>
|
||||
<param name="changesrevision">10189c965bc2f4b397608855c437fdb01e29f73a</param></service></servicedata>
|
||||
<param name="changesrevision">5902ad99b977de485bb3d12066a1111b562c1834</param></service></servicedata>
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0dde80f03e60bebda4e79ee1f16c790bf45bbbc5295774d78eed5a586ea74aab
|
||||
size 2996015
|
3
haproxy-2.3.5+git0.5902ad99b.tar.gz
Normal file
3
haproxy-2.3.5+git0.5902ad99b.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6dd7ff49de53d171cb1f02c55b6748185c755beeddb78ebe3d437e4ee8b299ea
|
||||
size 3000443
|
@ -1,3 +1,63 @@
|
||||
-------------------------------------------------------------------
|
||||
Sat Feb 06 16:29:34 UTC 2021 - mrueckert@suse.de
|
||||
|
||||
- Update to version 2.3.5+git0.5902ad99b:
|
||||
* [RELEASE] Released version 2.3.5
|
||||
* MINOR: config: Deprecate and ignore tune.chksize global option
|
||||
* BUG/MINOR: sock: Unclosed fd in case of connection allocation failure
|
||||
* BUG/MEDIUM: mux-h2: do not quit the demux loop before setting END_REACHED
|
||||
* BUG/MEDIUM: mux-h2: handle remaining read0 cases
|
||||
* BUILD: Makefile: move REGTESTST_TYPE default setting
|
||||
* MINOR: cli/show_fd: report local and report ports when known
|
||||
* BUILD: ssl: fix build breakage with last commit
|
||||
* BUG/MINOR: ssl: do not try to use early data if not configured
|
||||
* BUG/MINOR: xxhash: make sure armv6 uses memcpy()
|
||||
* BUG/MINOR: mux_h2: fix incorrect stat titles
|
||||
* BUG/MEDIUM: ssl: check a connection's status before computing a handshake
|
||||
* BUG/MEDIUM: ssl/cli: abort ssl cert is freeing the old store
|
||||
* BUG/MINOR: stick-table: Always call smp_fetch_src() with a valid arg list
|
||||
* DOC: management: fix "show resolvers" alphabetical ordering
|
||||
* MINOR: h1: Raise the chunk size limit up to (2^52 - 1)
|
||||
* MINOR: mux-h1/show_fd: report as suspicious an entry with too many calls
|
||||
* MINOR: mux-h2/show_fd: report as suspicious an entry with too many calls
|
||||
* MINOR: ssl/show_fd: report some FDs as suspicious when possible
|
||||
* MINOR: cli/show_fd: report some easily detectable suspicious states
|
||||
* MINOR: cli: give the show_fd helpers the ability to report a suspicious entry
|
||||
* MINOR: mux-fcgi: make the "show fd" helper also decode the fstrm subscriber when known
|
||||
* MINOR: mux-h1: make the "show fd" helper also decode the h1s subscriber when known
|
||||
* MINOR: mux-h2: make the "show fd" helper also decode the h2s subscriber when known
|
||||
* MINOR: xprt/mux: export all *_io_cb functions so that "show fd" resolves them
|
||||
* MINOR: ssl: provide a "show fd" helper to report important SSL information
|
||||
* MINOR: xprt: add a new show_fd() helper to complete some "show fd" dumps.
|
||||
* MINOR: cli: make "show fd" also report the xprt and xprt_ctx
|
||||
* CLEANUP: cli: make "show fd" use a const connection to access other fields
|
||||
* CLEANUP: tools: make resolve_sym_name() take a const pointer
|
||||
* MINOR: contrib: Make the wireshark peers dissector compile for more distribs.
|
||||
* BUG/MINOR: backend: check available list allocation for reuse
|
||||
* BUG/MEDIUM: backend: never reuse a connection for tcp mode
|
||||
* REORG: backend: simplify conn_backend_get
|
||||
* BUG/MEDIUM: session: only retrieve ready idle conn from session
|
||||
* BUG/MINOR: ssl: init tmp chunk correctly in ssl_sock_load_sctl_from_file()
|
||||
* BUG/MINOR: config: fix leak on proxy.conn_src.bind_hdr_name
|
||||
* BUG/MEDIUM: filters/htx: Fix data forwarding when payload length is unknown
|
||||
* DOC: Improve documentation of the various hdr() fetches
|
||||
* BUILD/MINOR: lua: define _GNU_SOURCE for LLONG_MAX
|
||||
* BUG/MEDIUM: mux-h2: fix read0 handling on partial frames
|
||||
* BUG/MEDIUM: tcpcheck: Don't destroy connection in the wake callback context
|
||||
* BUG/MINOR: mworker: define _GNU_SOURCE for strsignal()
|
||||
* BUG/MINOR: mux_h2: missing space between "st" and ".flg" in the "show fd" helper
|
||||
* BUG/MINOR: peers: Wrong "new_conn" value for "show peers" CLI command.
|
||||
* MINOR: build: discard echoing in help target
|
||||
* BUG/MINOR: peers: Possible appctx pointer dereference.
|
||||
* BUG/MEDIUM: stats: add missing INF_BUILD_INFO definition
|
||||
* BUILD: peers: fix build warning about unused variable
|
||||
* BUG/MINOR: dns: SRV records ignores duplicated AR records (v2)
|
||||
* MINOR: peers: Add traces for peer control messages.
|
||||
* BUG/MINOR: threads: Fixes the number of possible cpus report for Mac.
|
||||
* MINOR: server: Forbid server definitions in frontend sections
|
||||
* MINOR: config: Add failifnotcap() to emit an alert on proxy capabilities
|
||||
* BUG/MINOR: init: Use a dynamic buffer to set HAPROXY_CFGFILES env variable
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 27 16:19:26 UTC 2021 - Callum Farmer <gmbr3@opensuse.org>
|
||||
|
||||
|
@ -53,7 +53,7 @@
|
||||
%endif
|
||||
|
||||
Name: haproxy
|
||||
Version: 2.3.4+git0.10189c965
|
||||
Version: 2.3.5+git0.5902ad99b
|
||||
Release: 0
|
||||
#
|
||||
#
|
||||
|
Loading…
Reference in New Issue
Block a user