]> granicus.if.org Git - pgbadger/commitdiff
Update Changelog and version to 11.1 v11.1
authorGilles Darold <gilles@darold.net>
Mon, 16 Sep 2019 14:02:34 +0000 (16:02 +0200)
committerGilles Darold <gilles@darold.net>
Mon, 16 Sep 2019 14:02:34 +0000 (16:02 +0200)
ChangeLog
META.yml
pgbadger

index 1ff26feb13739fd363328aeed7c24e1f9002620d..bac531822dedbfe9a76a1a0ae634941acd683232 100644 (file)
--- 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
index 7c5fc662acef91e4cd81986e87163d71b7eb7c16..8893929ad20d19b7b4f9df41418e390e066b1753 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -1,5 +1,5 @@
 name:         pgBadger
-version:      11.0
+version:      11.1
 version_from: pgbadger
 installdirs:  site
 recommends:
index 08b7c962fa8238be919d49e4d26539570c6f272c..61ce7658a16c52e09e7a1672eb3c6394d1b27cb8 100755 (executable)
--- 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';