Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package apache-tomcat-10-image for
openSUSE:Factory checked in at 2025-09-26 22:25:44
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/apache-tomcat-10-image (Old)
and /work/SRC/openSUSE:Factory/.apache-tomcat-10-image.new.11973 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "apache-tomcat-10-image"
Fri Sep 26 22:25:44 2025 rev:23 rq:1307372 version:unknown
Changes:
--------
---
/work/SRC/openSUSE:Factory/apache-tomcat-10-image/apache-tomcat-10-image.changes
2025-08-02 00:41:52.130836925 +0200
+++
/work/SRC/openSUSE:Factory/.apache-tomcat-10-image.new.11973/apache-tomcat-10-image.changes
2025-09-26 22:27:35.869791179 +0200
@@ -1,0 +2,5 @@
+Fri Sep 26 10:11:21 UTC 2025 - SUSE Update Bot <[email protected]>
+
+- switch to openjdk25
+
+-------------------------------------------------------------------
Old:
----
Dockerfile.openjdk24
README.openjdk24.md
New:
----
Dockerfile.openjdk25
README.openjdk25.md
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ Dockerfile.openjdk24 -> Dockerfile.openjdk25 ++++++
--- /work/SRC/openSUSE:Factory/apache-tomcat-10-image/Dockerfile.openjdk24
2025-08-02 00:41:52.118836426 +0200
+++
/work/SRC/openSUSE:Factory/.apache-tomcat-10-image.new.11973/Dockerfile.openjdk25
2025-09-26 22:27:35.833789661 +0200
@@ -15,9 +15,10 @@
#!UseOBSRepositories
-#!BuildTag: opensuse/apache-tomcat:%%tomcat_version%%-openjdk24-%RELEASE%
-#!BuildTag: opensuse/apache-tomcat:%%tomcat_version%%-openjdk24
-#!BuildTag: opensuse/apache-tomcat:10.1-openjdk24
+#!BuildTag: opensuse/apache-tomcat:%%tomcat_version%%-openjdk25-%RELEASE%
+#!BuildTag: opensuse/apache-tomcat:%%tomcat_version%%-openjdk25
+#!BuildTag: opensuse/apache-tomcat:10.1-openjdk25
+#!BuildTag: opensuse/apache-tomcat:latest
#!BcntSyncTag: apache-tomcat-10-image
FROM opensuse/bci/bci-micro:latest AS target
@@ -26,7 +27,7 @@
RUN set -euo pipefail; \
export PERMCTL_ALLOW_INSECURE_MODE_IF_NO_PROC=1; \
- zypper -n --installroot /target --gpg-auto-import-keys install
--no-recommends tomcat10 java-24-openjdk java-24-openjdk-headless; \
+ zypper -n --installroot /target --gpg-auto-import-keys install
--no-recommends tomcat10 java-25-openjdk java-25-openjdk-headless; \
zypper -n --installroot /target remove util-linux
RUN set -euo pipefail; zypper -n --installroot /target clean -a; \
rm -rf
{/target,}/var/log/{alternatives.log,lastlog,tallylog,zypper.log,zypp/history,YaST2};
rm -f {/target,}/etc/shadow-
@@ -41,13 +42,13 @@
LABEL org.opencontainers.image.created="%BUILDTIME%"
LABEL org.opencontainers.image.vendor="openSUSE Project"
LABEL org.opencontainers.image.source="%SOURCEURL%"
-LABEL
org.opencontainers.image.ref.name="%%tomcat_version%%-openjdk24-%RELEASE%"
-LABEL
org.opensuse.reference="registry.opensuse.org/opensuse/apache-tomcat:%%tomcat_version%%-openjdk24-%RELEASE%"
+LABEL
org.opencontainers.image.ref.name="%%tomcat_version%%-openjdk25-%RELEASE%"
+LABEL
org.opensuse.reference="registry.opensuse.org/opensuse/apache-tomcat:%%tomcat_version%%-openjdk25-%RELEASE%"
LABEL org.openbuildservice.disturl="%DISTURL%"
LABEL
org.opensuse.lifecycle-url="https://en.opensuse.org/Lifetime#openSUSE_BCI"
LABEL org.opensuse.release-stage="released"
# endlabelprefix
-LABEL io.artifacthub.package.readme-url="%SOURCEURL_WITH(README.openjdk24.md)%"
+LABEL io.artifacthub.package.readme-url="%SOURCEURL_WITH(README.openjdk25.md)%"
LABEL
io.artifacthub.package.logo-url="https://tomcat.apache.org/res/images/tomcat.png"
ENV CATALINA_BASE="/usr/share/tomcat"
ENV CATALINA_HOME="/usr/share/tomcat"
++++++ README.openjdk24.md -> README.openjdk25.md ++++++
--- /work/SRC/openSUSE:Factory/apache-tomcat-10-image/README.openjdk24.md
2025-05-05 22:56:38.721098156 +0200
+++
/work/SRC/openSUSE:Factory/.apache-tomcat-10-image.new.11973/README.openjdk25.md
2025-09-26 22:27:35.841789998 +0200
@@ -21,7 +21,7 @@
`$CATALINA_BASE/webapps` (either during a container build or by bind-mounting
the directory), and launch the container using the following command:
```ShellSession
-$ podman run -d --rm -p 8080:8080
registry.opensuse.org/opensuse/apache-tomcat:10.1-openjdk24
+$ podman run -d --rm -p 8080:8080
registry.opensuse.org/opensuse/apache-tomcat:10.1-openjdk25
```
The deployed webapp is then accessible via
`http://localhost:8080/$webapp_name`.
@@ -38,7 +38,7 @@
```ShellSession
$ chmod 0777 /path/to/my/app
$ podman run --rm -d -v /path/to/my/app:/usr/share/tomcat/webapps:z \
- -p 8080:8080 registry.opensuse.org/opensuse/apache-tomcat:10.1-openjdk24
+ -p 8080:8080 registry.opensuse.org/opensuse/apache-tomcat:10.1-openjdk25
```
@@ -54,7 +54,7 @@
```ShellSession
$ podman run -it --rm \
-e JAVA_OPTS="-Xmx1024m" -p 8080:8080 \
- registry.opensuse.org/opensuse/apache-tomcat:10.1-openjdk24
+ registry.opensuse.org/opensuse/apache-tomcat:10.1-openjdk25
```
The image ships with `CATALINA_HOME` set to `/usr/share/tomcat`
++++++ _multibuild ++++++
--- /var/tmp/diff_new_pack.D9c5fU/_old 2025-09-26 22:27:36.541819522 +0200
+++ /var/tmp/diff_new_pack.D9c5fU/_new 2025-09-26 22:27:36.545819690 +0200
@@ -1,7 +1,7 @@
<multibuild>
<package>openjdk17</package>
<package>openjdk21</package>
- <package>openjdk24</package>
+ <package>openjdk25</package>
</multibuild>
(No newline at EOF)
++++++ _service ++++++
--- /var/tmp/diff_new_pack.D9c5fU/_old 2025-09-26 22:27:36.565820533 +0200
+++ /var/tmp/diff_new_pack.D9c5fU/_new 2025-09-26 22:27:36.569820702 +0200
@@ -12,7 +12,7 @@
<param name="package">tomcat10</param>
</service>
<service mode="buildtime" name="replace_using_package_version">
- <param name="file">Dockerfile.openjdk24</param>
+ <param name="file">Dockerfile.openjdk25</param>
<param name="regex">%%tomcat_version%%</param>
<param name="package">tomcat10</param>
</service>