diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4b4abe75..9217c8ce 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -350,13 +350,15 @@ jobs: run: cargo set-version --offline --workspace 0.0.0-pr${{ github.event.pull_request.number }} - name: Update version if PR against non-main branch # For PRs to be merged against a release branch, use the version that has already been set in the calling script. + # We can't rely on cargo set-version here as we will break semver rules when changing the version to make it + # specific to this PR e.g. 1.2.0 --> 1.2.0-pr678, so set it manually. if: ${{ github.event_name == 'pull_request' && github.ref != 'refs/heads/main' }} env: PR_NUMBER: ${{ github.event.pull_request.number }} run: | MANIFEST_VERSION=$(cargo metadata --format-version 1 --no-deps | jq -r '.packages[0].version') PR_VERSION="${MANIFEST_VERSION}-pr${PR_NUMBER}" - cargo set-version --offline --workspace "$PR_VERSION" + sed -i "s/version = \"${MANIFEST_VERSION}\"/version = \"${PR_VERSION}\"/" Cargo.toml # Recreate charts and publish charts and docker image. The "-e" is needed as we want to override the # default value in the makefile if called from this action, but not otherwise (i.e. when called locally). @@ -425,13 +427,15 @@ jobs: run: cargo set-version --offline --workspace 0.0.0-pr${{ github.event.pull_request.number }} - name: Update version if PR against non-main branch # For PRs to be merged against a release branch, use the version that has already been set in the calling script. + # We can't rely on cargo set-version here as we will break semver rules when changing the version to make it + # specific to this PR e.g. 1.2.0 --> 1.2.0-pr678, so set it manually. if: ${{ github.event_name == 'pull_request' && github.ref != 'refs/heads/main' }} env: PR_NUMBER: ${{ github.event.pull_request.number }} run: | MANIFEST_VERSION=$(cargo metadata --format-version 1 --no-deps | jq -r '.packages[0].version') PR_VERSION="${MANIFEST_VERSION}-pr${PR_NUMBER}" - cargo set-version --offline --workspace "$PR_VERSION" + sed -i "s/version = \"${MANIFEST_VERSION}\"/version = \"${PR_VERSION}\"/" Cargo.toml - name: Build manifest list run: | # Creating manifest list diff --git a/CHANGELOG.md b/CHANGELOG.md index e0a2635a..e2d3b41e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## [Unreleased] +## [24.11.1] - 2025-01-09 + ## [24.11.1-rc2] - 2024-12-12 ## [24.11.1-rc1] - 2024-12-05 diff --git a/Cargo.lock b/Cargo.lock index a12b94ae..e0c2ab4e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2172,7 +2172,7 @@ checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" [[package]] name = "stackable-airflow-crd" -version = "24.11.1-rc2" +version = "24.11.1" dependencies = [ "indoc", "product-config", @@ -2189,7 +2189,7 @@ dependencies = [ [[package]] name = "stackable-airflow-operator" -version = "24.11.1-rc2" +version = "24.11.1" dependencies = [ "anyhow", "built", diff --git a/Cargo.nix b/Cargo.nix index 731ef513..802fccbd 100644 --- a/Cargo.nix +++ b/Cargo.nix @@ -6677,7 +6677,7 @@ rec { }; "stackable-airflow-crd" = rec { crateName = "stackable-airflow-crd"; - version = "24.11.1-rc2"; + version = "24.11.1"; edition = "2021"; src = lib.cleanSourceWith { filter = sourceFilter; src = ./rust/crd; }; libName = "stackable_airflow_crd"; @@ -6739,7 +6739,7 @@ rec { }; "stackable-airflow-operator" = rec { crateName = "stackable-airflow-operator"; - version = "24.11.1-rc2"; + version = "24.11.1"; edition = "2021"; crateBin = [ { diff --git a/Cargo.toml b/Cargo.toml index 3bfb7a3d..b1f7f738 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["rust/crd", "rust/operator-binary"] resolver = "2" [workspace.package] -version = "24.11.1-rc2" +version = "24.11.1" authors = ["Stackable GmbH "] license = "OSL-3.0" edition = "2021" diff --git a/deploy/helm/airflow-operator/Chart.yaml b/deploy/helm/airflow-operator/Chart.yaml index 94cc6c35..127d4634 100644 --- a/deploy/helm/airflow-operator/Chart.yaml +++ b/deploy/helm/airflow-operator/Chart.yaml @@ -1,8 +1,8 @@ --- apiVersion: v2 name: airflow-operator -version: "24.11.1-rc2" -appVersion: "24.11.1-rc2" +version: "24.11.1" +appVersion: "24.11.1" description: The Stackable Operator for Apache Airflow home: https://github.com/stackabletech/airflow-operator maintainers: diff --git a/docs/modules/airflow/examples/getting_started/code/getting_started.sh b/docs/modules/airflow/examples/getting_started/code/getting_started.sh index 5df404bb..d6cc716c 100755 --- a/docs/modules/airflow/examples/getting_started/code/getting_started.sh +++ b/docs/modules/airflow/examples/getting_started/code/getting_started.sh @@ -44,20 +44,20 @@ echo "Updating Helm repo" helm repo update echo "Installing Operators with Helm" # tag::helm-install-operators[] -helm install --wait commons-operator stackable-stable/commons-operator --version 24.11.1-rc2 -helm install --wait secret-operator stackable-stable/secret-operator --version 24.11.1-rc2 -helm install --wait listener-operator stackable-stable/listener-operator --version 24.11.1-rc2 -helm install --wait airflow-operator stackable-stable/airflow-operator --version 24.11.1-rc2 +helm install --wait commons-operator stackable-stable/commons-operator --version 24.11.1 +helm install --wait secret-operator stackable-stable/secret-operator --version 24.11.1 +helm install --wait listener-operator stackable-stable/listener-operator --version 24.11.1 +helm install --wait airflow-operator stackable-stable/airflow-operator --version 24.11.1 # end::helm-install-operators[] ;; "stackablectl") echo "installing Operators with stackablectl" # tag::stackablectl-install-operators[] stackablectl operator install \ - commons=24.11.1-rc2 \ - secret=24.11.1-rc2 \ - listener=24.11.1-rc2 \ - airflow=24.11.1-rc2 + commons=24.11.1 \ + secret=24.11.1 \ + listener=24.11.1 \ + airflow=24.11.1 # end::stackablectl-install-operators[] ;; *) diff --git a/docs/modules/airflow/examples/getting_started/code/install_output.txt b/docs/modules/airflow/examples/getting_started/code/install_output.txt index 1187d3da..70f01b6f 100644 --- a/docs/modules/airflow/examples/getting_started/code/install_output.txt +++ b/docs/modules/airflow/examples/getting_started/code/install_output.txt @@ -1,4 +1,4 @@ -Installed commons=24.11.1-rc2 operator -Installed secret=24.11.1-rc2 operator -Installed listener=24.11.1-rc2 operator -Installed airflow=24.11.1-rc2 operator +Installed commons=24.11.1 operator +Installed secret=24.11.1 operator +Installed listener=24.11.1 operator +Installed airflow=24.11.1 operator diff --git a/docs/templating_vars.yaml b/docs/templating_vars.yaml index ea3c4543..0c973875 100644 --- a/docs/templating_vars.yaml +++ b/docs/templating_vars.yaml @@ -3,9 +3,9 @@ helm: repo_name: stackable-stable repo_url: https://repo.stackable.tech/repository/helm-stable/ versions: - commons: 24.11.1-rc2 - secret: 24.11.1-rc2 - listener: 24.11.1-rc2 - airflow: 24.11.1-rc2 + commons: 24.11.1 + secret: 24.11.1 + listener: 24.11.1 + airflow: 24.11.1 postgresql: 12.1.5 redis: 17.3.7 diff --git a/tests/release.yaml b/tests/release.yaml index 989cacd5..cf4e8781 100644 --- a/tests/release.yaml +++ b/tests/release.yaml @@ -7,12 +7,12 @@ releases: description: Integration test products: commons: - operatorVersion: 24.11.1-rc2 + operatorVersion: 24.11.1 secret: - operatorVersion: 24.11.1-rc2 + operatorVersion: 24.11.1 listener: - operatorVersion: 24.11.1-rc2 + operatorVersion: 24.11.1 airflow: - operatorVersion: 24.11.1-rc2 + operatorVersion: 24.11.1 spark-k8s: - operatorVersion: 24.11.1-rc2 + operatorVersion: 24.11.1