From: Darold Gilles Date: Sat, 11 Jul 2015 09:42:22 +0000 (+0200) Subject: Update ChangeLog and version to 7.1 X-Git-Tag: v7.1^0 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=09472eaa18a3c717c067452f5474f246fcb62814;p=pgbadger Update ChangeLog and version to 7.1 --- diff --git a/ChangeLog b/ChangeLog index f2dad35..033be59 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,32 @@ +2015-07-11 version 7.1 + +This new release fixes some issues and adds a new report: + + * Distribution of sessions per application + +It also adds Json operators to SQL Beautifier. + +Here is the full list of changes/fixes: + + - Fix unwanted seek on old parsing position when log entry is stdin. + Thanks to Olivier Schiavo for the report. + - Try to fix a potential issue in log start/end date parsing. Thanks + to gityerhubhere for the report. + - Fix broken queries with multiline in bind parameters. Thank to + Nicolas Thauvin for the report. + - Add new report Sessions per application. Thanks to Keith Fiske for + the feature request. + - Add Json Operators to SQL Beautifier. Thanks to Tom Burnett and + Hubert depesz Lubaczewski. + - Makefile.PL: changed manpage section from '1' to '1p', fixes #237. + Thanks to Cyril Bouthors for the patch. + - Update Copyright date-range and installation instructions that was + still refering to version 5. Thanks to Steve Crawford for the report. + - Fix typo in changelog + +Note that new official releases must now be downloaded from GitHub and no more +from SourceForge. Download at https://github.com/dalibo/pgbadger/releases + 2015-05-08 version 7.0 This major release adds some more useful reports and features. diff --git a/README b/README index efb7c92..eb3bf62 100644 --- a/README +++ b/README @@ -272,8 +272,8 @@ FEATURE Locks statistics. Queries by type (select/insert/update/delete). Distribution of queries type per database/application - Sessions per database/user/client. - Connections per database/user/client. + Sessions per database/user/client/application. + Connections per database/user/client/application. Autovacuum and autoanalyze per table. Queries per user and total duration per user. diff --git a/doc/pgBadger.pod b/doc/pgBadger.pod index ed95829..47056db 100644 --- a/doc/pgBadger.pod +++ b/doc/pgBadger.pod @@ -273,8 +273,8 @@ There's also some pie reports of distribution about: Locks statistics. Queries by type (select/insert/update/delete). Distribution of queries type per database/application - Sessions per database/user/client. - Connections per database/user/client. + Sessions per database/user/client/application. + Connections per database/user/client/application. Autovacuum and autoanalyze per table. Queries per user and total duration per user. diff --git a/pgbadger b/pgbadger index c156f49..fb1556d 100755 --- a/pgbadger +++ b/pgbadger @@ -51,7 +51,7 @@ use FileHandle; use Socket; use constant EBCDIC => "\t" ne "\011"; -$VERSION = '7.0'; +$VERSION = '7.1'; $SIG{'CHLD'} = 'DEFAULT';