From: Gilles Darold Date: Thu, 14 Feb 2019 10:29:41 +0000 (+0100) Subject: Update ChangeLog and version to 10.3 X-Git-Tag: v10.3^0 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=09e8586856d54943a03d890e420689c19c373239;p=pgbadger Update ChangeLog and version to 10.3 --- diff --git a/ChangeLog b/ChangeLog index 2392ffd..1e505d4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,42 @@ +2019-02-14 - v10.3 + +This release of pgBadger is a maintenance release that fixes some +log format autodetection issues another pgBouncer log parsing issue +reported by users. There is also a new feature: + + The -o | --outfile option can now be used multiple time to dump + output in several format in a single command. For example: + pgbadger -o out.html -o out.json /log/pgsql-11.log + will create two reports in html and json format saved in the + two corresponding files. + +There's also some bugs fixes and features enhancements. + + - Fix statistics reports when there a filter on database, user, + client or application is requested. Some queries was not + reported. + - Fix autodetection of pg>=10 defauilt log line prefix. + - Fix autodetection of log file with "non standard" log line prefix. + If --prefix specify %t, %m, %n and %p or %c, set format to stderr. + Thanks to Alex Danvy for the report. + - Remove extra space at end of line. + - Add minimal test to syslog parser. + - Fix a call to autodetect_format(). + - Truncate statement when maxlength is used. Thanks to Thibaud + Madelaine for the patch. + - Add test for multiple output format. + - The -o | --outfile option can now be used multiple time to dump + output in several format in a single command. For example: + pgbadger -o out.txt -o out.html -o - -x json /log/pgsql-11.log + Here pgbadger will create two reports in text and html format + saved in the two corresponding file. It will also output a json + report on standard output. Thanks to Nikolay for the feature + request. + - Move detection of output format and setting of out filename into + a dedicated function set_output_extension(). + - Fix another pgBouncer log parsing issue. Thanks to Douglas J. + Hunley for the report. + 2018-12-27 - v10.2 This release of pgBadger is a maintenance release that fixes issues diff --git a/META.yml b/META.yml index a1f580c..03c7129 100644 --- a/META.yml +++ b/META.yml @@ -1,5 +1,5 @@ name: pgBadger -version: 10.2 +version: 10.3 version_from: pgbadger installdirs: site recommends: diff --git a/pgbadger b/pgbadger index 8314ee1..ef2ff7a 100755 --- a/pgbadger +++ b/pgbadger @@ -52,7 +52,7 @@ use Socket; use constant EBCDIC => "\t" ne "\011"; use Encode qw(encode decode); -$VERSION = '10.2'; +$VERSION = '10.3'; $SIG{'CHLD'} = 'DEFAULT';