From 6f12fa4fdbdfda21596d5f99309a4f2fbd757e90 Mon Sep 17 00:00:00 2001 From: 2003Aditya Date: Tue, 4 Nov 2025 22:59:33 +0530 Subject: [PATCH 1/2] fix(docs): update Spring Boot version and add note about version auto-selection (#23407) --- .../docker-concepts/building-images/multi-stage-builds.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/content/get-started/docker-concepts/building-images/multi-stage-builds.md b/content/get-started/docker-concepts/building-images/multi-stage-builds.md index fd77fe5f3ee4..189148eff3b5 100644 --- a/content/get-started/docker-concepts/building-images/multi-stage-builds.md +++ b/content/get-started/docker-concepts/building-images/multi-stage-builds.md @@ -58,8 +58,9 @@ In this hands-on guide, you'll unlock the power of multi-stage builds to create 1. [Download and install](https://www.docker.com/products/docker-desktop/) Docker Desktop. -2. Open this [pre-initialized project](https://start.spring.io/#!type=maven-project&language=java&platformVersion=3.4.0-M3&packaging=jar&jvmVersion=21&groupId=com.example&artifactId=spring-boot-docker&name=spring-boot-docker&description=Demo%20project%20for%20Spring%20Boot&packageName=com.example.spring-boot-docker&dependencies=web) to generate a ZIP file. Here’s how that looks: +2. Open this [pre-initialized project](https://start.spring.io/#!type=maven-project&language=java&platformVersion=3.4.11&packaging=jar&jvmVersion=21&groupId=com.example&artifactId=spring-boot-docker&name=spring-boot-docker&description=Demo%20project%20for%20Spring%20Boot&packageName=com.example.spring-boot-docker&dependencies=web) to generate a ZIP file. +> **Note:** The Spring Boot version in this example (`3.4.11`) may differ in the future as newer versions are released. Spring Initializr will automatically select the latest compatible version if the specified one is unavailable. ![A screenshot of Spring Initializr tool selected with Java 21, Spring Web and Spring Boot 3.4.0](images/multi-stage-builds-spring-initializer.webp?border=true) From 332da526ced87f3431e40845ffc44aea0790a161 Mon Sep 17 00:00:00 2001 From: 2003Aditya Date: Tue, 4 Nov 2025 23:23:34 +0530 Subject: [PATCH 2/2] docs: mention rewrite-timestamp support for docker exporter #23653 --- content/manuals/build/exporters/oci-docker.md | 1 + 1 file changed, 1 insertion(+) diff --git a/content/manuals/build/exporters/oci-docker.md b/content/manuals/build/exporters/oci-docker.md index fdd49b550b16..cc96443ede23 100644 --- a/content/manuals/build/exporters/oci-docker.md +++ b/content/manuals/build/exporters/oci-docker.md @@ -40,6 +40,7 @@ The following table describes the available parameters: | `force-compression` | `true`,`false` | `false` | Forcefully apply compression, see [compression][1] | | `oci-mediatypes` | `true`,`false` | | Use OCI media types in exporter manifests. Defaults to `true` for `type=oci`, and `false` for `type=docker`. See [OCI Media types][2] | | `annotation.` | String | | Attach an annotation with the respective `key` and `value` to the built image,see [annotations][3] | +| `rewrite-timestamp` | `true`,`false` | `false` | Normalize timestamps in the exported image based on the `SOURCE_DATE_EPOCH` value. Supported for both `image` and `docker` exporters. | [1]: _index.md#compression [2]: _index.md#oci-media-types