From: Marko Kreen Date: Fri, 26 Feb 2016 11:53:32 +0000 (+0200) Subject: v1.7.2 X-Git-Tag: pgbouncer_1_7_2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fe131277f5dc339bbbb8397b2b08d3a7487efbb6;p=pgbouncer v1.7.2 --- diff --git a/NEWS.rst b/NEWS.rst index 768c7dd..75143c9 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -4,6 +4,32 @@ PgBouncer changelog PgBouncer 1.7.x --------------- +**2016-02-26 - PgBouncer 1.7.2 - "Finally Airborne"** + +- Fixes + + * Fix crash on stale pidfile removal. Problem introduced in 1.7.1. + + * Disable cleanup - it breaks takeover and is not useful + for production loads. Problem introduced in 1.7.1. + + * After takeover, wait until pidfile is gone before booting. + Slow shutdown due to memory cleanup exposed existing race. + (`#113 `_) + +- Cleanups + + * Make build reproducible by dropping DBGVER handling. + (`#112 `_) + + * Antimake: Sort file list from $(wildcard), newer gmake does not + sort it anymore. + (`#111 `_) + + * Show libssl version in log. + + * deb: Turn on full hardening. + **2016-02-18 - PgBouncer 1.7.1 - "Forward To Five Friends Or Else"** WARNING: Since version 1.7, `server_reset_query` is not executed when diff --git a/configure.ac b/configure.ac index 9b3b29b..d2cb7d0 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ dnl Process this file with autoconf to produce a configure script. -AC_INIT(pgbouncer, 1.7.1) +AC_INIT(pgbouncer, 1.7.2) AC_CONFIG_SRCDIR(src/janitor.c) AC_CONFIG_HEADER(lib/usual/config.h) AC_PREREQ([2.59]) diff --git a/debian/changelog b/debian/changelog index cb954f3..fd99478 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +pgbouncer (1.7.2-1) unstable; urgency=low + + * v1.7.2 + + -- Marko Kreen Fri, 26 Feb 2016 10:29:47 +0200 + pgbouncer (1.7.1-1) unstable; urgency=low * v1.7.1 diff --git a/debian/control b/debian/control index fc8290e..eabe3c0 100644 --- a/debian/control +++ b/debian/control @@ -1,9 +1,10 @@ Source: pgbouncer Section: database Priority: extra -Maintainer: Marko Kreen +Maintainer: Marko Kreen Standards-Version: 3.6.2 -Build-Depends: debhelper (>= 9), libevent-dev (>= 2.0), python-docutils, make (>= 3.81), libssl-dev (>= 1.0.1), libc-ares-dev +Build-Depends: debhelper (>= 9), make (>= 3.81), python-docutils, + libevent-dev (>= 2.0), libssl-dev (>= 1.0.1), libc-ares-dev (>= 1.7.0) Package: pgbouncer Architecture: any @@ -14,4 +15,5 @@ Description: Lightweight connection pooler for PostgreSQL create a connection to the actual server, or it will reuse one of its existing connections. . - The aim of pgbouncer is to lower the performance impact of opening new connections to PostgreSQL. + The aim of pgbouncer is to lower the performance impact of opening + new connections to PostgreSQL.