diff --git a/CHANGELOG.md b/CHANGELOG.md index dd5e5c99b..a8280048b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -39,6 +39,7 @@ All notable changes to this project will be documented in this file. - all: Use our build-repo to cache NPM dependencies ([#1219]). - java: Use a more recent Maven version for all Java based products ([#1220], [[#1293]]). - ubi9-rust-builder: Bump ubi9 base image ([#1253]). +- 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]). - vector: Bump to `0.49.0` ([#1258]). @@ -111,6 +112,7 @@ All notable changes to this project will be documented in this file. [#1314]: https://github.com/stackabletech/docker-images/pull/1314 [#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 ## [25.7.0] - 2025-07-23 diff --git a/ubi9-rust-builder/Dockerfile b/ubi9-rust-builder/Dockerfile index bf2a0c9c1..8a8548efb 100644 --- a/ubi9-rust-builder/Dockerfile +++ b/ubi9-rust-builder/Dockerfile @@ -11,17 +11,17 @@ LABEL maintainer="Stackable GmbH" # See https://github.com/rust-lang/rustup/blob/4514d36fcc9c42416176111cd841c86f7ec44b2c/rustup-init.sh#L91 # Find the latest version here: https://github.com/rust-lang/rustup/blob/master/CHANGELOG.md # renovate: datasource=github-tags packageName=rust-lang/rustup -ENV RUSTUP_VERSION=1.28.1 +ENV RUSTUP_VERSION=1.28.2 # 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 # Find the latest version here: https://github.com/protocolbuffers/protobuf/releases # Upload any newer version to nexus with ./.scripts/upload_new_protoc_version.sh # renovate: datasource=github-releases packageName=protocolbuffers/protobuf