From: Marko Kreen Date: Mon, 29 Nov 2010 16:06:04 +0000 (+0200) Subject: v1.4rc3 X-Git-Tag: pgbouncer_1_4_rc3~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=11eb08a6294de4b5f134684467fecb514c1c349a;p=pgbouncer v1.4rc3 --- diff --git a/AUTHORS b/AUTHORS index dc8775e..a746b58 100644 --- a/AUTHORS +++ b/AUTHORS @@ -15,6 +15,7 @@ Dimitri Fontaine Guillaume Lelarge Greg Sabino Mullane Hiroshi Saito +Hubert Depesz Lubaczewski Jacob Coby Jørgen Austvik Magne Mæhre diff --git a/NEWS b/NEWS index 9bf8337..96f22c8 100644 --- a/NEWS +++ b/NEWS @@ -1,11 +1,36 @@ 2010-xx-xx - PgBouncer 1.4 - "" - * async dns - * disable_pqexec - * application_name - * long options - * remove fixed-length limit from server params - * libusual + = Features = + + * Async DNS lookup - instead of resolving hostnames at reload time, + the names are now resolved at connect time, with configurable caching. + (See dns_max_ttl parameter.) + + By default it uses getaddrinfo_a() (glibc) as backend, if it does not + exist, then getaddrinfo_a() is emulated via blocking(!) getaddrinfo(). + + When --enable-evdns argument to configure, libevent's evdns is used + as backend. It is not used by default, because libevent 1.3/1.4 + contain quite broken implementation. Only evdns in libevent 2.0 + seems reliable enough. + + * New config var: syslog_ident, to tune syslog name. + + * Proper support for `application_name` startup parameter. + + * Command line long options (Guillaume Lelarge) + + * Solaris portability fixes (Hubert Depesz Lubaczewski) + + * New config var: disable_pqexec. Highly-paranoid environments + can disable Simple Query Protocol with that. Requires apps + that use only Extended Query Protocol. + + = Internal cleanups = + + * Use libusual library for low-level utility functions. + + * Remove fixed-length limit from server params. 2010-09-09 - PgBouncer 1.3.4 - "Bouncer is always right" diff --git a/configure.ac b/configure.ac index f6302e3..875745a 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.4rc2.1) +AC_INIT(pgbouncer, 1.4rc3) 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 3e0d143..c1d1a00 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +pgbouncer (1.4-0rc3) unstable; urgency=low + + * v1.4rc3 + + -- Marko Kreen Mon, 29 Nov 2010 13:44:46 +0200 + pgbouncer (1.4-0rc2.1) unstable; urgency=low * v1.4rc2.1