From: Darold Gilles Date: Mon, 22 Feb 2016 11:12:44 +0000 (+0100) Subject: Update ChangeLog and version to 8.0 X-Git-Tag: v8.0^0 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2f640126690c37cd76be752baef08a3fb955b37f;p=pgbadger Update ChangeLog and version to 8.0 --- diff --git a/ChangeLog b/ChangeLog index 86e53c1..db782e9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,48 @@ +2016-02-22 version 8.0 + +This is a major release that adds support to pgbouncer log files. +New pgbouncer reports are: + + * Request Throughput + * Bytes I/O Throughput + * Queries Average duration + * Simultaneous sessions + * Histogram of sessions times + * Sessions per database + * Sessions per user + * Sessions per host + * Established connections + * Connections per database + * Connections per user + * Connections per host + * Most used reserved pools + * Most Frequent Errors/Events + +pgbouncer log files can be parsed together with PostgreSQL logs. + +It also adds a two new command line options: + + * --pgbouncer-only to only show pgbouncer related reports. + * --rebuild to be able to rebuild all html reports in incremental + output directory where binary data files are still available. + +This release fixes a major bug introduced with journalctl code that +was prevented the use of multiprocess feature. + +Here the complete list of other changes: + + - Fix progress bar with pgbouncer (only events are increased). + - Sort %SYMBOLE hashtable for remove "!=" / "=" bug. Thanks to + Nicolas Gollet for the patch. + - Fix incorrect numbers on positional parameters in report Queries + generating most temporary files. Thanks to Oskar Wiksten for the + report. + - Update operators list in SQL code beautifier with last update in + pgFormatter. Thanks to Laurenz Albe for the report and the list + of missing operators. + - Cosmetic change to code and add some more debug information. + + 2016-01-18 version 7.3 This is a maintenance release to fix a major bug that was breaking diff --git a/META.yml b/META.yml index ac89d9f..c219859 100644 --- a/META.yml +++ b/META.yml @@ -1,7 +1,7 @@ # http://module-build.sourceforge.net/META-spec.html #XXXXXXX This is a prototype!!! It will change in the future!!! XXXXX# name: pgBadger -version: 7.3 +version: 8.0 version_from: pgbadger installdirs: site recommends: diff --git a/pgbadger b/pgbadger index fa09092..12be20e 100755 --- a/pgbadger +++ b/pgbadger @@ -51,7 +51,7 @@ use FileHandle; use Socket; use constant EBCDIC => "\t" ne "\011"; -$VERSION = '7.3'; +$VERSION = '8.0'; $SIG{'CHLD'} = 'DEFAULT';