From: Darold Gilles Date: Mon, 13 Apr 2015 07:25:43 +0000 (+0200) Subject: Update ChangeLog and version to 9.4 X-Git-Tag: v6.4^0 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=06cba565ffc39526f9f4178695960bee449f8366;p=pgbadger Update ChangeLog and version to 9.4 --- diff --git a/ChangeLog b/ChangeLog index 0f6e24e..6b8e1f6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,23 @@ +2015-04-13 version 6.4 + +This new release fixes a major bugs in SQL beautifier which removed operator +and adds some useful improvement in anonymization of parameters values. +pgBadger will also try to parse the full csvlog when a broken CSV line is +encountered. + + - Make anonymization more useful. Thanks to Hubert depesz Lubaczewski + for the patch. + - Fix previous patch for csvlog generated with a PostgreSQL version + before 9.0. + - Try continue CSV parsing after broken CSV line. Thanks to Sergey + Burladyan for the patch. + - Fix bug in SQL beautifier which removed operator. Thanks to Thomas + Reiss for the report. + - Fix loop exit, check terminate quickly and correct comments + indentation. Thanks to Sergey Burladyan for the patch + +Please upgrade. + 2015-03-27 version 6.3 This new release fixes some bugs and adds some new reports: diff --git a/pgbadger b/pgbadger index 3005cbb..d391888 100755 --- a/pgbadger +++ b/pgbadger @@ -50,7 +50,7 @@ use IO::Pipe; use FileHandle; use Socket; -$VERSION = '6.3'; +$VERSION = '6.4'; $SIG{'CHLD'} = 'DEFAULT';