From owner-svn-ports-head@freebsd.org Mon Apr 8 07:11:26 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 7F4561577290; Mon, 8 Apr 2019 07:11:26 +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 0F1718B589; Mon, 8 Apr 2019 07:11:26 +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 D8F6B2001E; Mon, 8 Apr 2019 07:11:25 +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 x387BPQS097817; Mon, 8 Apr 2019 07:11:25 GMT (envelope-from tz@FreeBSD.org) Received: (from tz@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x387BPwm097815; Mon, 8 Apr 2019 07:11:25 GMT (envelope-from tz@FreeBSD.org) Message-Id: <201904080711.x387BPwm097815@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tz set sender to tz@FreeBSD.org using -f From: Torsten Zuehlsdorff Date: Mon, 8 Apr 2019 07:11:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r498351 - head/databases/pgpool-II-36 X-SVN-Group: ports-head X-SVN-Commit-Author: tz X-SVN-Commit-Paths: head/databases/pgpool-II-36 X-SVN-Commit-Revision: 498351 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 0F1718B589 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.95)[-0.947,0]; NEURAL_HAM_LONG(-1.00)[-1.000,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: Mon, 08 Apr 2019 07:11:26 -0000 Author: tz Date: Mon Apr 8 07:11:25 2019 New Revision: 498351 URL: https://svnweb.freebsd.org/changeset/ports/498351 Log: databases/pgpool-II-36: Upgrade from 3.6.15 to 3.6.16 Changelog: Enhancements * Add new configuration option ssl_prefer_server_ciphers. (Muhammad Usama) Add the new setting ssl_prefer_server_ciphers to let users configure if they want client's or server's cipher order to take preference. The default for this parameter is off, which prioritize the client's cipher order as usual. However this is just for keeping backward compatibility, and it is possible that a malicious client uses weak ciphers. For this reason we recommend to set this parameter to on at all times. * Allow to set a client cipher list. (Tatsuo Ishii, Yugo Nagata) For this purpose new parameter ssl_ciphers, which specifies the cipher list to be accepted by Pgpool-II, is added. This is already implemented in PostgreSQL and useful to enhance security when SSL is enabled. Bug fixes * Fix unnecessary fsync() to pgpool_status file. (Tatsuo Ishii) Whenever new connections are created to PostgreSQL backend, fsync() was issued to pgpool_status file, which could generate excessive I/O in certain conditions. So reduce the chance of issuing fsync() so that it is issued only when backend status is changed. Changelog taken from: http://www.pgpool.net/docs/latest/en/html/release-3-6-16.html MFH: 2019Q2 Modified: head/databases/pgpool-II-36/Makefile head/databases/pgpool-II-36/distinfo Modified: head/databases/pgpool-II-36/Makefile ============================================================================== --- head/databases/pgpool-II-36/Makefile Mon Apr 8 07:08:09 2019 (r498350) +++ head/databases/pgpool-II-36/Makefile Mon Apr 8 07:11:25 2019 (r498351) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= pgpool-II -PORTVERSION= 3.6.15 +PORTVERSION= 3.6.16 CATEGORIES= databases MASTER_SITES= http://www.pgpool.net/mediawiki/images/ PKGNAMESUFFIX= 36 Modified: head/databases/pgpool-II-36/distinfo ============================================================================== --- head/databases/pgpool-II-36/distinfo Mon Apr 8 07:08:09 2019 (r498350) +++ head/databases/pgpool-II-36/distinfo Mon Apr 8 07:11:25 2019 (r498351) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551101906 -SHA256 (pgpool-II-3.6.15.tar.gz) = cbcc89b61d07aa8c3eba8ebb672d83ef8384908d7532b5ee25c0d2ebb894ffed -SIZE (pgpool-II-3.6.15.tar.gz) = 3283823 +TIMESTAMP = 1554556578 +SHA256 (pgpool-II-3.6.16.tar.gz) = 2bcc4cc19b9ab9e6f666dd9538834c83f7bb22d2fdcf41336f36c33dbe7c363c +SIZE (pgpool-II-3.6.16.tar.gz) = 3296415