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
sh -x stackgres-k8s/ci/utils/update-version.sh "1.14.0-rc2"
29
+
sh -x stackgres-k8s/ci/utils/update-version.sh "1.14.0-rc3"
30
30
```
31
31
1. [ ] Update `CHANGELOG.md` (review commit messages to populate the changelog: `git log`)
32
-
1. [ ] Add 1.14.0-rc2 section in `doc/content/en/01-introduction/06-versions/_index.md` with values from `stackgres-k8s/src/common/src/main/resources/versions.properties`
32
+
1. [ ] Add 1.14.0-rc3 section in `doc/content/en/01-introduction/06-versions/_index.md` with values from `stackgres-k8s/src/common/src/main/resources/versions.properties`
33
33
1. [ ] Check the changes to ensure everything is correct before commit:
34
34
```
35
35
git diff
36
36
```
37
-
1. [ ] Commit changes with message `version: 1.14.0-rc2`:
37
+
1. [ ] Commit changes with message `version: 1.14.0-rc3`:
38
38
```
39
-
git commit -S -a -m "version: 1.14.0-rc2"
39
+
git commit -S -a -m "version: 1.14.0-rc3"
40
40
```
41
-
1. [ ] Push `release-1.14.0-rc2` branch:
41
+
1. [ ] Push `release-1.14.0-rc3` branch:
42
42
43
43
**This step requires at least one ARM instance with docker installed and a gitlab runner registered with the StackGres project. All this setup is already built in a template. The only action we need to do is scale up the auto-scaling group `sg-army-builder` auto scaling group.**
44
44
@@ -53,9 +53,9 @@ sh stackgres-k8s/ci/utils/generate-release-template.sh $VERSION
1. [ ] Perform preflight for operator images (make each of them pass pass the index health check by opening each image project):
@@ -66,16 +66,16 @@ sh stackgres-k8s/ci/utils/generate-release-template.sh $VERSION
66
66
67
67
```
68
68
cd stackgres-k8s/install/operator-sdk/openshift-certification/
69
-
STACKGRES_VERSION="1.14.0-rc2" IMAGE_TAG="$(git rev-parse --short=8 HEAD)" sh get-images.sh | grep -F quay.io/stackgres/ | sed 's#quay\.io/stackgres/#registry.gitlab.com/ongresinc/stackgres/stackgres/#' | xargs -I % sh preflight.sh %
69
+
STACKGRES_VERSION="1.14.0-rc3" IMAGE_TAG="$(git rev-parse --short=8 HEAD)" sh get-images.sh | grep -F quay.io/stackgres/ | sed 's#quay\.io/stackgres/#registry.gitlab.com/ongresinc/stackgres/stackgres/#' | xargs -I % sh preflight.sh %
70
70
```
71
71
72
-
1. [ ] Create tag `1.14.0-rc2`:
72
+
1. [ ] Create tag `1.14.0-rc3`:
73
73
```
74
-
git tag "1.14.0-rc2"
74
+
git tag "1.14.0-rc3"
75
75
```
76
-
1. [ ] Push tag `1.14.0-rc2` to the origin and wait for the pipeline to complete:
76
+
1. [ ] Push tag `1.14.0-rc3` to the origin and wait for the pipeline to complete:
77
77
```
78
-
git push origin "1.14.0-rc2"
78
+
git push origin "1.14.0-rc3"
79
79
```
80
80
1. [ ] After pipeline succeeded, scale down the ARM runners (or terminate the instance created with the script):
81
81
```
@@ -88,7 +88,7 @@ sh stackgres-k8s/ci/utils/generate-release-template.sh $VERSION
88
88
89
89
```
90
90
cd stackgres-k8s/install/operator-sdk/openshift-certification/
91
-
STACKGRES_VERSION="1.14.0-rc2" IMAGE_TAG="1.14.0-rc2" sh get-images.sh | grep -F quay.io/stackgres/ | xargs -I % sh preflight.sh %
91
+
STACKGRES_VERSION="1.14.0-rc3" IMAGE_TAG="1.14.0-rc3" sh get-images.sh | grep -F quay.io/stackgres/ | xargs -I % sh preflight.sh %
92
92
```
93
93
1. [ ] Create PR on Red Hat Certified Operators (wait for its completion):
94
94
> File that export environment variable `FORK_GIT_URL` with the git URL (make sure user can perform push on such URL) of the project that forks project `https://github.com/redhat-openshift-ecosystem/redhat-marketplace-operators` must be specified in POSIX shell script with path `~/.stackgres/operator-bundle-red-hat-certified-config`
@@ -101,15 +101,15 @@ sh stackgres-k8s/ci/utils/generate-release-template.sh $VERSION
101
101
> The pipeline may fail and some changes to the operator bunle may be required. Perform such changes only on path `stackgres-k8s/install/operator-sdk/stackgres-operator/` on a separate branch:
> When PR is merged create a MR to `main-1.14.0-rc2` branch.
112
+
> When PR is merged create a MR to `main-1.14.0-rc3` branch.
113
113
1. [ ] Create PR on Red Hat Marketplace Operators (wait for its completion):
114
114
> File that export environment variable `FORK_GIT_URL` with the git URL (make sure user can perform push on such URL) of the project that forks project `https://github.com/redhat-openshift-ecosystem/certified-operators` must be specified in POSIX shell script with path `~/.stackgres/operator-bundle-red-hat-certified-config`
115
115
@@ -121,15 +121,15 @@ sh stackgres-k8s/ci/utils/generate-release-template.sh $VERSION
121
121
> The pipeline may fail and some changes to the operator bunle may be required. Perform such changes only on path `stackgres-k8s/install/operator-sdk/stackgres-operator/` on a separate branch:
> When PR is merged create a MR to `main-1.14.0-rc2` branch.
132
+
> When PR is merged create a MR to `main-1.14.0-rc3` branch.
133
133
1. [ ] Create PR on Red Hat Community Operators (wait for its completion):
134
134
> File that export environment variable `FORK_GIT_URL` with the git URL (make sure user can perform push on such URL) of the project that forks project `https://github.com/redhat-openshift-ecosystem/community-operators-prod` must be specified in POSIX shell script with path `~/.stackgres/operator-bundle-red-hat-community-config`
135
135
@@ -141,15 +141,15 @@ sh stackgres-k8s/ci/utils/generate-release-template.sh $VERSION
141
141
> The pipeline may fail and some changes to the operator bunle may be required. Perform such changes only on path `stackgres-k8s/install/operator-sdk/stackgres-operator/` on a separate branch:
> When PR is merged create a MR to `main-1.14.0-rc2` branch.
152
+
> When PR is merged create a MR to `main-1.14.0-rc3` branch.
153
153
1. [ ] Create PR on OperatorHub (wait for its completion):
154
154
> File that export environment variable `FORK_GIT_URL` with the git URL (make sure user can perform push on such URL) of the project that forks project `https://github.com/k8s-operatorhub/community-operators` must be specified in POSIX shell script with path `~/.stackgres/operator-bundle-operatorhub-config`
155
155
@@ -161,37 +161,37 @@ sh stackgres-k8s/ci/utils/generate-release-template.sh $VERSION
161
161
> The pipeline may fail and some changes to the operator bunle may be required. Perform such changes only on path `stackgres-k8s/install/operator-sdk/stackgres-operator/` on a separate branch:
> When PR is merged create a MR to `main-1.14.0-rc2` branch.
173
-
1. [ ] Edit the [release notes of tag 1.14.0-rc2](https://gitlab.com/ongresinc/stackgres/-/releases/new?tag_name=1.14.0-rc2) by Copying and Pasting `CHANGELOG.md` section for version `1.14.0-rc2` (GitLab)
174
-
1. [ ] Merge local branch `release-1.14.0-rc2` into `main-1.14`:
172
+
> When PR is merged create a MR to `main-1.14.0-rc3` branch.
173
+
1. [ ] Edit the [release notes of tag 1.14.0-rc3](https://gitlab.com/ongresinc/stackgres/-/releases/new?tag_name=1.14.0-rc3) by Copying and Pasting `CHANGELOG.md` section for version `1.14.0-rc3` (GitLab)
174
+
1. [ ] Merge local branch `release-1.14.0-rc3` into `main-1.14`:
1. [ ] Merge branch `main-1.14` into `merge-1.14.0-rc2`:
188
+
1. [ ] Merge branch `main-1.14` into `merge-1.14.0-rc3`:
189
189
```
190
190
git merge "main-1.14"
191
191
```
192
-
1. [ ] Push `merge-1.14.0-rc2` to origin, create the merge request to merge it into `main` and wait for the pipeline to complete fixing any encountered issues:
192
+
1. [ ] Push `merge-1.14.0-rc3` to origin, create the merge request to merge it into `main` and wait for the pipeline to complete fixing any encountered issues:
193
193
```
194
-
git push origin "merge-1.14.0-rc2"
194
+
git push origin "merge-1.14.0-rc3"
195
195
```
196
196
197
197
# Deploy Web
@@ -202,10 +202,10 @@ sh stackgres-k8s/ci/utils/generate-release-template.sh $VERSION
202
202
git checkout development && git pull
203
203
```
204
204
1. [ ] Edit `.gitlab-ci.yml`:
205
-
* Change `STACKGRES_FULL_VERSIONS` by setting `1.14.0-rc2` as the first value.
206
-
1. [ ] Commit changes with message `version: 1.14.0-rc2`:
205
+
* Change `STACKGRES_FULL_VERSIONS` by setting `1.14.0-rc3` as the first value.
206
+
1. [ ] Commit changes with message `version: 1.14.0-rc3`:
207
207
```
208
-
git commit -a -m 'version: 1.14.0-rc2'
208
+
git commit -a -m 'version: 1.14.0-rc3'
209
209
```
210
210
1. [ ] Push development to origin:
211
211
```
@@ -216,17 +216,17 @@ sh stackgres-k8s/ci/utils/generate-release-template.sh $VERSION
@@ -238,11 +238,11 @@ sh stackgres-k8s/ci/utils/generate-release-template.sh $VERSION
238
238
# Changelog
239
239
240
240
~~~
241
-
# :rocket: Release 1.14.0-rc2 (${DATE})
241
+
# :rocket: Release 1.14.0-rc3 (${DATE})
242
242
243
243
## :notepad_spiral: NOTES
244
244
245
-
StackGres 1.14.0-rc2 is out! :confetti_ball: :champagne:
245
+
StackGres 1.14.0-rc3 is out! :confetti_ball: :champagne:
246
246
247
247
So, what you are waiting for to try this release and have a look to the future of StackGres!
248
248
@@ -273,15 +273,15 @@ To upgrade from a previous installation of the StackGres operator's helm chart y
273
273
274
274
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.
279
279
280
280
Thank you for all the issues created, ideas, and code contributions by the StackGres Community!
281
281
282
-
## :twisted_rightwards_arrows: [FULL LIST OF COMMITS](https://gitlab.com/ongresinc/stackgres/-/commits/1.14.0-rc2)
282
+
## :twisted_rightwards_arrows: [FULL LIST OF COMMITS](https://gitlab.com/ongresinc/stackgres/-/commits/1.14.0-rc3)
Copy file name to clipboardExpand all lines: CHANGELOG.md
+64Lines changed: 64 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,67 @@
1
+
# :rocket: Release 1.14.0-rc2 (29-10-2024)
2
+
3
+
## :notepad_spiral: NOTES
4
+
5
+
StackGres 1.14.0-rc2 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 Deployment, allowing to export them
8
+
in a variety of platforms other than Prometheus. But we also included 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
+
* Support OpenShift 4.17
16
+
* Added OpenTelemetry Collector layer
17
+
* Added common retry logic to backup and sharded backup and extended its usage
18
+
19
+
## Web Console
20
+
21
+
* Support for SGStreams in the Web Console
22
+
* Include graphs for TPS, percentile histogram and most used statements on becnhmark status
23
+
24
+
## :bug: FIXES
25
+
26
+
* SGStream fields are not rendered in the CSV of operator bundle
27
+
* Allow sgconfig to be installed before operator
28
+
* Backup using volume snapshot do not wait on conflict
29
+
* Sharded cluster is not setting any postgres services configuration
30
+
* Replication initialization is not using the latest backup
31
+
* Backups, dbops, sharded backups and sharded dbops change to completed state only on full resync
32
+
* Sharded dbops/backup do not cleanup previous dbops/backup when retrying
33
+
* Disable pager for patroni container
34
+
* Validating webhook returns 500 on wrong enum values
35
+
* Avoid removing resources when owner is deleted
36
+
* Avoid adding StatefulSet owner reference on PVC to avoid deletion on removal
37
+
* pg_replication_is_replica metric has no unique labels
38
+
* Disable pager for patroni container
39
+
* Sharded backup run forewer if a generated SGBackup not yet completed is removed
40
+
* Backup configuration interfere with replicate from
41
+
42
+
## Web Console
43
+
44
+
Nothing new here! :eyes:
45
+
46
+
## :construction: KNOWN ISSUES
47
+
48
+
* 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))
49
+
50
+
## :up: UPGRADE
51
+
52
+
To upgrade from a previous installation of the StackGres operator's helm chart you will have to upgrade the helm chart release.
53
+
For more detailed information please refer to [our documentation](https://stackgres.io/doc/latest/install/helm/upgrade/#upgrade-operator).
54
+
55
+
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.
60
+
61
+
Thank you for all the issues created, ideas, and code contributions by the StackGres Community!
62
+
63
+
## :twisted_rightwards_arrows:[FULL LIST OF COMMITS](https://gitlab.com/ongresinc/stackgres/-/commits/1.14.0-rc2)
0 commit comments