]> granicus.if.org Git - pgbadger/commitdiff
Update ChangeLog and version to 9.0 v9.0
authorGilles Darold <gilles.darold@dalibo.com>
Fri, 2 Sep 2016 10:52:56 +0000 (12:52 +0200)
committerGilles Darold <gilles.darold@dalibo.com>
Fri, 2 Sep 2016 10:52:56 +0000 (12:52 +0200)
ChangeLog
pgbadger

index 2e5ad11ef9246ebd255b727e4485c19d15dba710..b8b5eba35933cc764cd6b4316624e5f05ab1fe1d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,69 @@
+2016-09-02 - v9.0
+
+This major release of pgBadger is a port to bootstrap 3 and a version
+upgrade of all resources files (CSS and Javascript). There's also some
+bugs fixes and features enhancements.
+
+Backward compatibility with old incremental report might be preserved.
+
+  - Sources and licences of resources files are now on a dedicated
+    subdirectory. A script to update their minified version embedded
+    in pgbager script has been added. Thanks to Christoph Berg for
+    the help and feature request.
+
+  - Try to detect user/database/host from connection strings if
+    log_connection is enabled and log_line_prefix doesn't include
+    them.
+    
+    Extend the regex to autodetect database name, user name, client
+    ip address and application name. The regex now are the following:
+    
+       db => qr/(?:db|database)=([^,]*)/;
+       user => qr/(?:user|usr)=([^,]*)/;
+       client => qr/(?:client|remote|ip|host)=([^,]*)/;
+       appname => qr/(?:app|application)=([^,]*)/;
+    
+  - Add backward compatibility with older version of pgbadger in
+    incremental mode by creating a subdirectory for new CSS and
+    Javascript files. This subdirectory is named with the major
+    version number of pgbadger.
+    
+  - Increase the size of the pgbadger logo that appears too small
+    with the new font size.
+
+  - Normalize detailed information in all reports.
+
+  - Fix duplicate copy icon in locks report.
+
+  - Fix missing chart on histogram of session time. Thanks to
+    Guillaume Lelarge for the report.
+
+  - Add LICENSE file noting the licenses used by the resource
+    files. Thanks to Christoph Berg for the patch.
+
+  - Add patch to jqplot library to fix an infinite loop when trying
+    to download some charts. Thanks to Julien Tachoires for the help
+    to solve this issue.
+    
+  - Script tools/updt_embedded_rsc.pl will apply the patch to resource
+    file resources/jquery.jqplot.js and doesn't complain if it has
+    already been applied.
+
+  - Remove single last comma at end of pie chart dataset. Thanks to
+    Julien Tachoires for the report.
+
+  - Change display of normalized error
+
+  - Remove unused or auto-generated files
+
+  - Update all resources files (js+css) and create a directory to
+    include source of javascript libraries used in pgbadger. There is
+    also a new script tools/updt_embedded_rsc.pl the can be used to
+    generate the minified version of those files and embedded them
+    into pgbadger.  This script will also embedded the FontAwesome.otf
+    open truetype font into the fontawesome.css file.
+    
+
 2016-08-27 - v8.3
 
 This is a maintenance release that fix some minor bugs. This release
index af1c4989571dc5dedd2bfb4e92892545265a4ad1..efce67e4f274bc0c2c5ecc74c961902273462d12 100644 (file)
--- a/pgbadger
+++ b/pgbadger
@@ -51,7 +51,7 @@ use FileHandle;
 use Socket;
 use constant EBCDIC => "\t" ne "\011";
 
-$VERSION = '9.0dev';
+$VERSION = '9.0';
 
 $SIG{'CHLD'} = 'DEFAULT';