Liam Miller-Cushon
Liam Miller-Cushon
After upgrading from GraalVM 24 to 25, I'm seeing a failure for a native-image build. It is reporting an error like ``` Improperly specified VM option 'MaxRAMPercentage=248.3526865641276' ``` I am...
This code doesn't compile with the latest builds of JDK 26: https://github.com/FasterXML/jackson-module-scala/blob/3bdeb0846ee135529714dae4dd6d410efe7e4ee2/src/main/scala/com/fasterxml/jackson/module/scala/introspect/OrderingLocator.scala#L31-L34 A recent JDK change [JDK-8357219: Provide default methods min(T, T) and max(T, T) in Comparator interface](https://bugs.openjdk.org/browse/JDK-8357219) adds default...
This PR proposes adding a new overload to `MemorySegment::getString` that takes a known byte length of the content. This was previously proposed in https://github.com/openjdk/jdk/pull/20725, but the outcome of [JDK-8333843](https://bugs.openjdk.org/browse/JDK-8333843) was...
Hi, please consider this fix for [JDK-8370800: Downgrade cant.attach.type.annotations diagnostics to warnings](https://bugs.openjdk.org/browse/JDK-8370800). As discussed in the, this reduces the compatibility impact of these diagnostics for builds that deliberately omit transitive...
`SecurityManager` is deprecated for removal, see also https://openjdk.org/jeps/486 It is used in procyon in `CallerResolver` for `SecurityManager#getClassContext`: https://github.com/mstrobel/procyon/blob/88a95fa93c58322393174f84543edc7a0a2ca44d/Procyon.Core/src/main/java/com/strobel/compilerservices/CallerResolver.java#L19C43-L19C58 That use-case could be migrated to `java.lang.StackWalker`, with something like: ```java public...
JDK 24 contains changes to JAXP limits, see: https://bugs.openjdk.org/browse/JDK-8343022 I'm seeing this cause failures in `tycho-maven-plugin` like the following ``` [ERROR] [68765fcb-a298-4bf4-9705-cc777c92e4d7][extension>org.eclipse.tycho:tycho-maven-plugin:4.0.10] Provisioning exception org.eclipse.equinox.p2.core.ProvisionException: Unable to read repository at...