From: Darold Gilles Date: Fri, 8 May 2015 17:05:59 +0000 (+0200) Subject: Update ChangeLog and version to 7.0 X-Git-Tag: v7.0~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=45d247893c32418c4e7c018bc3c8373b2021f7ff;p=pgbadger Update ChangeLog and version to 7.0 --- diff --git a/ChangeLog b/ChangeLog index 6b8e1f6..33cd13b 100644 --- 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 diff --git a/pgbadger b/pgbadger index d0f2a4d..8781f86 100755 --- 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';