Skip to content
Merged
10 changes: 7 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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]).
Expand All @@ -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

Expand All @@ -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

Expand Down
2 changes: 1 addition & 1 deletion stackable-base/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions stackable-devel/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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 <<EOF
microdnf update
Expand Down
2 changes: 1 addition & 1 deletion ubi9-rust-builder/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

# Find the latest version at https://catalog.redhat.com/software/containers/ubi9/ubi-minimal/615bd9b4075b022acc111bf5?container-tabs=gti
# IMPORTANT: Be sure to use the Manifest List Digest for multi-arch support
FROM registry.access.redhat.com/ubi9/ubi-minimal@sha256:383329bf9c4f968e87e85d30ba3a5cb988a3bbde28b8e4932dcd3a025fd9c98c AS builder
FROM registry.access.redhat.com/ubi9/ubi-minimal@sha256:2f06ae0e6d3d9c4f610d32c480338eef474867f435d8d28625f2985e8acde6e8 AS builder

LABEL maintainer="Stackable GmbH"

Expand Down