From 5ba20d6b58038d17f62fe4eb62611328a7ffd8d00894acac206b509493ca2ba0 Mon Sep 17 00:00:00 2001 From: Kristoffer Gronlund Date: Mon, 6 May 2019 11:18:23 +0000 Subject: [PATCH] Accepting request 700384 from home:KGronlund:branches:server:http - Update to version 1.8.20~git0.6fb9fadc: * [RELEASE] Released version 1.8.20 * BUG/MINOR: spoe: Don't systematically wakeup SPOE stream in the applet handler * BUG/MINOR: da: Get the request channel to call CHECK_HTTP_MESSAGE_FIRST() * BUG/MINOR: 51d: Get the request channel to call CHECK_HTTP_MESSAGE_FIRST() * BUG/MEDIUM: thread/http: Add missing locks in set-map and add-acl HTTP rules * BUG/MINOR: acl: properly detect pattern type SMP_T_ADDR * BUG/MEDIUM: maps: only try to parse the default value when it's present * BUG/MAJOR: http_fetch: Get the channel depending on the keyword used * MINOR: skip get_gmtime where tm is unused * BUILD/MINOR: listener: Silent a few signedness warnings. * BUG/MEDIUM: listener: make sure the listener never accepts too many conns * BUG/MEDIUM: listener: use a self-locked list for the dequeue lists * MAJOR: listener: do not hold the listener lock in listener_accept() * BUG/MEDIUM: list: fix incorrect pointer unlocking in LIST_DEL_LOCKED() * BUG/MEDIUM: list: fix again LIST_ADDQ_LOCKED * BUG/MEDIUM: list: correct fix for LIST_POP_LOCKED's removal of last element * MINOR: list: make the delete and pop operations idempotent * BUG/MEDIUM: list: add missing store barriers when updating elements and head * BUG/MEDIUM: list: fix LIST_POP_LOCKED's removal of the last pointer * BUG/MEDIUM: list: fix the rollback on addq in the locked liss * BUG/MEDIUM: lists: Properly handle the case we're removing the first elt. * MINOR: lists: Implement locked variations. * BUG/MINOR: threads: fix the process range of thread masks * BUG/MEDIUM: spoe: Return an error if nothing is encoded for fragmented messages * BUG/MEDIUM: spoe: Queue message only if no SPOE applet is attached to the stream * BUG/MEDIUM: pattern: assign pattern IDs after checking the config validity * BUILD: connection: fix naming of ip_v field * BUILD: use inttypes.h instead of stdint.h * BUG/MEDIUM: peers: fix a case where peer session is not cleanly reset on release. OBS-URL: https://build.opensuse.org/request/show/700384 OBS-URL: https://build.opensuse.org/package/show/server:http/haproxy?expand=0&rev=181 --- _service | 4 +-- _servicedata | 2 +- haproxy-1.8.19~git0.ebf033b4.tar.gz | 3 -- haproxy-1.8.20~git0.6fb9fadc.tar.gz | 3 ++ haproxy.changes | 54 +++++++++++++++++++++++++++++ haproxy.spec | 2 +- 6 files changed, 61 insertions(+), 7 deletions(-) delete mode 100644 haproxy-1.8.19~git0.ebf033b4.tar.gz create mode 100644 haproxy-1.8.20~git0.6fb9fadc.tar.gz diff --git a/_service b/_service index a070467..7541102 100644 --- a/_service +++ b/_service @@ -5,8 +5,8 @@ haproxy @PARENT_TAG@~git@TAG_OFFSET@.%h v(.*) - \1 - v1.8.19 + \1 + v1.8.20 enable diff --git a/_servicedata b/_servicedata index 81ca49d..a871554 100644 --- a/_servicedata +++ b/_servicedata @@ -5,4 +5,4 @@ http://git.haproxy.org/git/haproxy-1.7.git 640d526f8cdad00f7f5043b51f6a34f3f6ebb49f http://git.haproxy.org/git/haproxy-1.8.git - ebf033b47d58aa04ae9913038c9369dab8740411 \ No newline at end of file + 6fb9fadc5311cd00beb522a35596d3aa63f24fdb \ No newline at end of file diff --git a/haproxy-1.8.19~git0.ebf033b4.tar.gz b/haproxy-1.8.19~git0.ebf033b4.tar.gz deleted file mode 100644 index 6af3d20..0000000 --- a/haproxy-1.8.19~git0.ebf033b4.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1231c3b71879ad4ca7475a282458773fb0dc7566e68190dd883a67174f17a7ec -size 2139590 diff --git a/haproxy-1.8.20~git0.6fb9fadc.tar.gz b/haproxy-1.8.20~git0.6fb9fadc.tar.gz new file mode 100644 index 0000000..52b8209 --- /dev/null +++ b/haproxy-1.8.20~git0.6fb9fadc.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2532e32c049351060e35aa4d5fda51ca76e1c411b00b8578609134250cd06000 +size 2142728 diff --git a/haproxy.changes b/haproxy.changes index 422d407..49dc44c 100644 --- a/haproxy.changes +++ b/haproxy.changes @@ -1,3 +1,57 @@ +------------------------------------------------------------------- +Fri May 03 12:56:13 UTC 2019 - kgronlund@suse.com + +- Update to version 1.8.20~git0.6fb9fadc: + * [RELEASE] Released version 1.8.20 + * BUG/MINOR: spoe: Don't systematically wakeup SPOE stream in the applet handler + * BUG/MINOR: da: Get the request channel to call CHECK_HTTP_MESSAGE_FIRST() + * BUG/MINOR: 51d: Get the request channel to call CHECK_HTTP_MESSAGE_FIRST() + * BUG/MEDIUM: thread/http: Add missing locks in set-map and add-acl HTTP rules + * BUG/MINOR: acl: properly detect pattern type SMP_T_ADDR + * BUG/MEDIUM: maps: only try to parse the default value when it's present + * BUG/MAJOR: http_fetch: Get the channel depending on the keyword used + * MINOR: skip get_gmtime where tm is unused + * BUILD/MINOR: listener: Silent a few signedness warnings. + * BUG/MEDIUM: listener: make sure the listener never accepts too many conns + * BUG/MEDIUM: listener: use a self-locked list for the dequeue lists + * MAJOR: listener: do not hold the listener lock in listener_accept() + * BUG/MEDIUM: list: fix incorrect pointer unlocking in LIST_DEL_LOCKED() + * BUG/MEDIUM: list: fix again LIST_ADDQ_LOCKED + * BUG/MEDIUM: list: correct fix for LIST_POP_LOCKED's removal of last element + * MINOR: list: make the delete and pop operations idempotent + * BUG/MEDIUM: list: add missing store barriers when updating elements and head + * BUG/MEDIUM: list: fix LIST_POP_LOCKED's removal of the last pointer + * BUG/MEDIUM: list: fix the rollback on addq in the locked liss + * BUG/MEDIUM: lists: Properly handle the case we're removing the first elt. + * MINOR: lists: Implement locked variations. + * BUG/MINOR: threads: fix the process range of thread masks + * BUG/MEDIUM: spoe: Return an error if nothing is encoded for fragmented messages + * BUG/MEDIUM: spoe: Queue message only if no SPOE applet is attached to the stream + * BUG/MEDIUM: pattern: assign pattern IDs after checking the config validity + * BUILD: connection: fix naming of ip_v field + * BUILD: use inttypes.h instead of stdint.h + * BUG/MEDIUM: peers: fix a case where peer session is not cleanly reset on release. + * MINOR: cli: start addresses by a prefix in 'show cli sockets' + * BUG/MINOR: cli: correctly handle abns in 'show cli sockets' + * BUILD: Makefile: disable shared cache on AIX 5.1 + * BUILD: makefile: add _LINUX_SOURCE_COMPAT to build on AIX-51 + * BUILD: makefile: fix build of IPv6 header on aix51 + * MINOR: tools: make memvprintf() never pass a NULL target to vsnprintf() + * BUILD: makefile: work around an old bug in GNU make-3.80 + * BUG/MAJOR: checks: segfault during tcpcheck_main + * DOC: The option httplog is no longer valid in a backend. + * BUG/MEDIUM: ssl: ability to set TLS 1.3 ciphers using ssl-default-server-ciphersuites + * BUG/MINOR: http/counters: fix missing increment of fe->srv_aborts + * BUG/MAJOR: stats: Fix how huge POST data are read from the channel + * BUG/MAJOR: spoe: Fix initialization of thread-dependent fields + * BUG/MEDIUM: threads/fd: do not forget to take into account epoll_fd/pipes + * MEDIUM: threads: Use __ATOMIC_SEQ_CST when using the newer atomic API. + * BUG/MINOR: ssl: fix warning about ssl-min/max-ver support + * BUG/MEDIUM: 51d: fix possible segfault on deinit_51degrees() + * BUG/MEDIUM: logs: Only attempt to free startup_logs once. + * BUG/MINOR: listener: keep accept rate counters accurate under saturation + * BUG/MAJOR: listener: Make sure the listener exist before using it. + ------------------------------------------------------------------- Mon Feb 11 15:16:38 UTC 2019 - kgronlund@suse.com diff --git a/haproxy.spec b/haproxy.spec index 1d10df9..73bfac6 100644 --- a/haproxy.spec +++ b/haproxy.spec @@ -47,7 +47,7 @@ %endif Name: haproxy -Version: 1.8.19~git0.ebf033b4 +Version: 1.8.20~git0.6fb9fadc Release: 0 # #