diff --git a/.gitignore b/.gitignore index 1dcfda6..e4d2de1 100644 --- a/.gitignore +++ b/.gitignore @@ -79,3 +79,4 @@ /jdk-updates-jdk11u-jdk-11.0.10+9-4curve.tar.xz /jdk-updates-jdk11u-jdk-11.0.11+1-4curve.tar.xz /jdk-updates-jdk11u-jdk-11.0.11+2-4curve.tar.xz +/jdk-updates-jdk11u-jdk-11.0.11+3-4curve.tar.xz diff --git a/NEWS b/NEWS index ea90a7a..23d5711 100644 --- a/NEWS +++ b/NEWS @@ -22,6 +22,7 @@ Live versions of these release notes can be found at: - JDK-8210578: AArch64: Invalid encoding for fmlsvs instruction - JDK-8211051: jdeps usage of --dot-output doesn't provide valid output for modular jar - JDK-8211057: Gensrc step CompileProperties generates unstable CompilerProperties output + - JDK-8211150: G1 Full GC not purging code root memory and hence causing memory leak - JDK-8211825: ModuleLayer.defineModulesWithXXX does not setup delegation when module reads automatic module - JDK-8212218: [TESTBUG] runtime/ErrorHandling/TestHeapDumpOnOutOfMemoryErrorInMetaspace.java timed out - JDK-8213909: jdeps --print-module-deps should report missing dependences @@ -120,6 +121,7 @@ Live versions of these release notes can be found at: - JDK-8256056: Deoptimization stub doesn't save vector registers on x86 - JDK-8256061: RegisterSaver::save_live_registers() omits upper halves of ZMM0-15 registers - JDK-8256187: [TEST_BUG] Automate bug4275046.java test + - JDK-8256220: C1: x86_32 fails with -XX:UseSSE=1 after JDK-8210764 due to mishandled lir_neg - JDK-8256258: some missing NULL checks or asserts after CodeCache::find_blob_unsafe - JDK-8256290: javac/lambda/T8031967.java fails with StackOverflowError on x86_32 - JDK-8256359: AArch64: runtime/ReservedStack/ReservedStackTestCompiler.java fails @@ -148,6 +150,7 @@ Live versions of these release notes can be found at: - JDK-8257594: C2 compiled checkcast of non-null object triggers endless deoptimization/recompilation cycle - JDK-8257633: Missing -mmacosx-version-min=X flag when linking libjvm - JDK-8257670: sun/security/ssl/SSLSocketImpl/SSLSocketLeak.java reports leaks + - JDK-8257707: Fix incorrect format string in Http1HeaderParser - JDK-8257798: [PPC64] undefined reference to Klass::vtable_start_offset() - JDK-8257884: Re-enable sun/security/ssl/SSLSocketImpl/SSLSocketLeak.java as automatic test - JDK-8257910: [JVMCI] Set exception_seen accordingly in the runtime. @@ -164,12 +167,14 @@ Live versions of these release notes can be found at: - JDK-8258836: JNI local refs exceed capacity getDiagnosticCommandInfo - JDK-8258884: [TEST_BUG] Convert applet-based test open/test/jdk/javax/swing/JMenuItem/8031573/bug8031573.java to a regular java test - JDK-8259049: Uninitialized variable after JDK-8257513 + - JDK-8259451: Zero: skip serviceability/sa tests, set vm.hasSA to false - JDK-8259580: Shenandoah: uninitialized label in VerifyThreadGCState - JDK-8259231: Epsilon: improve performance under contention during virtual space expansion - JDK-8259312: VerifyCACerts.java fails as soneraclass2ca cert will expire in 90 days - JDK-8259319: Illegal package access when SunPKCS11 requires SunJCE's classes - JDK-8259339: AllocateUninitializedArray C2 intrinsic fails with void.class input - JDK-8259446: runtime/jni/checked/TestCheckedReleaseArrayElements.java fails with stderr not empty + - JDK-8259949: x86 32-bit build fails when -fcf-protection is passed in the compiler flags - JDK-8259619: C1: 3-arg StubAssembler::call_RT stack-use condition is incorrect - JDK-8259706: C2 compilation fails with assert(vtable_index == Method::invalid_vtable_index) failed: correct sentinel value - JDK-8259773: Incorrect encoding of AVX-512 kmovq instruction @@ -178,10 +183,13 @@ Live versions of these release notes can be found at: - JDK-8260029: aarch64: fix typo in verify_oop_array - JDK-8260308: Update LogCompilation junit to 4.13.1 - JDK-8260338: Some fields in HaltNode is not cloned + - JDK-8260349: Cannot programmatically retrieve Metaspace max set via JAVA_TOOL_OPTIONS - JDK-8260378: [TESTBUG] DcmdMBeanTestCheckJni.java reports false positive - JDK-8260502: [s390] NativeMovRegMem::verify() fails because it's too strict - JDK-8260632: Build failures after JDK-8253353 - JDK-8261089: [TESTBUG] native library of test TestCheckedReleaseCriticalArray.java fails to compile with gcc 4.x + - JDK-8261310: PPC64 Zero build fails with 'VMError::controlled_crash(int)::FunctionDescriptor functionDescriptor' has incomplete type and cannot be defined + - JDK-8261334: NMT: tuning statistic shows incorrect hash distribution Notes on individual issues: =========================== diff --git a/java-11-openjdk.spec b/java-11-openjdk.spec index 84a8a86..d7847e9 100644 --- a/java-11-openjdk.spec +++ b/java-11-openjdk.spec @@ -344,7 +344,7 @@ %global origin_nice OpenJDK %global top_level_dir_name %{origin} %global top_level_dir_name_backup %{top_level_dir_name}-backup -%global buildver 2 +%global buildver 3 %global rpmrelease 0 #%%global tagsuffix "" # Priority must be 8 digits in total; up to openjdk 1.8, we were using 18..... so when we moved to 11, we had to add another digit @@ -2282,6 +2282,11 @@ require "copy_jdk_configs.lua" %endif %changelog +* Mon Mar 08 2021 Andrew Hughes - 1:11.0.11.0.3-0.0.ea +- Update to jdk-11.0.11.0+3 +- Update release notes to 11.0.11.0+3 +- Remove upstreamed patch JDK-8259949 + * Tue Mar 02 2021 Andrew Hughes - 1:11.0.11.0.2-0.0.ea - Update to jdk-11.0.11.0+2 - Update release notes to 11.0.11.0+2 diff --git a/sources b/sources index 5543842..439f939 100644 --- a/sources +++ b/sources @@ -1,2 +1,2 @@ SHA512 (tapsets-icedtea-3.15.0.tar.xz) = c752a197cb3d812d50c35e11e4722772be40096c81d2a57933e0d9b8a3c708b9c157b8108a4e33a06ca7bb81648170994408c75d6f69d5ff12785d0c31009671 -SHA512 (jdk-updates-jdk11u-jdk-11.0.11+2-4curve.tar.xz) = 943e551bc83eada5742f46eae3efbdf40e0d8084fa12d50a80e7f998edb5878c072443d5fbacf4df42a5c6e0a794f50b01fdd65339e6f22d6a055540e34feec8 +SHA512 (jdk-updates-jdk11u-jdk-11.0.11+3-4curve.tar.xz) = d0bced19b62d675b2cc657aa21cc28d1c0b42394548fbe98960f7cf3354f8d99a47887c8d3123a3db7b145e148349004cf1dc940465ed85f7df694bb7ec17006