Skip to content

Commit

Permalink
Update ChangeLog and release version
Browse files Browse the repository at this point in the history
  • Loading branch information
darold committed Jul 9, 2018
1 parent b607a6c commit 4923fc5
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 2 deletions.
30 changes: 30 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,33 @@
2018-07-09 - Version 2.7 released

This release is a minor release that fix some issues reported by
users over past year, it also adds some new reports:

- Add reports of pgbouncer wait for server statistics.
- Make pgCluu more compatible with PG10 and pgBouncer 1.8
- Add kernel vm.overcommit_kbytes configuration to report.

Here are the complete list of bug fixes in this release:

- Fix Prepared Transaction menu not disabled with no stat data.
- Fix typos and use proper measure in the graph. Thanks to Fabio Porta for the patch
- Add vm.overcommit_kbytes to kernel report. Thanks to Adrien Neyrat for the patch.
- Since version 1.8 of pgbouncer, the command "show stats" changed output. Make pgcluu compatible. Thanks to Fabio Pardi for the report and the mapping of changes.
- Fix issue in partitionning lookup.
- Secure search_path before executing SQL queries.
- Fix several use of unintialized variable case.
- Add missing function IsLeapYear. Thanks to Emmanuel Boucle for the patch.
- Fix report for network and disk devices in incremental mode.
- Fix unwanted Network menu when no network device are found.
- Fetch devices informations. Thanks to Adrien Neyrat for the patch.
- Dockerise pgcluu, the container helps run both the collection and the report generator. Thanks to Roy Golan for the patch.
- Disable System submenu when the corresponding report is not available.
- Append %idle to cpu report.
- Fix list of resources files. Thanks to Bosstek Consulting for the report.
- Change fetch_version() to be closer with the new versioning politic in 10.0 and above. Thanks to Julien Rouhaud for the patch.
- Makes pgcluu compatible with PostgreSQL 10.0.


2017-07-09 - Version 2.6 released

This release is a minor release that fix some issues reported by
Expand Down
2 changes: 1 addition & 1 deletion pgcluu
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ use POSIX qw(locale_h sys_wait_h ceil strftime);
setlocale(LC_ALL, 'C');
use Storable qw(store_fd fd_retrieve);

$VERSION = '2.6';
$VERSION = '2.7';
$PROGRAM = 'pgCluu';

my $OUTPUT_DIR = '';
Expand Down
2 changes: 1 addition & 1 deletion pgcluu_collectd
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ setlocale(LC_ALL, 'C');

$| = 1;

$VERSION = '2.6';
$VERSION = '2.7';
$PROGRAM = 'pgcluu_collectd';

# Default path to the external programs
Expand Down

0 comments on commit 4923fc5

Please sign in to comment.