]> granicus.if.org Git - pgbouncer/commitdiff
v1.7.2 pgbouncer_1_7_2
authorMarko Kreen <markokr@gmail.com>
Fri, 26 Feb 2016 11:53:32 +0000 (13:53 +0200)
committerMarko Kreen <markokr@gmail.com>
Fri, 26 Feb 2016 12:03:00 +0000 (14:03 +0200)
NEWS.rst
configure.ac
debian/changelog
debian/control

index 768c7ddadd76bfd73707415bc7766f902fa85191..75143c9309b009740fa4a3bdb646aad111dd3730 100644 (file)
--- 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 <https://github.com/pgbouncer/pgbouncer/issues/113>`_)
+
+- Cleanups
+
+  * Make build reproducible by dropping DBGVER handling.
+    (`#112 <https://github.com/pgbouncer/pgbouncer/issues/112>`_)
+
+  * Antimake: Sort file list from $(wildcard), newer gmake does not
+    sort it anymore.
+    (`#111 <https://github.com/pgbouncer/pgbouncer/issues/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
index 9b3b29b80fc78bf754e2f4e428b983f1cd46f2eb..d2cb7d0e3e082e48f2c899102dce17c08eb073e1 100644 (file)
@@ -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])
index cb954f330d3664b5df60921e671120d697b4a6c8..fd99478dba500e2c5e602643115b08fe6738080c 100644 (file)
@@ -1,3 +1,9 @@
+pgbouncer (1.7.2-1) unstable; urgency=low
+
+  * v1.7.2
+
+ -- Marko Kreen <markokr@gmail.com>  Fri, 26 Feb 2016 10:29:47 +0200
+
 pgbouncer (1.7.1-1) unstable; urgency=low
 
   * v1.7.1
index fc8290e0fd2a9d6284546933c746aa4fc93c8478..eabe3c02432629d73921eccbfd4ed0653df8ac53 100644 (file)
@@ -1,9 +1,10 @@
 Source: pgbouncer
 Section: database
 Priority: extra
-Maintainer: Marko Kreen <marko.kreen@skype.net>
+Maintainer: Marko Kreen <markokr@gmail.com>
 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.