]> granicus.if.org Git - pgbadger/commitdiff
Update ChangeLog and version to 7.1 v7.1
authorDarold Gilles <gilles@darold.net>
Sat, 11 Jul 2015 09:42:22 +0000 (11:42 +0200)
committerDarold Gilles <gilles@darold.net>
Sat, 11 Jul 2015 09:42:22 +0000 (11:42 +0200)
ChangeLog
README
doc/pgBadger.pod
pgbadger

index f2dad357326757115eacd6d8c651164009e06d1c..033be59bcb2fa3e3ee36b31ba0a0ca62433d7f2e 100644 (file)
--- 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 efb7c920bc31f50e1b44aba3475581cdc525baa7..eb3bf626ef39a0e2c191632504f85dec8eda4a2a 100644 (file)
--- 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.
 
index ed95829b976e06edf35419aa4ce2a8340df6cf6e..47056db0203e5e04f7464ec0bba3eca4aaef2fd3 100644 (file)
@@ -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.
 
index c156f49c3734ee2847a2cf8b48d44d2273ceb7f9..fb1556d86830fb5744d47ed8901c371476c45c78 100755 (executable)
--- 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';