pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/net/haproxy Update to haproxy 1.8.14.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/2678fa89c459
branches:  trunk
changeset: 325997:2678fa89c459
user:      morr <morr%pkgsrc.org@localhost>
date:      Thu Nov 29 09:02:37 2018 +0000

description:
Update to haproxy 1.8.14.

ChangeLog:

 Released version 1.8.13 with the following main changes :
    - MINOR: systemd: consider exit status 143 as successful
    - BUG/MINOR: ssl: properly ref-count the tls_keys entries
    - MINOR: mux: add a "show_fd" function to dump debugging information for "show fd"
    - MINOR: h2: implement a basic "show_fd" function
    - BUG/MINOR: h2: remove accidental debug code introduced with show_fd function
    - MINOR: h2: keep a count of the number of conn_streams attached to the mux
    - MINOR: h2: add the mux and demux buffer lengths on "show fd"
    - BUG/MEDIUM: h2: don't accept new streams if conn_streams are still in excess
    - BUG/MEDIUM: h2: never leave pending data in the output buffer on close
    - BUG/MEDIUM: h2: make sure the last stream closes the connection after a timeout
    - BUG/MINOR: http: Set brackets for the unlikely macro at the right place
    - BUILD: Generate sha256 checksums in publish-release
    - MINOR: debug: Add check for CO_FL_WILL_UPDATE
    - MINOR: debug: Add checks for conn_stream flags
    - BUG/MEDIUM: threads: Fix the exit condition of the thread barrier
    - MINOR: h2: add the error code and the max/last stream IDs to "show fd"
    - BUG/MEDIUM: stream-int: don't immediately enable reading when the buffer was reportedly full
    - BUG/MEDIUM: stats: don't ask for more data as long as we're responding
    - BUG/MINOR: servers: Don't make "server" in a frontend fatal.
    - BUG/MEDIUM: threads/sync: use sched_yield when available
    - BUG/MEDIUM: h2: prevent orphaned streams from blocking a connection forever
    - BUG/MINOR: config: stick-table is not supported in defaults section
    - BUG/MINOR: threads: Handle nbthread == MAX_THREADS.
    - BUG/MEDIUM: threads: properly fix nbthreads == MAX_THREADS
    - MINOR: threads: move "nbthread" parsing to hathreads.c
    - BUG/MEDIUM: threads: unbreak "bind" referencing an incorrect thread number
    - MEDIUM: proxy_protocol: Convert IPs to v6 when protocols are mixed
    - SCRIPTS: git-show-backports: add missing quotes to "echo"

Released version 1.8.14 with the following main changes :
    - BUG/MEDIUM: servers: check the queues once enabling a server
    - BUG/MEDIUM: queue: prevent a backup server from draining the proxy's connections
    - MINOR: dns: fix wrong score computation in dns_get_ip_from_response
    - MINOR: dns: new DNS options to allow/prevent IP address duplication
    - BUG/MEDIUM: lua: possible CLOSE-WAIT state with '\n' headers
    - MINOR: threads: Introduce double-width CAS on x86_64 and arm.
    - BUG/MEDIUM: threads: fix the double CAS implementation for ARMv7
    - MINOR: threads: add more consistency between certain variables in no-thread case
    - BUG/MEDIUM: threads: fix the no-thread case after the change to the sync point
    - MEDIUM: hathreads: implement a more flexible rendez-vous point
    - BUG/MEDIUM: cli: make "show fd" thread-safe
    - BUG/MINOR: ssl: empty connections reported as errors.
    - BUG/MEDIUM: ssl: fix missing error loading a keytype cert from a bundle.
    - BUG/MEDIUM: ssl: loading dh param from certifile causes unpredictable error.
    - BUG/MINOR: map: fix map_regm with backref
    - DOC: dns: explain set server ... fqdn requires resolver
    - DOC: ssl: Use consistent naming for TLS protocols
    - BUG/MEDIUM: lua: socket timeouts are not applied
    - BUG/MEDIUM: cli/threads: protect all "proxy" commands against concurrent updates
    - BUG/MEDIUM: cli/threads: protect some server commands against concurrent operations
    - DOC: Fix spelling error in configuration doc
    - BUG/MEDIUM: unix: provide a ->drain() function
    - BUG/MINOR: lua: Bad HTTP client request duration.
    - BUG/MEDIUM: mux_pt: dereference the connection with care in mux_pt_wake()
    - BUG/MEDIUM: lua: reset lua transaction between http requests
    - BUG/MEDIUM: hlua: Make sure we drain the output buffer when done.
    - BUG/MAJOR: thread: lua: Wrong SSL context initialization.
    - BUG/MEDIUM: hlua: Don't call RESET_SAFE_LJMP if SET_SAFE_LJMP returns 0.
    - BUG/MEDIUM: dns/server: fix incomatibility between SRV resolution and server state file
    - BUG/MEDIUM: ECC cert should work with TLS < v1.2 and openssl >= 1.1.1
    - MINOR: thread: implement HA_ATOMIC_XADD()
    - BUG/MINOR: stream: use atomic increments for the request counter
    - BUG/MEDIUM: session: fix reporting of handshake processing time in the logs
    - BUG/MEDIUM: h2: fix risk of memory leak on malformated wrapped frames
    - BUG/MINOR: dns: check and link servers' resolvers right after config parsing
    - BUG/MINOR: http/threads: atomically increment the error snapshot ID
    - BUG/MEDIUM: snapshot: take the proxy's lock while dumping errors
    - BUG/MAJOR: kqueue: Don't reset the changes number by accident.
    - BUG/MINOR: server: Crash when setting FQDN via CLI.
    - DOC: Fix typos in lua documentation
    - BUG/MEDIUM: patterns: fix possible double free when reloading a pattern list
    - BUG/MINOR: tools: fix set_net_port() / set_host_port() on IPv4
    - BUG/MINOR: cli: make sure the "getsock" command is only called on connections
    - BUG/CRITICAL: hpack: fix improper sign check on the header index value

diffstat:

 net/haproxy/Makefile |   4 ++--
 net/haproxy/distinfo |  10 +++++-----
 2 files changed, 7 insertions(+), 7 deletions(-)

diffs (30 lines):

diff -r d9c1814ccdee -r 2678fa89c459 net/haproxy/Makefile
--- a/net/haproxy/Makefile      Thu Nov 29 08:55:10 2018 +0000
+++ b/net/haproxy/Makefile      Thu Nov 29 09:02:37 2018 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.43 2018/07/09 07:37:02 morr Exp $
+# $NetBSD: Makefile,v 1.44 2018/11/29 09:02:37 morr Exp $
 
-DISTNAME=      haproxy-1.8.12
+DISTNAME=      haproxy-1.8.14
 CATEGORIES=    net www
 MASTER_SITES=  http://www.haproxy.org/download/${PKGVERSION_NOREV:R}/src/
 
diff -r d9c1814ccdee -r 2678fa89c459 net/haproxy/distinfo
--- a/net/haproxy/distinfo      Thu Nov 29 08:55:10 2018 +0000
+++ b/net/haproxy/distinfo      Thu Nov 29 09:02:37 2018 +0000
@@ -1,9 +1,9 @@
-$NetBSD: distinfo,v 1.38 2018/07/25 13:51:18 jperkin Exp $
+$NetBSD: distinfo,v 1.39 2018/11/29 09:02:37 morr Exp $
 
-SHA1 (haproxy-1.8.12.tar.gz) = f234549cf7d1c2dc113d441bacf23db131285e31
-RMD160 (haproxy-1.8.12.tar.gz) = b4f00d35bf54c06c1df8369021a12bc781c1606a
-SHA512 (haproxy-1.8.12.tar.gz) = 2b782a54988cc88d1af0e5f011af062910e8fac28eab13db7e05a58d0d23961f827da47e3871e8d081f5a2d222588480d81dec2e9f14ec9f54a1c3cb5bf3d56a
-Size (haproxy-1.8.12.tar.gz) = 2059925 bytes
+SHA1 (haproxy-1.8.14.tar.gz) = 589c6f933d73e8d6ba5307c8304cafb80e968481
+RMD160 (haproxy-1.8.14.tar.gz) = e8701ede3f33eaa03d857ef0cd70f49b07755a73
+SHA512 (haproxy-1.8.14.tar.gz) = 17727c19e0439a2b45be2ec583cd2ce30d1af2bf48bd3cdb2dce1eff670ab8b24d93eaa7bebb410947528d1ad88c3856495e498fff518620efbd32b9adf4eb66
+Size (haproxy-1.8.14.tar.gz) = 2070813 bytes
 SHA1 (patch-Makefile) = 30a778c6d83270ef672d14d6ae3fe7a1126fea53
 SHA1 (patch-src_cli.c) = 4bc5cf0116df121ac4c3c38b8f962c3a62d536e5
 SHA1 (patch-src_haproxy.c) = badb172013541087d84f03726ea928c6f5634dc3



Home | Main Index | Thread Index | Old Index