diff --git a/CHANGELOG.md b/CHANGELOG.md index b4cd95b4a..1e3b9da38 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -46,7 +46,7 @@ All notable changes to this project will be documented in this file. - 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 and cargo auditable versions ([#1432]). - stackable-base: Bump ubi9 image hash ([#1433]). -- stackable-devel: Bump ubi9 image hash ([#1433]). +- stackable-devel: Bump ubi9 image hash, update rust toolchain ([#1433], [#1435]). ### Removed @@ -112,6 +112,7 @@ All notable changes to this project will be documented in this file. [#1429]: https://github.com/stackabletech/docker-images/pull/1429 [#1432]: https://github.com/stackabletech/docker-images/pull/1432 [#1433]: https://github.com/stackabletech/docker-images/pull/1433 +[#1435]: https://github.com/stackabletech/docker-images/pull/1435 ## [25.11.0] - 2025-11-07 diff --git a/stackable-devel/Dockerfile b/stackable-devel/Dockerfile index acefa682d..cdec8f426 100644 --- a/stackable-devel/Dockerfile +++ b/stackable-devel/Dockerfile @@ -47,14 +47,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.93.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 <