From: Gilles Darold Date: Thu, 11 Aug 2016 14:51:15 +0000 (+0200) Subject: Update Changelog and version to 8.2 X-Git-Tag: v8.2^0 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=10ad92d3c11e6476b216550e5b8624355ca26052;p=pgbadger Update Changelog and version to 8.2 --- diff --git a/ChangeLog b/ChangeLog index bd38597..715d9c4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,49 @@ +2016-08-11 version 8.2 + +This is a maintenance release that fix some minor bug. There is also +some performances improvement up to 20% on huge files and some new +interesting features: + + * Multiprocessing can be used with pgbouncer log files. + * pgBouncer and PostgreSQL log files can be used together in + incremental mode. + * With default or same prefix, stderr and syslog file can be + parsed together, csvlog format can always be used. + * Use a modal dialog window to download graphs as png images. + * Add pl/pgSQL function information to queries when available. + +Here are the complete list of changes: + + - Fix report of database system messages. + - Fix multi line statement concatenation after an error. + - Fix box size for report of queries generating the most + temporary files and the most waiting queries. + - Rewrite code to better handle multi-line queries. + - Fix garbage in examples of event queries with error only mode + (option -w). Thanks to Thomas Reiss for the report. + - Fix getting dataset related to query duration with the use of + auto_explain. Thanks to tom__b for the patch. + - Use a modal dialog window to download graphs as png images. + - Huge rewrite of the incremental mechanism applied to log files + to handle PostgreSQL and pgbouncer logs at the same time. + - Multiprocess can be used with pgbouncer log. + - Add code to remove remaining keyword placeholders tags. + - Fix an other possible case of truncated date in LAST_PARSED file + Thanks to brafaeloliveira for the report. + - Set default scale 1 in pretty_print_number() js function. + - Fix auto-detection of pgbouncer files that contain only stats + lines. Thanks to Glyn Astill for the patch. + - Add date to samples of queries generating most temporary files. + - Do not display warning message of empty log when quiet mode is + enable. + - Fix reading from stdin by disabling pgbouncer format detection. + Thanks to Robert Vargason for the patch. + - Fix case of duplicate normalized error message with "nonstandard + use of ...". + - Fix storage of current temporary file related request. + - Use the mnemonic rather than a signal number in kill calls. + Thanks to Komeda Shinji for the patch. + 2016-04-21 version 8.1 This is a maintenance release that fix a major issue introduced with diff --git a/pgbadger b/pgbadger index 2ac75dc..0ba3063 100755 --- a/pgbadger +++ b/pgbadger @@ -51,7 +51,7 @@ use FileHandle; use Socket; use constant EBCDIC => "\t" ne "\011"; -$VERSION = '8.2b'; +$VERSION = '8.2'; $SIG{'CHLD'} = 'DEFAULT';