Skip to content

Commit

Permalink
Update ChangeLog and version to 3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
darold committed Jul 11, 2023
1 parent 9fc4227 commit 1ae1d8f
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 11 deletions.
16 changes: 16 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
2023-07-11 - Version 3.5

This release is a maintenance release that fixes issues reported since
the past six months and adds support to PostgreSQL 16.

- Fix pgcluu for PG16 changes on pg_stat_user_indexes.
- Fix live/dead tuples statistics. Thanks to Frederic Yhuel for the patch.
- Add e as expression for kind of extended statistics.
- Add --disable-pidstat option to disable the collect of metrics from the
pidstat command. This can be useful with old versions of pidstat that do
not support the -U option. Thanks to Guillaume Lelarge for the report.
- If on a secondary server, don't execute pg_current_wal_lsn(). Thanks to
Guillaume Lelarge for the patch.
Use relispartition only for PG version 10 and upper. Thanks to Guillaume
Lelarge for the patch.

2022-12-26 - Version 3.4

This release is a maintenance release that fixes issues reported since
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2012-2022, Gilles Darold
Copyright (c) 2012-2023, Gilles Darold

Permission to use, copy, modify, and distribute this software and its
documentation for any purpose, without fee, and without a written agreement
Expand Down
2 changes: 1 addition & 1 deletion META.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ resources:
git: [email protected]:darold/pgcluu.git
type: git
web: http://pgcluu.darold.net/
version: 3.3
version: 3.5
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
Expand Up @@ -693,7 +693,7 @@ GENERATING REPORTS
configuration directive in pgcluu.conf

LICENSE
Copyright (c) 2012-2021, Gilles Darold
Copyright (c) 2012-2023, Gilles Darold

pgCluu is licenced under the PostgreSQL Licence a liberal Open Source
license, similar to the BSD or MIT licenses. That mean that all parts of
Expand Down
6 changes: 3 additions & 3 deletions cgi-bin/pgcluu.cgi
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# For license terms, see the LICENSE file.
#
# Author: Gilles Darold
# Copyright: (C) 2012-2021 Gilles Darold - All rights reserved.
# Copyright: (C) 2012-2023 Gilles Darold - All rights reserved.
#------------------------------------------------------------------------------
use vars qw($VERSION $PROGRAM);

Expand All @@ -25,7 +25,7 @@ use POSIX qw(locale_h sys_wait_h ceil strftime);
setlocale(LC_ALL, 'C');
use Storable qw(store_fd fd_retrieve);

$VERSION = '3.1';
$VERSION = '3.5';
$PROGRAM = 'pgCluu';


Expand Down Expand Up @@ -7811,7 +7811,7 @@ sub html_footer
print qq{
<hr>
<footer>
<p>&copy; Gilles Darold 2012-2021</p>
<p>&copy; Gilles Darold 2012-2023</p>
<p>Report generated by <a href="http://pgcluu.darold.net/">$PROGRAM</a> $VERSION.</p>
</footer>
Expand Down
2 changes: 1 addition & 1 deletion doc/pgCluu.pod
Original file line number Diff line number Diff line change
Expand Up @@ -709,7 +709,7 @@ configuration directive in pgcluu.conf

=head1 LICENSE

Copyright (c) 2012-2021, Gilles Darold
Copyright (c) 2012-2023, Gilles Darold

pgCluu is licenced under the PostgreSQL Licence a liberal Open Source license,
similar to the BSD or MIT licenses. That mean that all parts of the program
Expand Down
4 changes: 2 additions & 2 deletions pgcluu
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# For license terms, see the LICENSE file.
#
# Author: Gilles Darold
# Copyright: (C) 2012-2022 Gilles Darold - All rights reserved.
# Copyright: (C) 2012-2023 Gilles Darold - All rights reserved.
#------------------------------------------------------------------------------
use vars qw($VERSION $PROGRAM);

Expand All @@ -24,7 +24,7 @@ use POSIX qw(locale_h sys_wait_h ceil strftime);
setlocale(LC_ALL, 'C');
use Storable qw(store_fd fd_retrieve);

$VERSION = '3.4';
$VERSION = '3.5';
$PROGRAM = 'pgCluu';

# Global variables
Expand Down
4 changes: 2 additions & 2 deletions pgcluu_collectd
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# For license terms, see the LICENSE file.
#
# Author: Gilles Darold
# Copyright: (C) 2012-2022 Gilles Darold - All rights reserved.
# Copyright: (C) 2012-2023 Gilles Darold - All rights reserved.
#------------------------------------------------------------------------------
use vars qw($VERSION $PROGRAM);
use strict qw(vars subs);
Expand All @@ -26,7 +26,7 @@ use constant UMASK => 0022;

$| = 1;

$VERSION = '3.4';
$VERSION = '3.5';
$PROGRAM = 'pgcluu_collectd';

$SIG{'CHLD'} = 'DEFAULT';
Expand Down

0 comments on commit 1ae1d8f

Please sign in to comment.