Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package java-17-openj9 for openSUSE:Factory checked in at 2023-08-15 16:40:18 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/java-17-openj9 (Old) and /work/SRC/openSUSE:Factory/.java-17-openj9.new.11712 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "java-17-openj9" Tue Aug 15 16:40:18 2023 rev:8 rq:1104010 version:17.0.8.0 Changes: -------- --- /work/SRC/openSUSE:Factory/java-17-openj9/java-17-openj9.changes 2023-03-28 17:51:22.503556666 +0200 +++ /work/SRC/openSUSE:Factory/.java-17-openj9.new.11712/java-17-openj9.changes 2023-08-15 16:40:24.599152260 +0200 @@ -1,0 +2,28 @@ +Tue Aug 15 07:23:28 UTC 2023 - Fridrich Strba <[email protected]> + +- Update to OpenJDK 17.0.8 with OpenJ9 0.40.0 virtual machine +- Including Oracle July 2023 CPU changes + * CVE-2023-22006 (bsc#1213473), CVE-2023-22036 (bsc#1213474), + CVE-2023-22041 (bsc#1213475), CVE-2023-22044 (bsc#1213479), + CVE-2023-22045 (bsc#1213481), CVE-2023-22049 (bsc#1213482), + CVE-2023-25193 (bsc#1207922) + * OpenJ9 changes, see + https://www.eclipse.org/openj9/docs/version0.40 +- Modified patch: + * stringop-overflow.patch + + rediff to changed context + +------------------------------------------------------------------- +Mon Aug 14 19:58:17 UTC 2023 - Fridrich Strba <[email protected]> + +- Update to OpenJDK 17.0.7 with OpenJ9 0.38.0 virtual machine +- Including Oracle April 2023 CPU changes + * CVE-2023-21930 (bsc#1210628), CVE-2023-21937 (bsc#1210631), + CVE-2023-21938 (bsc#1210632), CVE-2023-21939 (bsc#1210634), + CVE-2023-21954 (bsc#1210635), CVE-2023-21967 (bsc#1210636), + CVE-2023-21968 (bsc#1210637) + * OpenJ9 specific vulnerability: CVE-2023-2597 (bsc#1211615) + * OpenJ9 changes, see + https://www.eclipse.org/openj9/docs/version0.38 + +------------------------------------------------------------------- Old: ---- 0592661e480dd108a708689dc56bf1a427677645.zip 927b34f84c8c5ff380df16f2df8dd84a44b8c79e.zip f491bbf6f6f3f87bfd38a65055589125c13de555.zip New: ---- 77b0f75480594444eb7fb47bf37d3aae6d8135ef.zip d12d10c9ea2de2cf363095e609536ffe451bd25f.zip e80bff83b7fda8875071d89de7c73184d847085d.zip ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ java-17-openj9.spec ++++++ --- /var/tmp/diff_new_pack.sGf2NB/_old 2023-08-15 16:40:27.883174657 +0200 +++ /var/tmp/diff_new_pack.sGf2NB/_new 2023-08-15 16:40:27.887174685 +0200 @@ -29,18 +29,18 @@ # Standard JPackage naming and versioning defines. %global featurever 17 %global interimver 0 -%global updatever 6 -%global buildver 10 +%global updatever 8 +%global buildver 7 %global root_repository https://github.com/ibmruntimes/openj9-openjdk-jdk17/archive -%global root_revision 927b34f84c8c5ff380df16f2df8dd84a44b8c79e -%global root_branch v0.36.0-release +%global root_revision 77b0f75480594444eb7fb47bf37d3aae6d8135ef +%global root_branch v0.40.0-release %global omr_repository https://github.com/eclipse/openj9-omr/archive -%global omr_revision f491bbf6f6f3f87bfd38a65055589125c13de555 -%global omr_branch v0.36.1-release +%global omr_revision e80bff83b7fda8875071d89de7c73184d847085d +%global omr_branch v0.40.0-release %global openj9_repository https://github.com/eclipse/openj9/archive -%global openj9_revision 0592661e480dd108a708689dc56bf1a427677645 -%global openj9_branch v0.36.1-release -%global openj9_tag openj9-0.36.1 +%global openj9_revision d12d10c9ea2de2cf363095e609536ffe451bd25f +%global openj9_branch v0.40.0-release +%global openj9_tag openj9-0.40.0 # priority must be 6 digits in total %if 0%{?suse_version} > 1500 || 0%{?java_bootstrap} %global priority 2701 @@ -790,6 +790,9 @@ %{_jvmdir}/%{sdkdir}/lib/OMRTraceFormat.dat %{_jvmdir}/%{sdkdir}/lib/default/j9ddr.dat %{_jvmdir}/%{sdkdir}/lib/default/libcuda4j29.so +%ifnarch ppc64 ppc64le +%{_jvmdir}/%{sdkdir}/lib/default/libj9criu29.so +%endif %{_jvmdir}/%{sdkdir}/lib/default/libj9dmp29.so %{_jvmdir}/%{sdkdir}/lib/default/libj9gc29.so %{_jvmdir}/%{sdkdir}/lib/default/libj9gcchk29.so ++++++ stringop-overflow.patch ++++++ --- /var/tmp/diff_new_pack.sGf2NB/_old 2023-08-15 16:40:28.051175803 +0200 +++ /var/tmp/diff_new_pack.sGf2NB/_new 2023-08-15 16:40:28.055175831 +0200 @@ -9,9 +9,9 @@ +#pragma GCC diagnostic ignored "-Wstringop-overflow" + #include "optimizer/OMRSimplifierHelpers.hpp" - #include "optimizer/OMRSimplifierHandlers.hpp" + #include "optimizer/SimplifierHandlers.hpp" -@@ -17404,5 +17407,6 @@ +@@ -17353,5 +17356,6 @@ return node; }
