Skip to content

Commit 7397a50

Browse files
authored
release: 24.11.1 (#903)
* release 24.11.1 Signed-off-by: Andrew Kenworthy <andrew.kenworthy@stackable.de> * fix build action: replace cargo set-version with sed for release PRs --------- Signed-off-by: Andrew Kenworthy <andrew.kenworthy@stackable.de>
1 parent 3595005 commit 7397a50

File tree

10 files changed

+36
-30
lines changed

10 files changed

+36
-30
lines changed

.github/workflows/build.yml

+6-2
Original file line numberDiff line numberDiff line change
@@ -350,13 +350,15 @@ jobs:
350350
run: cargo set-version --offline --workspace 0.0.0-pr${{ github.event.pull_request.number }}
351351
- name: Update version if PR against non-main branch
352352
# For PRs to be merged against a release branch, use the version that has already been set in the calling script.
353+
# We can't rely on cargo set-version here as we will break semver rules when changing the version to make it
354+
# specific to this PR e.g. 1.2.0 --> 1.2.0-pr678, so set it manually.
353355
if: ${{ github.event_name == 'pull_request' && github.ref != 'refs/heads/main' }}
354356
env:
355357
PR_NUMBER: ${{ github.event.pull_request.number }}
356358
run: |
357359
MANIFEST_VERSION=$(cargo metadata --format-version 1 --no-deps | jq -r '.packages[0].version')
358360
PR_VERSION="${MANIFEST_VERSION}-pr${PR_NUMBER}"
359-
cargo set-version --offline --workspace "$PR_VERSION"
361+
sed -i "s/version = \"${MANIFEST_VERSION}\"/version = \"${PR_VERSION}\"/" Cargo.toml
360362
361363
# Recreate charts and publish charts and docker image. The "-e" is needed as we want to override the
362364
# default value in the makefile if called from this action, but not otherwise (i.e. when called locally).
@@ -425,13 +427,15 @@ jobs:
425427
run: cargo set-version --offline --workspace 0.0.0-pr${{ github.event.pull_request.number }}
426428
- name: Update version if PR against non-main branch
427429
# For PRs to be merged against a release branch, use the version that has already been set in the calling script.
430+
# We can't rely on cargo set-version here as we will break semver rules when changing the version to make it
431+
# specific to this PR e.g. 1.2.0 --> 1.2.0-pr678, so set it manually.
428432
if: ${{ github.event_name == 'pull_request' && github.ref != 'refs/heads/main' }}
429433
env:
430434
PR_NUMBER: ${{ github.event.pull_request.number }}
431435
run: |
432436
MANIFEST_VERSION=$(cargo metadata --format-version 1 --no-deps | jq -r '.packages[0].version')
433437
PR_VERSION="${MANIFEST_VERSION}-pr${PR_NUMBER}"
434-
cargo set-version --offline --workspace "$PR_VERSION"
438+
sed -i "s/version = \"${MANIFEST_VERSION}\"/version = \"${PR_VERSION}\"/" Cargo.toml
435439
- name: Build manifest list
436440
run: |
437441
# Creating manifest list

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file.
44

55
## [Unreleased]
66

7+
## [24.11.1] - 2025-01-10
8+
79
## [24.11.1-rc2] - 2024-12-12
810

911
## [24.11.1-rc1] - 2024-12-06

Cargo.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.nix

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ members = ["rust/crd", "rust/operator-binary"]
33
resolver = "2"
44

55
[workspace.package]
6-
version = "24.11.1-rc2"
6+
version = "24.11.1"
77
authors = ["Stackable GmbH <info@stackable.tech>"]
88
license = "OSL-3.0"
99
edition = "2021"

deploy/helm/zookeeper-operator/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
apiVersion: v2
33
name: zookeeper-operator
4-
version: "24.11.1-rc2"
5-
appVersion: "24.11.1-rc2"
4+
version: "24.11.1"
5+
appVersion: "24.11.1"
66
description: The Stackable Operator for Apache ZooKeeper
77
home: https://github.com/stackabletech/zookeeper-operator
88
maintainers:

docs/modules/zookeeper/examples/getting_started/code/getting_started.sh

+9-9
Original file line numberDiff line numberDiff line change
@@ -28,20 +28,20 @@ helm repo update
2828

2929
echo "Installing Operators with Helm"
3030
# tag::helm-install-operators[]
31-
helm install --wait commons-operator stackable-stable/commons-operator --version 24.11.1-rc2
32-
helm install --wait secret-operator stackable-stable/secret-operator --version 24.11.1-rc2
33-
helm install --wait listener-operator stackable-stable/listener-operator --version 24.11.1-rc2
34-
helm install --wait zookeeper-operator stackable-stable/zookeeper-operator --version 24.11.1-rc2
31+
helm install --wait commons-operator stackable-stable/commons-operator --version 24.11.1
32+
helm install --wait secret-operator stackable-stable/secret-operator --version 24.11.1
33+
helm install --wait listener-operator stackable-stable/listener-operator --version 24.11.1
34+
helm install --wait zookeeper-operator stackable-stable/zookeeper-operator --version 24.11.1
3535
# end::helm-install-operators[]
3636
;;
3737
"stackablectl")
3838
echo "installing Operators with stackablectl"
3939
# tag::stackablectl-install-operators[]
4040
stackablectl operator install \
41-
commons=24.11.1-rc2 \
42-
secret=24.11.1-rc2 \
43-
listener=24.11.1-rc2 \
44-
zookeeper=24.11.1-rc2
41+
commons=24.11.1 \
42+
secret=24.11.1 \
43+
listener=24.11.1 \
44+
zookeeper=24.11.1
4545
# end::stackablectl-install-operators[]
4646
;;
4747
*)
@@ -70,7 +70,7 @@ zkCli_ls() {
7070
# tag::zkcli-ls[]
7171
kubectl run my-pod \
7272
--stdin --tty --quiet --restart=Never \
73-
--image docker.stackable.tech/stackable/zookeeper:3.9.2-stackable24.11.1-rc2 -- \
73+
--image docker.stackable.tech/stackable/zookeeper:3.9.2-stackable24.11.1 -- \
7474
bin/zkCli.sh -server simple-zk-server-default:2282 ls / > /dev/null && \
7575
kubectl logs my-pod && \
7676
kubectl delete pods my-pod
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Installed commons=24.11.1-rc2 operator
2-
Installed secret=24.11.1-rc2 operator
3-
Installed listener=24.11.1-rc2 operator
4-
Installed zookeeper=24.11.1-rc2 operator
1+
Installed commons=24.11.1 operator
2+
Installed secret=24.11.1 operator
3+
Installed listener=24.11.1 operator
4+
Installed zookeeper=24.11.1 operator

docs/templating_vars.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ helm:
33
repo_name: stackable-stable
44
repo_url: https://repo.stackable.tech/repository/helm-stable/
55
versions:
6-
commons: 24.11.1-rc2
7-
secret: 24.11.1-rc2
8-
listener: 24.11.1-rc2
9-
zookeeper: 24.11.1-rc2
6+
commons: 24.11.1
7+
secret: 24.11.1
8+
listener: 24.11.1
9+
zookeeper: 24.11.1

tests/release.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ releases:
77
description: Integration test
88
products:
99
commons:
10-
operatorVersion: 24.11.1-rc2
10+
operatorVersion: 24.11.1
1111
secret:
12-
operatorVersion: 24.11.1-rc2
12+
operatorVersion: 24.11.1
1313
listener:
14-
operatorVersion: 24.11.1-rc2
14+
operatorVersion: 24.11.1
1515
zookeeper:
16-
operatorVersion: 24.11.1-rc2
16+
operatorVersion: 24.11.1

0 commit comments

Comments
 (0)