You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+63Lines changed: 63 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,66 @@
1
+
# :rocket: Release 1.14.0-rc1 (24-10-2024)
2
+
3
+
## :notepad_spiral: NOTES
4
+
5
+
StackGres 1.14.0-rc1 is out! :confetti_ball::champagne:
6
+
7
+
This new release of StackGres add a new layer that will collect all the metrics in an OpenTelemetry collector layer, allowing to export them
8
+
in a variety of other platform than Prometheus. But we also added a lot of fixes to improve stability!
9
+
10
+
So, what you are waiting for to try this release and have a look to the future of StackGres!
11
+
12
+
## :sparkles: NEW FEATURES AND CHANGES
13
+
14
+
* Support Postgres 17
15
+
* Added OpenTelemetry Collector layer
16
+
* Added common retry logic to backup and sharded backup and extended its usage
17
+
18
+
## Web Console
19
+
20
+
* Support for SGStreams in the Web Console
21
+
* Include graphs for TPS, percentile histogram and most used statements on becnhmark status
22
+
23
+
## :bug: FIXES
24
+
25
+
* SGStream fields are not rendered in the CSV of operator bundle
26
+
* Allow sgconfig to be installed before operator
27
+
* Backup using volume snapshot do not wait on conflict
28
+
* Sharded cluster is not setting any postgres services configuration
29
+
* Replication initialization is not using the latest backup
30
+
* Backups, dbops, sharded backups and sharded dbops change to completed state only on full resync
31
+
* Sharded dbops/backup do not cleanup previous dbops/backup when retrying
32
+
* Disable pager for patroni container
33
+
* Validating webhook returns 500 on wrong enum values
34
+
* Avoid removing resources when owner is deleted
35
+
* Avoid adding StatefulSet owner reference on PVC to avoid deletion on removal
36
+
* pg_replication_is_replica metric has no unique labels
37
+
* Disable pager for patroni container
38
+
* Sharded backup run forewer if a generated SGBackup not yet completed is removed
39
+
* Backup configuration interfere with replicate from
40
+
41
+
## Web Console
42
+
43
+
Nothing new here! :eyes:
44
+
45
+
## :construction: KNOWN ISSUES
46
+
47
+
* Backups may be restored with inconsistencies when performed with a Postgres instance running on a different architecture ([#1539](https://gitlab.com/ongresinc/stackgres/-/issues/1539))
48
+
49
+
## :up: UPGRADE
50
+
51
+
To upgrade from a previous installation of the StackGres operator's helm chart you will have to upgrade the helm chart release.
52
+
For more detailed information please refer to [our documentation](https://stackgres.io/doc/latest/install/helm/upgrade/#upgrade-operator).
53
+
54
+
To upgrade StackGres operator's (upgrade only works starting from 1.1 version or above) helm chart issue the following commands (replace namespace and release name if you used something different):
> IMPORTANT: This release is incompatible with previous `alpha` or `beta` versions. Upgrading from those versions will require uninstalling completely StackGres including all clusters and StackGres CRDs (those in `stackgres.io` group) first.
59
+
60
+
Thank you for all the issues created, ideas, and code contributions by the StackGres Community!
61
+
62
+
## :twisted_rightwards_arrows:[FULL LIST OF COMMITS](https://gitlab.com/ongresinc/stackgres/-/commits/1.14.0-rc1)
Copy file name to clipboardExpand all lines: stackgres-k8s/e2e/spec/operator-helm
+15-15Lines changed: 15 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -24,10 +24,10 @@ e2e_test() {
24
24
run_test "Check that operator can not be upgrade from an alpha version" check_operator_upgrade_alpha
25
25
run_test "Check that operator can not be upgrade from a beta version" check_operator_upgrade_beta
26
26
run_test "Check that operator can not be upgrade from version 0.9.5" check_operator_upgrade_0_9_5
27
-
run_test "Check that operator can be upgrade from version 1.12.0" check_operator_upgrade_1_12_0
28
27
run_test "Check that operator can be upgrade from version 1.13.0" check_operator_upgrade_1_13_0
28
+
run_test "Check that operator can be upgrade from version 1.14.0" check_operator_upgrade_1_14_0
29
29
run_test "Check that operator can not be upgrade with an SGCluster that uses version 0.9.5" check_operator_upgrade_with_cluster_using_0_9_5
30
-
run_test "Check that operator can be upgrade with an SGCluster that uses version 1.12.0 and 1.13.0"check_operator_upgrade_with_cluster_using_1_12_0_and_1_13_0
30
+
run_test "Check that operator can be upgrade with an SGCluster that uses version 1.13.0 and 1.14.0"check_operator_upgrade_with_cluster_using_1_13_0_and_1_14_0
31
31
run_test "Check that operator can be deleted" check_operator_delete
32
32
run_test "Check that operator can be installed from outside" check_operator_install_outside
33
33
run_test "Check that operator can be installed with load balancer" check_operator_install_load_balancer
0 commit comments