Skip to content

Commit 6106685

Browse files
authored
add 0.4.0 release notes (#89)
* add 0.4.0 release notes * bump version Issue: PGO-615
1 parent 1a2b27b commit 6106685

File tree

4 files changed

+35
-3
lines changed

4 files changed

+35
-3
lines changed

docs/config.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ defaultContentLanguageInSubdir= false
1515
enableMissingTranslationPlaceholders = false
1616

1717
[params]
18-
clientVersion = "0.3.0"
18+
clientVersion = "0.4.0"
1919

2020
# crunchy-hugo-theme params
2121
editURL = "https://github.com/CrunchyData/postgres-operator/edit/master/docs/content/"

docs/content/reference/pgo_version.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ pgo version
3131
```
3232
### Example output
3333
```
34-
Client Version: v0.3.0
34+
Client Version: v0.4.0
3535
Operator Version: v5.5.0
3636
```
3737

docs/content/releases/0.4.0.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
---
2+
title: "0.4.0"
3+
draft: false
4+
weight: 996
5+
---
6+
7+
[Crunchy Postgres for Kubernetes]: https://www.crunchydata.com/products/crunchy-postgresql-for-kubernetes
8+
[`pgo` CLI documentation]: https://access.crunchydata.com/documentation/postgres-operator-client/latest
9+
10+
Crunchy Data announces the release of `pgo`, Postgres Operator Client from Crunchy Data 0.4.0.
11+
12+
Built as a `kubectl` plugin, the `pgo` CLI facilitates the creation and management of PostgreSQL clusters created using [Crunchy Postgres for Kubernetes][].
13+
14+
For more information about using the CLI and the various commands available, please see the [`pgo` CLI documentation][].
15+
16+
Additionally, please see the [CPK documentation](https://access.crunchydata.com/documentation/postgres-operator/latest) for information about [getting started](https://access.crunchydata.com/documentation/postgres-operator/latest/quickstart/) with Crunchy Postgres for Kubernetes.
17+
18+
## Features
19+
- The new `start` and `stop` commands now allow the user to shutdown and restart a PostgresCluster.
20+
- The new `show ha` subcommand gets information (e.g., replication lag and more) from the High Availability system about a PostgresCluster's members.
21+
- The new `show user` subcommand gets information on users created through the PostgresCluster spec and can be used to get connection info.
22+
- The `show` command now can be used to show the combined outputs of the `show backup` and `show ha` subcommands.
23+
- The `create postgrescluster` command can now be used to create a PostgresCluster with any version of Postgres supported by Crunchy Postgres for Kubernetes.
24+
25+
## Changes
26+
27+
- The Support Export command now stores logs in a single directory.
28+
- The Support Export command now records kubectl plugins installed on the client workstation.
29+
- The Support Export command now records the result of `pgbackrest info` to help debug issues related to backups.
30+
- The Support Export command now records a list naming all reachable PostgresClusters and their namespaces.
31+
- The Support Export command now records the system time reported from each labeled container as compared to the system time of the client workstation to debug time drift.
32+
- The Backup and Restore commands now include a `--force-conflicts` flag, making it possible to overwrite backup and restore settings when there’s an ownership conflict.

internal/cmd/client_version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@
1515
package cmd
1616

1717
// store the current PGO CLI version
18-
const clientVersion = "v0.3.0"
18+
const clientVersion = "v0.4.0"

0 commit comments

Comments
 (0)