]> granicus.if.org Git - pgbadger/commitdiff
Update ChangeLog and verson to 3.6. v3.6
authorDarold Gilles <gilles@darold.net>
Tue, 17 Sep 2013 08:36:59 +0000 (10:36 +0200)
committerDarold Gilles <gilles@darold.net>
Tue, 17 Sep 2013 08:36:59 +0000 (10:36 +0200)
ChangeLog
pgbadger

index e64ba4749049cee9ac4956bd24aa0e963968d492..a74c11167b2dda9c4773042071ea279f9d49b31b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,26 @@
+2013-09-17 - version 3.6
+
+Still an other version in 3.x branch to fix two major bugs in vacuum and checkpoint
+graphs. Some other minors bugs has also been fixed.
+
+       - Fix grammar in --quiet usage. Thanks to stephen-a-ingram for the report.
+       - Fix reporting period to starts after the last --last-parsed value instead
+         of the first log line. Thanks to Keith Fiske for the report.
+       - Add --csv-separator command line usage to documentation.
+       - Fix CSV log parser and add --csv-separator command line option to allow
+         change of the default csv field separator, coma, in any other character.
+       - Avoid "negative look behind not implemented" errors on perl 5.16/5.18.
+         Thanks to Marco Baringer for the patch.
+       - Support timestamps for begin/end with fractional seconds (so it'll handle
+         postgresql's normal string representation of timestamps).
+       - When using negative look behind set sub-regexp to -i (not case insensitive)
+         to avoid issues where some upper case letter sequence, like SS or ST.
+       - Change shebang from /usr/bin/perl to /usr/bin/env perl so that user-local
+         (perlbrew) perls will get used.
+       - Fix empty graph of autovacuum and autoanalyze.
+       - Fix checkpoint graphs that was not displayed any more.
+
+
 2013-07-11 - Version 3.5
 
 Last release of the 3.x branch, this is a bug fix release that also adds some
index 2f82e52946adb9da32f460a33e1b52c5d6250e31..cf253cb8e07b66b733d562424f1798b8ee66ff06 100755 (executable)
--- a/pgbadger
+++ b/pgbadger
@@ -44,7 +44,7 @@ use IO::Handle;
 use IO::Pipe;
 use Time::HiRes qw/usleep/;
 
-$VERSION = '3.5';
+$VERSION = '3.6';
 
 $SIG{'CHLD'} = 'DEFAULT';