Received: by mail.netbsd.org (Postfix, from userid 605) id 860C884DB6; Mon, 30 Dec 2019 13:57:42 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 0C99284D4E for ; Mon, 30 Dec 2019 13:57:42 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id NvzV91cH4sWG for ; Mon, 30 Dec 2019 13:57:41 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 1B2B884C85 for ; Mon, 30 Dec 2019 13:57:41 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 0F316FA97; Mon, 30 Dec 2019 13:57:41 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_15777142615660" MIME-Version: 1.0 Date: Mon, 30 Dec 2019 13:57:41 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/net/haproxy To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20191230135741.0F316FA97@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_15777142615660 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Mon Dec 30 13:57:40 UTC 2019 Modified Files: pkgsrc/net/haproxy: Makefile distinfo Log Message: haproxy: updated to 2.0.12 2.0.12 - DOC: Improve documentation of http-re(quest|sponse) replace-(header|value|uri) - DOC: clarify the fact that replace-uri works on a full URI - BUG/MINOR: sample: fix the closing bracket and LF in the debug converter - BUG/MINOR: sample: always check converters' arguments - BUG/MEDIUM: ssl: Don't set the max early data we can receive too early. - MINOR: task: only check TASK_WOKEN_ANY to decide to requeue a task - BUG/MAJOR: task: add a new TASK_SHARED_WQ flag to fix foreing requeuing - BUG/MEDIUM: ssl: Revamp the way early data are handled. - MINOR: fd/threads: make _GET_NEXT()/_GET_PREV() use the volatile attribute - BUG/MEDIUM: fd/threads: fix a concurrency issue between add and rm on the same fd - BUG/MINOR: ssl: openssl-compat: Fix getm_ defines - BUG/MEDIUM: stream: Be sure to never assign a TCP backend to an HTX stream - BUILD: ssl: improve SSL_CTX_set_ecdh_auto compatibility 2.0.11 - BUG/MINOR: stream: init variables when the list is empty - BUG/MINOR: contrib/prometheus-exporter: Use HTX errors and not legacy ones - BUG/MINOR: contrib/prometheus-exporter: decode parameter and value only - BUG/MINOR: http-htx: Don't make http_find_header() fail if the value is empty - DOC: Clarify behavior of server maxconn in HTTP mode - DOC: clarify matching strings on binary fetches - DOC: move the "group" keyword at the right place - BUG/MEDIUM: stream-int: don't subscribed for recv when we're trying to flush data - BUG/MINOR: stream-int: avoid calling rcv_buf() when splicing is still possible - BUG/MEDIUM: listener/thread: fix a race when pausing a listener - BUG/MINOR: ssl: certificate choice can be unexpected with openssl >= 1.1.1 - BUG/MEDIUM: mux-h1: Never reuse H1 connection if a shutw is pending - BUG/MINOR: mux-h1: Don't rely on CO_FL_SOCK_RD_SH to set H1C_F_CS_SHUTDOWN - BUG/MINOR: mux-h1: Fix conditions to know whether or not we may receive data - BUG/MEDIUM: tasks: Make sure we switch wait queues in task_set_affinity(). - BUG/MEDIUM: checks: Make sure we set the task affinity just before connecting. - BUG/MINOR: mux-h1: Be sure to set CS_FL_WANT_ROOM when EOM can't be added - BUG/MINOR: proxy: make soft_stop() also close FDs in LI_PAUSED state - BUG/MINOR: listener/threads: always use atomic ops to clear the FD events - BUG/MINOR: listener: also clear the error flag on a paused listener - BUG/MEDIUM: listener/threads: fix a remaining race in the listener's accept() - DOC: document the listener state transitions - BUG/MAJOR: dns: add minimalist error processing on the Rx path - BUG/MEDIUM: proto_udp/threads: recv() and send() must not be exclusive. - BUG/MEDIUM: kqueue: Make sure we report read events even when no data. - DOC: listeners: add a few missing transitions - BUG/MINOR: tasks: only requeue a task if it was already in the queue - DOC: proxies: HAProxy only supports 3 connection modes - BUILD/MINOR: ssl: shut up a build warning about format truncation - BUILD/MINOR: tools: shut up the format truncation warning in get_gmt_offset() - BUILD: do not disable -Wformat-truncation anymore - DOC: remove references to the outdated architecture.txt - BUG/MINOR: log: fix minor resource leaks on logformat error path - BUG/MINOR: mworker: properly pass SIGTTOU/SIGTTIN to workers - BUG/MINOR: listener: do not immediately resume on transient error - BUG/MINOR: server: make "agent-addr" work on default-server line - BUG/MINOR: listener: fix off-by-one in state name check - BUILD/MINOR: unix sockets: silence an absurd gcc warning about strncpy() To generate a diff of this commit: cvs rdiff -u -r1.55 -r1.56 pkgsrc/net/haproxy/Makefile cvs rdiff -u -r1.48 -r1.49 pkgsrc/net/haproxy/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_15777142615660 Content-Disposition: inline Content-Length: 1811 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/haproxy/Makefile diff -u pkgsrc/net/haproxy/Makefile:1.55 pkgsrc/net/haproxy/Makefile:1.56 --- pkgsrc/net/haproxy/Makefile:1.55 Wed Dec 4 07:50:35 2019 +++ pkgsrc/net/haproxy/Makefile Mon Dec 30 13:57:40 2019 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.55 2019/12/04 07:50:35 morr Exp $ +# $NetBSD: Makefile,v 1.56 2019/12/30 13:57:40 adam Exp $ -DISTNAME= haproxy-2.0.10 +DISTNAME= haproxy-2.0.12 CATEGORIES= net www MASTER_SITES= https://www.haproxy.org/download/${PKGVERSION_NOREV:R}/src/ Index: pkgsrc/net/haproxy/distinfo diff -u pkgsrc/net/haproxy/distinfo:1.48 pkgsrc/net/haproxy/distinfo:1.49 --- pkgsrc/net/haproxy/distinfo:1.48 Wed Dec 4 07:50:35 2019 +++ pkgsrc/net/haproxy/distinfo Mon Dec 30 13:57:40 2019 @@ -1,9 +1,9 @@ -$NetBSD: distinfo,v 1.48 2019/12/04 07:50:35 morr Exp $ +$NetBSD: distinfo,v 1.49 2019/12/30 13:57:40 adam Exp $ -SHA1 (haproxy-2.0.10.tar.gz) = 7a81094c367621a981012480cebc7c152c482d75 -RMD160 (haproxy-2.0.10.tar.gz) = 1bcb2e039698cc9b90f93ef3bf265dcb956c59e1 -SHA512 (haproxy-2.0.10.tar.gz) = d3f0c0a7cce49d394dda7553ed79102cfef2c21ea6d640fbc325246806c93d862cb48c40f4717d9e1b50b2390698466282fe8c4d8b305259e3057f3711e69a39 -Size (haproxy-2.0.10.tar.gz) = 2557865 bytes +SHA1 (haproxy-2.0.12.tar.gz) = 69c5ca5c99ddd3f8a4ef886cb45e7c77666230b3 +RMD160 (haproxy-2.0.12.tar.gz) = b4055474bf0a55e8da19864799231881919aecc5 +SHA512 (haproxy-2.0.12.tar.gz) = bc81a5f88278b56bddfec52dba5231a06567177fe806faeb5ffb1965d8c4731704e0b92949cc72de0b4738c8baad28c5211d46d1dc980c4145c90081fc2d838c +Size (haproxy-2.0.12.tar.gz) = 2634202 bytes SHA1 (patch-Makefile) = 790242ebde13ac1a9d95a16cba29e30a9bccd57c SHA1 (patch-src_cli.c) = 4bc5cf0116df121ac4c3c38b8f962c3a62d536e5 SHA1 (patch-src_haproxy.c) = badb172013541087d84f03726ea928c6f5634dc3 --_----------=_15777142615660--