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"
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])