forked from pool/haproxy
Accepting request 714216 from home:KGronlund:branches:server:http
- Update to version 2.0.1+git27.5db881ff: * BUG/MINOR: ssl: revert empty handshake detection in OpenSSL <= 1.0.2 * BUG/MEDIUM: servers: Don't forget to set srv_cs to NULL if we can't reuse it. * BUG/MEDIUM: stream-int: Don't rely on CF_WRITE_PARTIAL to unblock opposite si * MINOR: stream-int: Factorize processing done after sending data in si_cs_send() * BUG/MINOR: mux-h1: Don't process input or ouput if an error occurred * BUG/MEDIUM: mux-h1: Handle TUNNEL state when outgoing messages are formatted * BUG/MEDIUM: lb_fas: Don't test the server's lb_tree from outside the lock * BUG/MEDIUM: http/applet: Finish request processing when a service is registered * MINOR: action: Add the return code ACT_RET_DONE for actions * BUG/MINOR: contrib/prometheus-exporter: Don't try to add empty data blocks * MINOR: server: Add "no-tfo" option. * BUG/MEDIUM: sessions: Don't keep an extra idle connection in sessions. * BUG/MEDIUM: servers: Authorize tfo in default-server. * BUG/MEDIUM: connections: Make sure we're unsubscribe before upgrading the mux. * BUG/MINOR: contrib/prometheus-exporter: Respect the reserve when data are sent * BUG/MINOR: hlua/htx: Respect the reserve when HTX data are sent * BUG/MEDIUM: channel/htx: Use the total HTX size in channel_htx_recv_limit() * BUG/MINOR: hlua: Don't use channel_htx_recv_max() * BUG/MINOR: contrib/prometheus-exporter: Don't use channel_htx_recv_max() * BUG/MEDIUM: checks: Make sure the tasklet won't run if the connection is closed. * BUG/MEDIUM: connections: Always call shutdown, with no linger. * BUG/MINOR: mux-h1: Don't return the empty chunk on HEAD responses * BUG/MINOR: mux-h1: Skip trailers for non-chunked outgoing messages * BUG/MEDIUM: checks: unblock signals in external checks * BUG/MEDIUM: mux-h1: Always release H1C if a shutdown for writes was reported * BUG/MEDIUM: ssl: Don't attempt to set alpn if we're not using SSL. * BUG/MINOR: mworker/cli: don't output a \n before the response * BUG/MINOR: mux-h1: Make format errors during output formatting fatal * BUG/MEDIUM: mux-h1: Use buf_room_for_htx_data() to detect too large messages OBS-URL: https://build.opensuse.org/request/show/714216 OBS-URL: https://build.opensuse.org/package/show/server:http/haproxy?expand=0&rev=186
This commit is contained in:
parent
d8bbfd9540
commit
dd9924b71b
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">41dc8432</param>
|
||||
<param name="revision">master</param>
|
||||
<param name="changesgenerate">enable</param>
|
||||
</service>
|
||||
|
||||
|
@ -7,4 +7,4 @@
|
||||
<param name="url">http://git.haproxy.org/git/haproxy-1.8.git</param>
|
||||
<param name="changesrevision">6fb9fadc5311cd00beb522a35596d3aa63f24fdb</param></service><service name="tar_scm">
|
||||
<param name="url">http://git.haproxy.org/git/haproxy-2.0.git</param>
|
||||
<param name="changesrevision">41dc8432f87622145390dc1b1467a5ee14ba184c</param></service></servicedata>
|
||||
<param name="changesrevision">5db881ff0506bd5bb6caf9d80a06e79afa7473ca</param></service></servicedata>
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e33f45d9d84d8a45e7d98a28a0b78fad3603835c3c4577517c839ca9cb66efff
|
||||
size 2604832
|
3
haproxy-2.0.1+git27.5db881ff.tar.gz
Normal file
3
haproxy-2.0.1+git27.5db881ff.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:728a964b51d9438b5a4d0098fccbcc697f55869f10a273e4f47d8d00d99934f8
|
||||
size 2618306
|
@ -1,3 +1,53 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 09 11:48:41 UTC 2019 - kgronlund@suse.com
|
||||
|
||||
- Update to version 2.0.1+git27.5db881ff:
|
||||
* BUG/MINOR: ssl: revert empty handshake detection in OpenSSL <= 1.0.2
|
||||
* BUG/MEDIUM: servers: Don't forget to set srv_cs to NULL if we can't reuse it.
|
||||
* BUG/MEDIUM: stream-int: Don't rely on CF_WRITE_PARTIAL to unblock opposite si
|
||||
* MINOR: stream-int: Factorize processing done after sending data in si_cs_send()
|
||||
* BUG/MINOR: mux-h1: Don't process input or ouput if an error occurred
|
||||
* BUG/MEDIUM: mux-h1: Handle TUNNEL state when outgoing messages are formatted
|
||||
* BUG/MEDIUM: lb_fas: Don't test the server's lb_tree from outside the lock
|
||||
* BUG/MEDIUM: http/applet: Finish request processing when a service is registered
|
||||
* MINOR: action: Add the return code ACT_RET_DONE for actions
|
||||
* BUG/MINOR: contrib/prometheus-exporter: Don't try to add empty data blocks
|
||||
* MINOR: server: Add "no-tfo" option.
|
||||
* BUG/MEDIUM: sessions: Don't keep an extra idle connection in sessions.
|
||||
* BUG/MEDIUM: servers: Authorize tfo in default-server.
|
||||
* BUG/MEDIUM: connections: Make sure we're unsubscribe before upgrading the mux.
|
||||
* BUG/MINOR: contrib/prometheus-exporter: Respect the reserve when data are sent
|
||||
* BUG/MINOR: hlua/htx: Respect the reserve when HTX data are sent
|
||||
* BUG/MEDIUM: channel/htx: Use the total HTX size in channel_htx_recv_limit()
|
||||
* BUG/MINOR: hlua: Don't use channel_htx_recv_max()
|
||||
* BUG/MINOR: contrib/prometheus-exporter: Don't use channel_htx_recv_max()
|
||||
* BUG/MEDIUM: checks: Make sure the tasklet won't run if the connection is closed.
|
||||
* BUG/MEDIUM: connections: Always call shutdown, with no linger.
|
||||
* BUG/MINOR: mux-h1: Don't return the empty chunk on HEAD responses
|
||||
* BUG/MINOR: mux-h1: Skip trailers for non-chunked outgoing messages
|
||||
* BUG/MEDIUM: checks: unblock signals in external checks
|
||||
* BUG/MEDIUM: mux-h1: Always release H1C if a shutdown for writes was reported
|
||||
* BUG/MEDIUM: ssl: Don't attempt to set alpn if we're not using SSL.
|
||||
* BUG/MINOR: mworker/cli: don't output a \n before the response
|
||||
* BUG/MINOR: mux-h1: Make format errors during output formatting fatal
|
||||
* BUG/MEDIUM: mux-h1: Use buf_room_for_htx_data() to detect too large messages
|
||||
* BUG/MEDIUM: proto_htx: Don't add EOM on 1xx informational messages
|
||||
* BUG/MINOR: log: Detect missing sampling ranges in config
|
||||
* BUG/MINOR: memory: Set objects size for pools in the per-thread cache
|
||||
* BUG/MAJOR: mux-h1: Don't crush trash chunk area when outgoing message is formatted
|
||||
* BUG/MINOR: htx: Save hdrs_bytes when the HTX start-line is replaced
|
||||
* BUG/MEDIUM: ssl: Don't do anything in ssl_subscribe if we have no ctx.
|
||||
* BUG/MEDIUM: connections: Always add the xprt handshake if needed.
|
||||
* BUG/MEDIUM: stream_interface: Don't add SI_FL_ERR the state is < SI_ST_CON.
|
||||
* BUG/MINOR: spoe: Fix memory leak if failing to allocate memory
|
||||
* BUG/MEDIUM: mworker/cli: command pipelining doesn't work anymore
|
||||
* BUG/MEDIUM: mworker: don't call the thread and fdtab deinit
|
||||
* BUG/MINOR: mworker-prog: Fix segmentation fault during cfgparse
|
||||
* BUG/MAJOR: sample: Wrong stick-table name parsing in "if/unless" ACL condition.
|
||||
* BUG/MEDIUM: lb_fwlc: Don't test the server's lb_tree from outside the lock
|
||||
* BUG/MEDIUM: mux-h2: Remove the padding length when a DATA frame size is checked
|
||||
* BUG/MEDIUM: mux-h2: Reset padlen when several frames are demux
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Jun 30 10:24:18 UTC 2019 - Jan Engelhardt <jengelh@inai.de>
|
||||
|
||||
|
@ -47,7 +47,7 @@
|
||||
%endif
|
||||
|
||||
Name: haproxy
|
||||
Version: 2.0.0+git6.41dc8432
|
||||
Version: 2.0.1+git27.5db881ff
|
||||
Release: 0
|
||||
#
|
||||
#
|
||||
|
Loading…
Reference in New Issue
Block a user