From owner-svn-ports-head@freebsd.org Fri May 17 08:30:17 2019 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 460BF158BD8A; Fri, 17 May 2019 08:30:17 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id DF48969A7C; Fri, 17 May 2019 08:30:16 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B86D35B6A; Fri, 17 May 2019 08:30:16 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x4H8UGc5082448; Fri, 17 May 2019 08:30:16 GMT (envelope-from tz@FreeBSD.org) Received: (from tz@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x4H8UG0c082446; Fri, 17 May 2019 08:30:16 GMT (envelope-from tz@FreeBSD.org) Message-Id: <201905170830.x4H8UG0c082446@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tz set sender to tz@FreeBSD.org using -f From: Torsten Zuehlsdorff Date: Fri, 17 May 2019 08:30:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r501841 - head/databases/pgpool X-SVN-Group: ports-head X-SVN-Commit-Author: tz X-SVN-Commit-Paths: head/databases/pgpool X-SVN-Commit-Revision: 501841 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: DF48969A7C X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.97)[-0.970,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 May 2019 08:30:17 -0000 Author: tz Date: Fri May 17 08:30:16 2019 New Revision: 501841 URL: https://svnweb.freebsd.org/changeset/ports/501841 Log: databases/pgpool: Upgrade from 3.4.23 to 3.4.24 Changelog: Enhancements - Speed up failover when all of backends are down. (Tatsuo Ishii) - pgpool-recovery extension and pgpool_setup is now ready for the next major release PostgreSQL 12. (Tatsuo Ishii) Bug fixes - Fix the wrong error message "ERROR: connection cache is full", when all backend nodes are down. (bug 487) (Bo Peng) - Avoid exit/fork storm of pool_worker_child process. (Tatsuo Ishii) - Fix black_function_list's broken default value. (Tatsuo Ishii) - Fix "not enough space in buffer" error. (bug 499) (Tatsuo Ishii) - The error occurred while processing error message returned from backend and the cause is that the query string in question is too big. Problem is, the buffer is in fixed size (8192 bytes). Eliminate the fixed size buffer and use palloced buffer instead. This also saves some memory copy work. - Fix DROP DATABASE failure. (Tatsuo Ishii) - Fix wrong variable in read_status_file() function. (bug 493) (Takuma Hoshiai) - Fix compiler warnings. (Tatsuo Ishii) Changelog taken from: http://www.pgpool.net/docs/latest/en/html/release-3-4-24.html Modified: head/databases/pgpool/Makefile head/databases/pgpool/distinfo Modified: head/databases/pgpool/Makefile ============================================================================== --- head/databases/pgpool/Makefile Fri May 17 08:23:44 2019 (r501840) +++ head/databases/pgpool/Makefile Fri May 17 08:30:16 2019 (r501841) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= pgpool -PORTVERSION= 3.4.23 +PORTVERSION= 3.4.24 CATEGORIES= databases MASTER_SITES= http://www.pgpool.net/mediawiki/images/ DISTNAME= ${PORTNAME}-II-${PORTVERSION} Modified: head/databases/pgpool/distinfo ============================================================================== --- head/databases/pgpool/distinfo Fri May 17 08:23:44 2019 (r501840) +++ head/databases/pgpool/distinfo Fri May 17 08:30:16 2019 (r501841) @@ -1,3 +1,3 @@ -TIMESTAMP = 1554556131 -SHA256 (pgpool-II-3.4.23.tar.gz) = f8371a3e7eddea83d309a20c0907a61348284eab9d8674f6de2d7edb2173af6c -SIZE (pgpool-II-3.4.23.tar.gz) = 2182309 +TIMESTAMP = 1558014223 +SHA256 (pgpool-II-3.4.24.tar.gz) = be4ca23e77ebb70fe06e83dc1d6ab80839be612913720962f103523eb38f735e +SIZE (pgpool-II-3.4.24.tar.gz) = 2184878