]> granicus.if.org Git - pgbadger/commitdiff
Update ChangeLog and version to 7.0
authorDarold Gilles <gilles@darold.net>
Fri, 8 May 2015 17:05:59 +0000 (19:05 +0200)
committerDarold Gilles <gilles@darold.net>
Fri, 8 May 2015 17:05:59 +0000 (19:05 +0200)
ChangeLog
pgbadger

index 6b8e1f68821a4d218433c954a71b0f141c3b1da2..33cd13bf887def7090608b8d8d19f9e8798a566d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,42 @@
+2015-05-08 version 7.0 
+
+This major release adds some more useful reports and features.
+
+  * New report about events distribution per 5 minutes.
+  * New per application details (total duration and times executed) for each
+    query reported in Top Queries reports. The details are visible from a new
+    button called "App(s) involved".
+  * Add support to auto_explain extension. EXPLAIN plan will be added together
+    with top slowest queries when available in log file.
+  * Add a link to automatically open the explain plan on http://explain.depesz.com/
+  * New report on queries cumulated durations per user.
+  * New report about the Number of cancelled queries (graph)
+  * New report about Queries generating the most cancellation (N)
+  * New report about Queries most cancelled.
+
+Here is the full list of changes/fixes:
+
+  - Update documentation with last reports.
+  - Fix number of event samples displayed in event reports.
+  - Add new report about events distribution per x minutes.
+  - Add app=%a default prefix to documentation.
+  - Add reports of "App(s) involved" with top queries. Thanks to Antti Koivisto
+    for the feature request.
+  - Remove newline between a ) and , in the beautifier.
+  - Add link to automatically open the explain plan on http://explain.depesz.com/
+  - Add support to auto_explain, EXPLAIN plan will be added together with top
+    slowest queries whane available in the log file.
+  - Add a graph on distributed duration per user. Thanks to Korriliam for the
+    patch.
+  - Add tree new report: Number of cancelled queries (graph), Queries generating
+    the most cancellation (N) and Queries most cancelled lists. Thanks to Thomas
+    Reiss for the feature request.
+  - Fix case where temporary file statement must be retrieved from the previous
+    LOG statement and not in the following STATEMENT log entry. Thanks to Mael
+    Rimbault for the report.
+  - Add --enable-checksum to show a md5 hash of each reported queries. Thanks
+    to Thomas Reiss for the feature request.
+
 2015-04-13 version 6.4
 
 This new release fixes a major bugs in SQL beautifier which removed operator
index d0f2a4d9c1c7c7e0b214175c91835a8b0ac69e5d..8781f869bd7619fe8f1a0f183415a6fb4c3f2c76 100755 (executable)
--- a/pgbadger
+++ b/pgbadger
@@ -51,7 +51,7 @@ use FileHandle;
 use Socket;
 use constant EBCDIC => "\t" ne "\011";
 
-$VERSION = '6.4';
+$VERSION = '7.0';
 
 $SIG{'CHLD'} = 'DEFAULT';