From: Gilles Darold Date: Fri, 2 Sep 2016 10:52:56 +0000 (+0200) Subject: Update ChangeLog and version to 9.0 X-Git-Tag: v9.0^0 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=196335dbda832c3e233b081c1ba9907ff3206a0f;p=pgbadger Update ChangeLog and version to 9.0 --- diff --git a/ChangeLog b/ChangeLog index 2e5ad11..b8b5eba 100644 --- 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 diff --git a/pgbadger b/pgbadger index af1c498..efce67e 100644 --- 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';