From: Gilles Darold Date: Mon, 16 Sep 2019 14:02:34 +0000 (+0200) Subject: Update Changelog and version to 11.1 X-Git-Tag: v11.1^0 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=94aef5955f6b6d00f6525cb30b3e2926cbf9e8b0;p=pgbadger Update Changelog and version to 11.1 --- diff --git a/ChangeLog b/ChangeLog index 1ff26fe..bac5318 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,54 @@ +2019-09-16 - v11.1 + +This release of pgBadger fix several issues reported by users since +three months. It also adds some new features and reports: + + - Add report of top N queries that consume the most time in the + prepare or parse stage. + - Add report of top N queries that consume the most time in the + bind stage. + - Add report of timing for prepare/bind/execute queries parts. + Reported in a new "Duration" tab in Global Stats report. Example: + Total query duration: 6m16s + Prepare/parse total duration: 45s564ms + Bind total duration: 4m46s + Execute total duration: 44s71m + This also fix previous report of "Total query duration" that was + only reporting execute total duration. + - Add support to RDS and CloudWatch log format, they are detected + automatically. You can use -f rds if pgbadger is not able to + auto-detect the log format. + - Add new configuration option --month-report to be able to build + monthly incremental reports. + - Restore support to Windows operating system. + +There's also some bugs fixes and features enhancements. + + - Add auto-generated Markdown documentation in README.md using tool + pod2markdown. If the command is not present the file will just not + be generated. Thanks to Derek Yang for the patch. + - Translate action WITH into CTE, regression introduced in last release. + - Fix support of Windows Operating System + - Add support to RDS and CloudWatch log format, use -f rds if pgbadger is + not able to auto-detect this log format. Thanks to peruuparkar for the + feature request. + - Fix option -f | --format that was not applied on all files get from the + parameter list where log format auto-detection was failing, the format was + taken from the fist file parsed. Thanks to Levente Birta for the report. + - Update source documentation file to replace reference to pgBadger v7.x + with v11. Thanks to Will Buckner for the patch. + - Limit height display size of top queries to avoid taking the whole page + with huge queries. Thanks to ilias ilisepe1 for the patch. + - Fix overflow of queries and detail in Slowest individual queries. + - Fix SSH URIs for files, directories and wildcards. Thanks to tbussmann for + the patch. + - Fix URI samples in documentation. Thanks to tbussmann for the patch. + - Hide message of use of default out file when --rebuild is used. + - Add extra newline to usage() output to not bread POD documentation at + make time. + - Reapply --exclude-client option description in documentation. Thanks to + Christoph Berg for the report. + 2019-06-25 - v11.0 This release of pgBadger adds some major new features and fixes some diff --git a/META.yml b/META.yml index 7c5fc66..8893929 100644 --- a/META.yml +++ b/META.yml @@ -1,5 +1,5 @@ name: pgBadger -version: 11.0 +version: 11.1 version_from: pgbadger installdirs: site recommends: diff --git a/pgbadger b/pgbadger index 08b7c96..61ce765 100755 --- a/pgbadger +++ b/pgbadger @@ -52,7 +52,7 @@ use Socket; use constant EBCDIC => "\t" ne "\011"; use Encode qw(encode decode); -$VERSION = '11.0'; +$VERSION = '11.1'; $SIG{'CHLD'} = 'DEFAULT';