diff --git a/.github/workflows/boil_pr.yaml b/.github/workflows/boil_pr.yaml index 2d548d9d1..da8951eff 100644 --- a/.github/workflows/boil_pr.yaml +++ b/.github/workflows/boil_pr.yaml @@ -10,7 +10,7 @@ on: - "Cargo.*" env: - RUST_VERSION: 1.89.0 + RUST_VERSION: 1.92.0 jobs: # This job is always run to ensure we don't miss any new upstream advisories diff --git a/.github/workflows/boil_release.yaml b/.github/workflows/boil_release.yaml index 7121ed7ea..7a8767b43 100644 --- a/.github/workflows/boil_release.yaml +++ b/.github/workflows/boil_release.yaml @@ -7,7 +7,7 @@ on: - "boil-[0-9]+.[0-9]+.[0-9]+**" env: - RUST_VERSION: 1.89.0 + RUST_VERSION: 1.92.0 jobs: create-release: diff --git a/CHANGELOG.md b/CHANGELOG.md index 304c146fb..ebd8051e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -43,6 +43,7 @@ All notable changes to this project will be documented in this file. Pull logging dependencies with `mvn` instead of `curl` to remove manual maintenance in Nexus `packages`. - hbase: Update `hbase-operator-tools` from `1.3.0-fd5a5fb` to `1.3.0` ([#1425]). - nifi: Backported NiFi-15567 to NiFi 2.6.0 and 2.7.2 to fix CVE CVE-2026-25903 ([#1429]). +- ubi9-rust-builder: Bump Rust toolchain to `1.92.0`, and cargo-auditable to `0.7.2` ([#XXXX]). ### Removed @@ -106,6 +107,7 @@ All notable changes to this project will be documented in this file. [#1426]: https://github.com/stackabletech/docker-images/pull/1426 [#1428]: https://github.com/stackabletech/docker-images/pull/1428 [#1429]: https://github.com/stackabletech/docker-images/pull/1429 +[#XXXX]: https://github.com/stackabletech/docker-images/pull/XXXX ## [25.11.0] - 2025-11-07 diff --git a/rust-toolchain.toml b/rust-toolchain.toml index 65c0d610c..9cf77fc11 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,3 +1,3 @@ [toolchain] -channel = "1.89.0" +channel = "1.92.0" profile = "default" diff --git a/stackable-devel/Dockerfile b/stackable-devel/Dockerfile index 1ec4b1af6..b1e12c4d6 100644 --- a/stackable-devel/Dockerfile +++ b/stackable-devel/Dockerfile @@ -44,14 +44,14 @@ COPY stackable-base/stackable/curlrc /root/.curlrc # Find the latest version here: https://doc.rust-lang.org/stable/releases.html # TODO (@NickLarsenNZ): Move the version into boil-config.toml once renovate can look there # renovate: datasource=github-releases packageName=rust-lang/rust -ARG RUST_DEFAULT_TOOLCHAIN_VERSION=1.89.0 +ARG RUST_DEFAULT_TOOLCHAIN_VERSION=1.92.0 ENV RUST_DEFAULT_TOOLCHAIN_VERSION=${RUST_DEFAULT_TOOLCHAIN_VERSION} # Find the latest version here: https://crates.io/crates/cargo-cyclonedx # renovate: datasource=crate packageName=cargo-cyclonedx ENV CARGO_CYCLONEDX_CRATE_VERSION=0.5.7 # Find the latest version here: https://crates.io/crates/cargo-auditable # renovate: datasource=crate packageName=cargo-auditable -ENV CARGO_AUDITABLE_CRATE_VERSION=0.7.1 +ENV CARGO_AUDITABLE_CRATE_VERSION=0.7.2 RUN <