]> granicus.if.org Git - pgbadger/commitdiff
Update ChangeLog and version to 8.0 v8.0
authorDarold Gilles <gilles@darold.net>
Mon, 22 Feb 2016 11:12:44 +0000 (12:12 +0100)
committerDarold Gilles <gilles@darold.net>
Mon, 22 Feb 2016 11:12:44 +0000 (12:12 +0100)
ChangeLog
META.yml
pgbadger

index 86e53c12320a6e978214efc592609ebc368d47a7..db782e98afa6c19d8f0d6fecf854673aba159791 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,48 @@
+2016-02-22 version 8.0 
+
+This is a major release that adds support to pgbouncer log files.
+New pgbouncer reports are:
+
+  * Request Throughput
+  * Bytes I/O Throughput
+  * Queries Average duration
+  * Simultaneous sessions
+  * Histogram of sessions times
+  * Sessions per database
+  * Sessions per user
+  * Sessions per host
+  * Established connections
+  * Connections per database
+  * Connections per user
+  * Connections per host
+  * Most used reserved pools
+  * Most Frequent Errors/Events
+
+pgbouncer log files can be parsed together with PostgreSQL logs.
+
+It also adds a two new command line options:
+
+  * --pgbouncer-only to only show pgbouncer related reports.
+  * --rebuild to be able to rebuild all html reports in incremental
+    output directory where binary data files are still available.
+
+This release fixes a major bug introduced with journalctl code that
+was prevented the use of multiprocess feature.
+
+Here the complete list of other changes:
+
+  - Fix progress bar with pgbouncer (only events are increased).
+  - Sort %SYMBOLE hashtable for remove "!=" / "=" bug. Thanks to
+    Nicolas Gollet for the patch.
+  - Fix incorrect numbers on positional parameters in report Queries
+    generating most temporary files. Thanks to Oskar Wiksten for the
+    report.
+  - Update operators list in SQL code beautifier with last update in
+    pgFormatter. Thanks to Laurenz Albe for the report and the list
+    of missing operators.
+  - Cosmetic change to code and add some more debug information.
+
+
 2016-01-18 version 7.3 
 
 This is a maintenance release to fix a major bug that was breaking
index ac89d9fe6d48560603e20804ccb142429c09324a..c2198593ca5fb329bf86986212553d34600a8ba8 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -1,7 +1,7 @@
 # http://module-build.sourceforge.net/META-spec.html
 #XXXXXXX This is a prototype!!!  It will change in the future!!! XXXXX#
 name:         pgBadger
-version:      7.3
+version:      8.0
 version_from: pgbadger
 installdirs:  site
 recommends:
index fa0909207ad12c910457339c31efc2be8bf71fa7..12be20ea86fe9b53d18488d9343da1573a292aa6 100755 (executable)
--- a/pgbadger
+++ b/pgbadger
@@ -51,7 +51,7 @@ use FileHandle;
 use Socket;
 use constant EBCDIC => "\t" ne "\011";
 
-$VERSION = '7.3';
+$VERSION = '8.0';
 
 $SIG{'CHLD'} = 'DEFAULT';