forked from pool/haproxy
- Update to version 2.0.10+git0.ac198b92:
* [RELEASE] Released version 2.0.10 * SCRIPTS: git-show-backports: add "-s" to proposed cherry-pick commands * SCRIPTS: create-release: show the correct origin name in suggested commands * BUG/MAJOR: mux-h2: don't try to decode a response HEADERS frame in idle state * BUG/MAJOR: h2: make header field name filtering stronger * BUG/MAJOR: h2: reject header values containing invalid chars * MINOR: ist: add ist_find_ctl() * BUG/MINOR: ssl: fix curve setup with LibreSSL * BUG/MINOR: cli: fix out of bounds in -S parser * DOC: Add documentation about the use-service action * DOC: Add missing stats fields in the management manual * BUG/MINOR: mux-h1: Adjust header case when chunked encoding is add to a message * BUG/MINOR: mux-h1: Fix a UAF in cfg_h1_headers_case_adjust_postparser() * MEDIUM: mux-h1: Add the support of headers adjustment for bogus HTTP/1 apps * REGTEST: vtest can now enable mcli with its own flag * MINOR: stats: Report max times in addition of the averages for sessions * BUG/MINOR: stream-int: Fix si_cs_recv() return value * MINOR: contrib/prometheus-exporter: Add a param to ignore servers in maintenance * MINOR: contrib/prometheus-exporter: filter exported metrics by scope * MINOR: contrib/prometheus-exporter: report the number of idle conns per server * BUG/MINOR: contrib/prometheus-exporter: Rename some metrics * MINOR: contrib/prometheus-exporter: Report metrics about max times for sessions * MINOR: counters: Add fields to store the max observed for {q,c,d,t}_time * MINOR: stream: Remove the lock on the proxy to update time stats * MINOR: freq_ctr: Make the sliding window sums thread-safe * BUG/MINOR: http-ana: Properly catch aborts during the payload forwarding * BUG/MINOR: mux-h1: Fix tunnel mode detection on the response path * BUILD: debug: Avoid warnings in dev mode with -02 because of some BUG_ON tests * BUG/MEDIUM: stream-int: Don't loose events on the CS when an EOS is reported * BUILD/MINOR: ssl: fix compiler warning about useless statement * BUG/MINOR: peers: "peer alive" flag not reset when deconnecting. * BUG/MEDIUM: mworker: don't fill the -sf argument with -1 during the reexec OBS-URL: https://build.opensuse.org/package/show/server:http/haproxy?expand=0&rev=201
This commit is contained in:
parent
8d13208d60
commit
2f7b766fc1
2
_service
2
_service
@ -6,7 +6,7 @@
|
|||||||
<param name="versionformat">@PARENT_TAG@+git@TAG_OFFSET@.%h</param>
|
<param name="versionformat">@PARENT_TAG@+git@TAG_OFFSET@.%h</param>
|
||||||
<param name="versionrewrite-pattern">v(.*)</param>
|
<param name="versionrewrite-pattern">v(.*)</param>
|
||||||
<param name="versionrewrite-replacement">\1</param>
|
<param name="versionrewrite-replacement">\1</param>
|
||||||
<param name="revision">26b7b800</param>
|
<param name="revision">v2.0.10</param>
|
||||||
<param name="changesgenerate">enable</param>
|
<param name="changesgenerate">enable</param>
|
||||||
</service>
|
</service>
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<servicedata>
|
<servicedata>
|
||||||
<service name="tar_scm">
|
<service name="tar_scm">
|
||||||
<param name="url">http://git.haproxy.org/git/haproxy-2.0.git</param>
|
<param name="url">http://git.haproxy.org/git/haproxy-2.0.git</param>
|
||||||
<param name="changesrevision">26b7b8000e96e332fd39d114ac2ffb038e5a4386</param>
|
<param name="changesrevision">ac198b92d461515551b95daae20954b3053ce87e</param>
|
||||||
</service>
|
</service>
|
||||||
</servicedata>
|
</servicedata>
|
3
haproxy-2.0.10+git0.ac198b92.tar.gz
Normal file
3
haproxy-2.0.10+git0.ac198b92.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:39999c0c776f48a276777c555949b54f3ae2b5902e9ffa2fc3bfea4e90fe8601
|
||||||
|
size 2634798
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:03442b4b0d3be473fa992414044380261770d660c99828331c957446aa81eb71
|
|
||||||
size 2625294
|
|
@ -1,3 +1,40 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Nov 25 20:11:36 UTC 2019 - mrueckert@suse.de
|
||||||
|
|
||||||
|
- Update to version 2.0.10+git0.ac198b92:
|
||||||
|
* [RELEASE] Released version 2.0.10
|
||||||
|
* SCRIPTS: git-show-backports: add "-s" to proposed cherry-pick commands
|
||||||
|
* SCRIPTS: create-release: show the correct origin name in suggested commands
|
||||||
|
* BUG/MAJOR: mux-h2: don't try to decode a response HEADERS frame in idle state
|
||||||
|
* BUG/MAJOR: h2: make header field name filtering stronger
|
||||||
|
* BUG/MAJOR: h2: reject header values containing invalid chars
|
||||||
|
* MINOR: ist: add ist_find_ctl()
|
||||||
|
* BUG/MINOR: ssl: fix curve setup with LibreSSL
|
||||||
|
* BUG/MINOR: cli: fix out of bounds in -S parser
|
||||||
|
* DOC: Add documentation about the use-service action
|
||||||
|
* DOC: Add missing stats fields in the management manual
|
||||||
|
* BUG/MINOR: mux-h1: Adjust header case when chunked encoding is add to a message
|
||||||
|
* BUG/MINOR: mux-h1: Fix a UAF in cfg_h1_headers_case_adjust_postparser()
|
||||||
|
* MEDIUM: mux-h1: Add the support of headers adjustment for bogus HTTP/1 apps
|
||||||
|
* REGTEST: vtest can now enable mcli with its own flag
|
||||||
|
* MINOR: stats: Report max times in addition of the averages for sessions
|
||||||
|
* BUG/MINOR: stream-int: Fix si_cs_recv() return value
|
||||||
|
* MINOR: contrib/prometheus-exporter: Add a param to ignore servers in maintenance
|
||||||
|
* MINOR: contrib/prometheus-exporter: filter exported metrics by scope
|
||||||
|
* MINOR: contrib/prometheus-exporter: report the number of idle conns per server
|
||||||
|
* BUG/MINOR: contrib/prometheus-exporter: Rename some metrics
|
||||||
|
* MINOR: contrib/prometheus-exporter: Report metrics about max times for sessions
|
||||||
|
* MINOR: counters: Add fields to store the max observed for {q,c,d,t}_time
|
||||||
|
* MINOR: stream: Remove the lock on the proxy to update time stats
|
||||||
|
* MINOR: freq_ctr: Make the sliding window sums thread-safe
|
||||||
|
* BUG/MINOR: http-ana: Properly catch aborts during the payload forwarding
|
||||||
|
* BUG/MINOR: mux-h1: Fix tunnel mode detection on the response path
|
||||||
|
* BUILD: debug: Avoid warnings in dev mode with -02 because of some BUG_ON tests
|
||||||
|
* BUG/MEDIUM: stream-int: Don't loose events on the CS when an EOS is reported
|
||||||
|
* BUILD/MINOR: ssl: fix compiler warning about useless statement
|
||||||
|
* BUG/MINOR: peers: "peer alive" flag not reset when deconnecting.
|
||||||
|
* BUG/MEDIUM: mworker: don't fill the -sf argument with -1 during the reexec
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Nov 19 14:16:54 UTC 2019 - mrueckert@suse.de
|
Tue Nov 19 14:16:54 UTC 2019 - mrueckert@suse.de
|
||||||
|
|
||||||
|
@ -47,7 +47,7 @@
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
Name: haproxy
|
Name: haproxy
|
||||||
Version: 2.0.9+git6.26b7b800
|
Version: 2.0.10+git0.ac198b92
|
||||||
Release: 0
|
Release: 0
|
||||||
#
|
#
|
||||||
#
|
#
|
||||||
|
Loading…
Reference in New Issue
Block a user