Skip to content

Commit

Permalink
Release v0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sgotti committed Aug 29, 2017
1 parent 363332f commit fec5140
Show file tree
Hide file tree
Showing 9 changed files with 35 additions and 8 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
### v0.7.0

#### New features

* Added ability to define custom pg_hba.conf entries ([#341](https://github.com/sorintlab/stolon/pull/341))
* Added ability to set Locale, Encoding and DataChecksums when initializing a new pg db cluster ([#338](https://github.com/sorintlab/stolon/pull/338))
* Added stolonctl `clusterdata` command to dump the current clusterdata saved in the store ([#318](https://github.com/sorintlab/stolon/pull/318))
* Detect if a standby cannot sync due to missing wal files on primary ([#312](https://github.com/sorintlab/stolon/pull/312))
* Various improvements to proxy logic ([#308](https://github.com/sorintlab/stolon/pull/308)) ([#310](https://github.com/sorintlab/stolon/pull/310))
* Added cluster spec option to define additional wal senders ([#311](https://github.com/sorintlab/stolon/pull/311))
* Added various postgresql recovery target settings for point in time recovery ([#303](https://github.com/sorintlab/stolon/pull/303))
* Added `--log-level` argument to stolon commands (deprecating `--debug`) ([#298](https://github.com/sorintlab/stolon/pull/298))

#### BugFixes
* IPV6 fixes ([#326](https://github.com/sorintlab/stolon/pull/326))
* Handle null values in pg_file_settings view ([#322](https://github.com/sorintlab/stolon/pull/322))

and [many other](https://github.com/sorintlab/stolon/milestone/6) bug fixes and documentation improvements

Thanks to everybody who contributed to this release:

Albert Vaca, @emded, Niklas Hambüchen, Tim Heckman

### v0.6.0

This version introduces various interesting new features (like support for upcoming PostgreSQL 10 and standby cluster) and different bug fixes.
Expand Down
2 changes: 1 addition & 1 deletion examples/kubernetes/rc/stolon-keeper0.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ spec:
terminationGracePeriodSeconds: 10
containers:
- name: stolon-keeper
image: sorintlab/stolon:master-pg9.6
image: sorintlab/stolon:v0.7.0-pg9.6
command:
- "/bin/bash"
- "-ec"
Expand Down
2 changes: 1 addition & 1 deletion examples/kubernetes/rc/stolon-keeper1.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ spec:
terminationGracePeriodSeconds: 10
containers:
- name: stolon-keeper
image: sorintlab/stolon:master-pg9.6
image: sorintlab/stolon:v0.7.0-pg9.6
command:
- "/bin/bash"
- "-ec"
Expand Down
2 changes: 1 addition & 1 deletion examples/kubernetes/rc/stolon-proxy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ spec:
spec:
containers:
- name: stolon-proxy
image: sorintlab/stolon:master-pg9.6
image: sorintlab/stolon:v0.7.0-pg9.6
command:
- "/bin/bash"
- "-ec"
Expand Down
2 changes: 1 addition & 1 deletion examples/kubernetes/rc/stolon-sentinel.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ spec:
spec:
containers:
- name: stolon-sentinel
image: sorintlab/stolon:master-pg9.6
image: sorintlab/stolon:v0.7.0-pg9.6
command:
- "/bin/bash"
- "-ec"
Expand Down
2 changes: 1 addition & 1 deletion examples/kubernetes/statefulset/stolon-keeper.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ spec:
terminationGracePeriodSeconds: 10
containers:
- name: stolon-keeper
image: sorintlab/stolon:master-pg9.6
image: sorintlab/stolon:v0.7.0-pg9.6
command:
- "/bin/bash"
- "-ec"
Expand Down
2 changes: 1 addition & 1 deletion examples/kubernetes/statefulset/stolon-proxy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ spec:
spec:
containers:
- name: stolon-proxy
image: sorintlab/stolon:master-pg9.6
image: sorintlab/stolon:v0.7.0-pg9.6
command:
- "/bin/bash"
- "-ec"
Expand Down
2 changes: 1 addition & 1 deletion examples/kubernetes/statefulset/stolon-sentinel.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ spec:
spec:
containers:
- name: stolon-sentinel
image: sorintlab/stolon:master-pg9.6
image: sorintlab/stolon:v0.7.0-pg9.6
command:
- "/bin/bash"
- "-ec"
Expand Down
6 changes: 5 additions & 1 deletion scripts/build-binary
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,19 @@ function package {
if [ -d ${ccdir} ]; then
srcdir=${ccdir}
fi

mkdir ${target}/bin

for bin in stolon-keeper stolon-sentinel stolon-proxy stolonctl; do
cp ${srcdir}/${bin} ${target}/${bin}
cp ${srcdir}/${bin} ${target}/bin
done

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

cp -R stolon/doc ${target}/doc
cp -R stolon/examples ${target}/examples
rm -rf ${target}/examples/kubernetes/image/docker/bin
rm -rf ${target}/examples/docker/bin
}

function main {
Expand Down

0 comments on commit fec5140

Please sign in to comment.