Skip to content

Commit a86ac20

Browse files
committed
Release v0.13.0
1 parent 4422daf commit a86ac20

File tree

5 files changed

+24
-7
lines changed

5 files changed

+24
-7
lines changed

CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
### v0.13.0
22

3+
#### New features
4+
5+
* Add a `stolonctl` command to force fail a keeper ([#546](https://github.com/sorintlab/stolon/pull/546))
6+
* Overcome PostgreSQL synchronous replication limitation that could cause lost transactions under some events ([#514](https://github.com/sorintlab/stolon/pull/514))
7+
* Users can now define `archiveRecoverySettings` in the cluster spec of a standby cluster. One of the possible use cases is to feed the standby cluster only with archived logs without streaming replication. (See Upgrade Notes) ([#543](https://github.com/sorintlab/stolon/pull/543))
8+
* Keeper: remove trailing new lines from provided passwords ([#548](https://github.com/sorintlab/stolon/pull/548))
9+
10+
#### Bug Fixes
11+
12+
* Sort keepers addresses in `pg_hba.conf` to avoid unneeded postgres instance reloads ([#558](https://github.com/sorintlab/stolon/pull/558))
13+
* Set `recovery_target_action` to promote when using recovery target settings [#545](https://github.com/sorintlab/stolon/pull/545))
14+
* Fixed wrong listen address used in `pg_hba.conf` when `SUReplAccessStrict` mode was enabled ([#520](https://github.com/sorintlab/stolon/pull/520))
15+
16+
and [many other](https://github.com/sorintlab/stolon/milestone/12) bug fixes and documentation improvements.
17+
18+
Thanks to everybody who contributed to this release.
19+
320
#### Upgrades notes.
421

522
* The clusterspec `standbySettings` option as been replaced by the `standbyConfig` option. Internally it can contain two fields `standbySettings` and `archiveRecoverySettings` (see the clusterspec doc with the descriptors of this new option). If you're updating a standby cluster, BEFORE starting it you should update, using `stolonctl`, the clusterspec with the new `standbyConfig` option.

examples/kubernetes/stolon-keeper.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ spec:
2121
terminationGracePeriodSeconds: 10
2222
containers:
2323
- name: stolon-keeper
24-
image: sorintlab/stolon:master-pg10
24+
image: sorintlab/stolon:v0.13.0-pg10
2525
command:
2626
- "/bin/bash"
2727
- "-ec"

examples/kubernetes/stolon-proxy.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ spec:
1515
spec:
1616
containers:
1717
- name: stolon-proxy
18-
image: sorintlab/stolon:master-pg10
18+
image: sorintlab/stolon:v0.13.0-pg10
1919
command:
2020
- "/bin/bash"
2121
- "-ec"

examples/kubernetes/stolon-sentinel.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ spec:
1515
spec:
1616
containers:
1717
- name: stolon-sentinel
18-
image: sorintlab/stolon:master-pg10
18+
image: sorintlab/stolon:v0.13.0-pg10
1919
command:
2020
- "/bin/bash"
2121
- "-ec"

examples/swarm/docker-compose-pg.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ secrets:
88

99
services:
1010
sentinel:
11-
image: sorintlab/stolon:master-pg10
11+
image: sorintlab/stolon:v0.13.0-pg10
1212
command: gosu stolon stolon-sentinel --cluster-name stolon-cluster --store-backend=etcdv3 --store-endpoints http://etcd-00:2379,http://etcd-01:2379,http://etcd-02:2379 --log-level debug
1313
networks:
1414
- etcd_etcd
@@ -22,7 +22,7 @@ services:
2222
failure_action: pause
2323

2424
keeper1:
25-
image: sorintlab/stolon:master-pg10
25+
image: sorintlab/stolon:v0.13.0-pg10
2626
hostname: keeper1
2727
environment:
2828
- PGDATA=/var/lib/postgresql/data
@@ -41,7 +41,7 @@ services:
4141
# constraints: [node.labels.nodename == node1]
4242

4343
keeper2:
44-
image: sorintlab/stolon:master-pg10
44+
image: sorintlab/stolon:v0.13.0-pg10
4545
hostname: keeper2
4646
environment:
4747
- PGDATA=/var/lib/postgresql/data
@@ -59,7 +59,7 @@ services:
5959
# constraints: [node.labels.nodename == node2]
6060

6161
proxy:
62-
image: sorintlab/stolon:master-pg10
62+
image: sorintlab/stolon:v0.13.0-pg10
6363
command: gosu stolon stolon-proxy --listen-address 0.0.0.0 --cluster-name stolon-cluster --store-backend=etcdv3 --store-endpoints http://etcd-00:2379,http://etcd-01:2379,http://etcd-02:2379 --log-level info
6464
networks:
6565
- etcd_etcd

0 commit comments

Comments
 (0)