From owner-svn-ports-all@freebsd.org Thu May 23 08:42:24 2019 Return-Path: Delivered-To: svn-ports-all@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 501B915A2C48; Thu, 23 May 2019 08:42:24 +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 EB149899C0; Thu, 23 May 2019 08:42:23 +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 AB6DB277E; Thu, 23 May 2019 08:42:23 +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 x4N8gNks058115; Thu, 23 May 2019 08:42:23 GMT (envelope-from tz@FreeBSD.org) Received: (from tz@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x4N8gNBO058113; Thu, 23 May 2019 08:42:23 GMT (envelope-from tz@FreeBSD.org) Message-Id: <201905230842.x4N8gNBO058113@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tz set sender to tz@FreeBSD.org using -f From: Torsten Zuehlsdorff Date: Thu, 23 May 2019 08:42:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r502325 - branches/2019Q2/databases/pgpool-II-37 X-SVN-Group: ports-branches X-SVN-Commit-Author: tz X-SVN-Commit-Paths: branches/2019Q2/databases/pgpool-II-37 X-SVN-Commit-Revision: 502325 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: EB149899C0 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.995,0]; NEURAL_HAM_SHORT(-0.97)[-0.974,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 May 2019 08:42:24 -0000 Author: tz Date: Thu May 23 08:42:23 2019 New Revision: 502325 URL: https://svnweb.freebsd.org/changeset/ports/502325 Log: MFH: r501844 databases/pgpool-II-37: Upgrade from 3.7.9 to 3.7.10 Changelog Enhancements - Doc: Improve Reference II, PCP commands document. (Tatsuo Ishii) - 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) - Doc: add restrictions entry. (Takuma Hoshiai) Bug fixes - Fix the wrong error message "ERROR: connection cache is full", when all backend nodes are down. (bug 487) (Bo Peng) - Remove unused .sgml file. (Takuma Hoshiai) - 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) - Fix DROP DATABASE failure. (Tatsuo Ishii) - Fix wrong variable in read_status_file() function. (bug 493) (Takuma Hoshiai) - Add missing test/watchdog_setup to EXTRA_DIST. (bug 470) (Bo Peng) - Doc: mention that multi-statement queries are sent to primary node only. (bug 492) (Tatsuo Ishii) - Test: Fix occasional regression test failure of 014.watchdog_test_quorum_bypass. (Tatsuo Ishii) - Abort session if failover/failback is ongoing to prevent potential segfault. (bug 481, bug 482) (Tatsuo Ishii) - Fix compiler warnings. (Tatsuo Ishii) - Fix memory leak in "batch" mode in extended query. (bug 468) (Tatsuo Ishii) Approved by: ports-secteam (mivy) Modified: branches/2019Q2/databases/pgpool-II-37/Makefile branches/2019Q2/databases/pgpool-II-37/distinfo Directory Properties: branches/2019Q2/ (props changed) Modified: branches/2019Q2/databases/pgpool-II-37/Makefile ============================================================================== --- branches/2019Q2/databases/pgpool-II-37/Makefile Thu May 23 08:41:21 2019 (r502324) +++ branches/2019Q2/databases/pgpool-II-37/Makefile Thu May 23 08:42:23 2019 (r502325) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= pgpool-II -PORTVERSION= 3.7.9 +PORTVERSION= 3.7.10 CATEGORIES= databases MASTER_SITES= http://www.pgpool.net/mediawiki/images/ PKGNAMESUFFIX= 37 Modified: branches/2019Q2/databases/pgpool-II-37/distinfo ============================================================================== --- branches/2019Q2/databases/pgpool-II-37/distinfo Thu May 23 08:41:21 2019 (r502324) +++ branches/2019Q2/databases/pgpool-II-37/distinfo Thu May 23 08:42:23 2019 (r502325) @@ -1,3 +1,3 @@ -TIMESTAMP = 1554556566 -SHA256 (pgpool-II-3.7.9.tar.gz) = ff255c1270bca564b7775b90dd1f598eacd33b4ca4dfc02fcd430a514679d977 -SIZE (pgpool-II-3.7.9.tar.gz) = 3352257 +TIMESTAMP = 1558014430 +SHA256 (pgpool-II-3.7.10.tar.gz) = ff4c2ad146d62aafc22c8ae10f592f7a6e924e93823755d51b120b213b91d8d6 +SIZE (pgpool-II-3.7.10.tar.gz) = 3375419