Skip to content

Commit fec5140

Browse files
committed
Release v0.7.0
1 parent 363332f commit fec5140

9 files changed

+35
-8
lines changed

CHANGELOG.md

+23
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
### v0.7.0
2+
3+
#### New features
4+
5+
* Added ability to define custom pg_hba.conf entries ([#341](https://github.com/sorintlab/stolon/pull/341))
6+
* Added ability to set Locale, Encoding and DataChecksums when initializing a new pg db cluster ([#338](https://github.com/sorintlab/stolon/pull/338))
7+
* Added stolonctl `clusterdata` command to dump the current clusterdata saved in the store ([#318](https://github.com/sorintlab/stolon/pull/318))
8+
* Detect if a standby cannot sync due to missing wal files on primary ([#312](https://github.com/sorintlab/stolon/pull/312))
9+
* Various improvements to proxy logic ([#308](https://github.com/sorintlab/stolon/pull/308)) ([#310](https://github.com/sorintlab/stolon/pull/310))
10+
* Added cluster spec option to define additional wal senders ([#311](https://github.com/sorintlab/stolon/pull/311))
11+
* Added various postgresql recovery target settings for point in time recovery ([#303](https://github.com/sorintlab/stolon/pull/303))
12+
* Added `--log-level` argument to stolon commands (deprecating `--debug`) ([#298](https://github.com/sorintlab/stolon/pull/298))
13+
14+
#### BugFixes
15+
* IPV6 fixes ([#326](https://github.com/sorintlab/stolon/pull/326))
16+
* Handle null values in pg_file_settings view ([#322](https://github.com/sorintlab/stolon/pull/322))
17+
18+
and [many other](https://github.com/sorintlab/stolon/milestone/6) bug fixes and documentation improvements
19+
20+
Thanks to everybody who contributed to this release:
21+
22+
Albert Vaca, @emded, Niklas Hambüchen, Tim Heckman
23+
124
### v0.6.0
225

326
This version introduces various interesting new features (like support for upcoming PostgreSQL 10 and standby cluster) and different bug fixes.

examples/kubernetes/rc/stolon-keeper0.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ spec:
1818
terminationGracePeriodSeconds: 10
1919
containers:
2020
- name: stolon-keeper
21-
image: sorintlab/stolon:master-pg9.6
21+
image: sorintlab/stolon:v0.7.0-pg9.6
2222
command:
2323
- "/bin/bash"
2424
- "-ec"

examples/kubernetes/rc/stolon-keeper1.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ spec:
1818
terminationGracePeriodSeconds: 10
1919
containers:
2020
- name: stolon-keeper
21-
image: sorintlab/stolon:master-pg9.6
21+
image: sorintlab/stolon:v0.7.0-pg9.6
2222
command:
2323
- "/bin/bash"
2424
- "-ec"

examples/kubernetes/rc/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-pg9.6
18+
image: sorintlab/stolon:v0.7.0-pg9.6
1919
command:
2020
- "/bin/bash"
2121
- "-ec"

examples/kubernetes/rc/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-pg9.6
18+
image: sorintlab/stolon:v0.7.0-pg9.6
1919
command:
2020
- "/bin/bash"
2121
- "-ec"

examples/kubernetes/statefulset/stolon-keeper.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ spec:
1818
terminationGracePeriodSeconds: 10
1919
containers:
2020
- name: stolon-keeper
21-
image: sorintlab/stolon:master-pg9.6
21+
image: sorintlab/stolon:v0.7.0-pg9.6
2222
command:
2323
- "/bin/bash"
2424
- "-ec"

examples/kubernetes/statefulset/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-pg9.6
18+
image: sorintlab/stolon:v0.7.0-pg9.6
1919
command:
2020
- "/bin/bash"
2121
- "-ec"

examples/kubernetes/statefulset/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-pg9.6
18+
image: sorintlab/stolon:v0.7.0-pg9.6
1919
command:
2020
- "/bin/bash"
2121
- "-ec"

scripts/build-binary

+5-1
Original file line numberDiff line numberDiff line change
@@ -37,15 +37,19 @@ function package {
3737
if [ -d ${ccdir} ]; then
3838
srcdir=${ccdir}
3939
fi
40+
41+
mkdir ${target}/bin
42+
4043
for bin in stolon-keeper stolon-sentinel stolon-proxy stolonctl; do
41-
cp ${srcdir}/${bin} ${target}/${bin}
44+
cp ${srcdir}/${bin} ${target}/bin
4245
done
4346

4447
cp stolon/README.md ${target}/README.md
4548

4649
cp -R stolon/doc ${target}/doc
4750
cp -R stolon/examples ${target}/examples
4851
rm -rf ${target}/examples/kubernetes/image/docker/bin
52+
rm -rf ${target}/examples/docker/bin
4953
}
5054

5155
function main {

0 commit comments

Comments
 (0)