diff --git a/CHANGELOG.md b/CHANGELOG.md index a037a95f9..345a8ee43 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ All notable changes to this project will be documented in this file. ### Added -- ubi9-rust-builder: Include `.tar.gz` snapshots of the operator source code in container images ([#1207]) +- ubi9-rust-builder: Include `.tar.gz` snapshots of the operator source code in container images ([#1207]). - opensearch: Add Opensearch as new product with version `3.1.0` ([#1215]). - opensearch: Use build-repo.stackable.tech instead of Maven Central ([#1222]). - opensearch: Add the `opensearch-prometheus-exporter` plugin to the image ([#1223]). @@ -16,8 +16,11 @@ All notable changes to this project will be documented in this file. ### Changed -- all: Use our build-repo to cache NPM dependencies ([#1219]) -- java: Use a more recent Maven version for all Java based products ([#1220]) +- all: Use our build-repo to cache NPM dependencies ([#1219]). +- java: Use a more recent Maven version for all Java based products ([#1220]). +- ubi9-rust-builder: Bump ubi9 base image ([#1253]). +- stackable-base: Bump ubi9 base image ([#1253]). +- stackable-devel: Bump ubi9 base image and update cargo-auditable to `0.7.0` ([#1253]). ### Removed @@ -33,6 +36,7 @@ All notable changes to this project will be documented in this file. [#1228]: https://github.com/stackabletech/docker-images/pull/1228 [#1230]: https://github.com/stackabletech/docker-images/pull/1230 [#1247]: https://github.com/stackabletech/docker-images/pull/1247 +[#1253]: https://github.com/stackabletech/docker-images/pull/1253 ## [25.7.0] - 2025-07-23 diff --git a/stackable-base/Dockerfile b/stackable-base/Dockerfile index 4648b8a18..e66245c4f 100644 --- a/stackable-base/Dockerfile +++ b/stackable-base/Dockerfile @@ -39,7 +39,7 @@ EOF # Find the latest version at https://catalog.redhat.com/software/containers/ubi9/ubi-minimal/615bd9b4075b022acc111bf5?container-tabs=gti # IMPORTANT: Make sure to use the "Manifest List Digest" that references the images for multiple architectures # rather than just the "Image Digest" that references the image for the selected architecture. -FROM registry.access.redhat.com/ubi9/ubi-minimal@sha256:383329bf9c4f968e87e85d30ba3a5cb988a3bbde28b8e4932dcd3a025fd9c98c AS final +FROM registry.access.redhat.com/ubi9/ubi-minimal@sha256:2f06ae0e6d3d9c4f610d32c480338eef474867f435d8d28625f2985e8acde6e8 AS final # intentionally unused ARG PRODUCT_VERSION diff --git a/stackable-devel/Dockerfile b/stackable-devel/Dockerfile index 2fa805a20..244e2d76e 100644 --- a/stackable-devel/Dockerfile +++ b/stackable-devel/Dockerfile @@ -11,7 +11,7 @@ # Find the latest version at https://catalog.redhat.com/software/containers/ubi9/ubi-minimal/615bd9b4075b022acc111bf5?container-tabs=gti # IMPORTANT: Make sure to use the "Manifest List Digest" that references the images for multiple architectures # rather than just the "Image Digest" that references the image for the selected architecture. -FROM registry.access.redhat.com/ubi9/ubi-minimal@sha256:383329bf9c4f968e87e85d30ba3a5cb988a3bbde28b8e4932dcd3a025fd9c98c +FROM registry.access.redhat.com/ubi9/ubi-minimal@sha256:2f06ae0e6d3d9c4f610d32c480338eef474867f435d8d28625f2985e8acde6e8 # intentionally unused ARG PRODUCT_VERSION @@ -49,7 +49,7 @@ ENV RUST_DEFAULT_TOOLCHAIN_VERSION=1.87.0 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.6.6 +ENV CARGO_AUDITABLE_CRATE_VERSION=0.7.0 RUN <