diff --git a/CHANGELOG.md b/CHANGELOG.md index a8280048b..6ab8cd24a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -42,6 +42,7 @@ All notable changes to this project will be documented in this file. - ubi9-rust-builder: Bump Rust toolchain to `1.89.0`, rustup to `1.28.2`, and cargo-auditable to `0.7.1` ([#1318]). - stackable-base: Bump ubi9 base image ([#1253]). - stackable-devel: Bump ubi9 base image and update cargo-auditable to `0.7.0` ([#1253]). +- stackable-devel: Bump Rust toolchain to `1.89.0` and cargo-auditable to `0.7.1` ([#1319]). - vector: Bump to `0.49.0` ([#1258]). - airflow: Bump uvicorn dependency to `0.37.0` ([#1264]). - trino-cli: Bump to 477 ([#1285]). @@ -113,6 +114,7 @@ All notable changes to this project will be documented in this file. [#1315]: https://github.com/stackabletech/docker-images/pull/1315 [#1316]: https://github.com/stackabletech/docker-images/pull/1316 [#1318]: https://github.com/stackabletech/docker-images/pull/1318 +[#1319]: https://github.com/stackabletech/docker-images/pull/1319 ## [25.7.0] - 2025-07-23 diff --git a/stackable-devel/Dockerfile b/stackable-devel/Dockerfile index 244e2d76e..12faf9fb0 100644 --- a/stackable-devel/Dockerfile +++ b/stackable-devel/Dockerfile @@ -43,13 +43,13 @@ COPY stackable-base/stackable/curlrc /root/.curlrc # This SHOULD be kept in sync with operator-templating and other tools to reduce build times # Find the latest version here: https://doc.rust-lang.org/stable/releases.html # renovate: datasource=github-releases packageName=rust-lang/rust -ENV RUST_DEFAULT_TOOLCHAIN_VERSION=1.87.0 +ENV RUST_DEFAULT_TOOLCHAIN_VERSION=1.89.0 # 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.0 +ENV CARGO_AUDITABLE_CRATE_VERSION=0.7.1 RUN <