Skip to content

Commit 4d2e85a

Browse files
committed
v1.1_beta1 release
1 parent bb2dca2 commit 4d2e85a

File tree

8 files changed

+36
-35
lines changed

8 files changed

+36
-35
lines changed

Build.PL

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ my $build = Module::Build->new(
2222
create_packlist => 1,
2323
#create_readme => 1,
2424
create_makefile_pl => 'traditional',
25-
dist_version => '1.1.0',
25+
dist_version => '1.1_beta1',
2626
dist_abstract => 'PostgreSQL multistate OCF resource agent for Pacemaker',
2727
dist_author => [
2828
'Mael Rimbault <mael.rimbault@dalibo.com>',

CHANGELOG.md

Lines changed: 22 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,25 @@
1-
# PAF v1.1.0
2-
3-
Release date: WIP
4-
5-
* 1.1.0 major release
6-
* fix: do not use crm_node --partition to discover resources
7-
* fix: unknown argument --query when calling crm_master
8-
* fix: perl warning when master score has never been set on the master
9-
* fix: remove wrong info message during post-promote notify
10-
* fix: race condition when setting attributes during actions
11-
* fix: bug where pgport and pghost where ignored in _query
12-
* fix: use same role name than the system_user to connect
13-
* fix: wrap crm_master calls in sub to make them synchronous
14-
* fix: fixed a bug related to setgid in _runas
15-
* fix: check on application_name in validate_all
16-
* change: do not start standby with a master score of 1
17-
* change: choose the clone to promote when no master score exist
18-
* new: detect and deal master/slave recovery transition
19-
* new: set next best secondaries base on their lag
1+
# PAF v1.1 beta1
2+
3+
Release date: 2016-12-04
4+
5+
* 1.1 beta1 release
6+
* fix: compatibility with PostrgeSQL 9.6, YanChii
7+
* fix: do not use crm_node --partition to discover resources, ioguix
8+
* fix: unknown argument --query when calling crm_master, ioguix
9+
* fix: perl warning when master score has never been set on the master, ioguix
10+
* fix: remove wrong info message during post-promote notify, ioguix
11+
* fix: race condition when setting attributes during actions, reported by Guillaume Lalarge, fixed by ioguix
12+
* fix: bug where pgport and pghost where ignored in "_query", reported by nnn-dev, fixed by ioguix
13+
* fix: use same role name than the system_user to connect, reported by nnn-dev, fixed by ioguix
14+
* fix: wrap crm_master calls in sub to make them synchronous, ioguix
15+
* fix: fixed a bug related to setgid in "_runas", reported by nnn-dev, fixed by ioguix
16+
* fix: check on application_name in validate_all, Benoit Lobréau
17+
* change: do not start standby with a master score of 1, ioguix
18+
* change: choose the clone to promote when no master score exist, ioguix
19+
* change: avoid fatal error during validate action when possible, Benoit Lobréau & ioguix
20+
* new: parameter "datadir" to cope with PostgreSQL GUC data_directory, Benoit Lobréau
21+
* new: detect and deal master/slave recovery transition, ioguix
22+
* new: set next best secondaries base on their lag, ioguix
2023
* misc: code cleanup and refactoring
2124
* misc: various log messages cleanup and enhancement
2225

debian/changelog

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,9 @@
1-
resource-agents-paf (1.1.0-1) unstable; urgency=low
1+
resource-agents-paf (1.1~beta1-1) unstable; urgency=low
22

3-
* 1.1.0 minor release
4-
* fix: Remove the primary_node parameter
5-
* fix: Fix bug relative to setgid in _runas()
6-
* fix: Choose a clone to promote when no master score exist
7-
* change: Wrap crm_master calls in sub to make them synchronous
8-
* fix: Use same role name than the system_user to connect
9-
* fix: Fix bug where pgport and pghost where ignored in _query
3+
* 1.1_beta1 beta release
4+
* see CHANGELOG.md
105

11-
-- Mael Rimbault (mrimbault) <mael.rimbault@dalibo.com> Fri, 03 Jun 2016 15:16:16 +0200
6+
-- Jehan-Guillaume (ioguix) de Rorthais <jgdr@dalibo.com> Sun, 04 Dec 2016 16:00:00 +0100
127

138
resource-agents-paf (1.0.2-1) unstable; urgency=low
149

lib/OCF_Directories.pm.PL

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ BEGIN {
9999
use Exporter;
100100
101101
102-
our \$VERSION = 'v1.0.2';
102+
our \$VERSION = 'v1.1_beta1';
103103
our \@ISA = ('Exporter');
104104
our \@EXPORT = qw(
105105
\$INITDIR

lib/OCF_Functions.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ use OCF_Directories;
9494
BEGIN {
9595
use Exporter;
9696

97-
our $VERSION = 'v1.0.2';
97+
our $VERSION = 'v1.1_beta1';
9898
our @ISA = ('Exporter');
9999
our @EXPORT = qw(
100100
$__OCF_ACTION

lib/OCF_ReturnCodes.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ use 5.008;
6060
BEGIN {
6161
use Exporter;
6262

63-
our $VERSION = 'v1.0.2';
63+
our $VERSION = 'v1.1_beta1';
6464
our @ISA = ('Exporter');
6565
our @EXPORT = qw(
6666
$OCF_SUCCESS

resource-agents-paf.spec

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
%global _tag v1.0.2
1+
%global _tag v1.1_beta1
22
%global _ocfroot /usr/lib/ocf
33
Name: resource-agents-paf
4-
Version: 1.0.2
4+
Version: 1.1~beta1
55
Release: 1
66
Summary: PostgreSQL resource agent for Pacemaker
77
License: PostgreSQL
@@ -41,6 +41,9 @@ rm -f "%{buildroot}"/usr/local/lib64/perl5/auto/PAF/.packlist
4141
%{_datadir}/resource-agents/ocft/configs/pgsqlms
4242

4343
%changelog
44+
* Sun Dec 04 2016 Jehan-Guillaume de Rorthais <jgdr@dalibo.com> - 1.1beta1-1
45+
- 1.1_beta1 beta release
46+
4447
* Wed May 25 2016 Jehan-Guillaume de Rorthais <jgdr@dalibo.com> - 1.0.2-1
4548
- 1.0.2 minor release
4649

script/pgsqlms

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ use OCF_ReturnCodes;
2828
use OCF_Directories;
2929
use OCF_Functions;
3030

31-
our $VERSION = 'v1.1_dev';
31+
our $VERSION = 'v1.1_beta1';
3232
our $PROGRAM = 'pgsqlms';
3333

3434
# OCF environment

0 commit comments

Comments
 (0)