Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR adds support for running the agent in JRE 24. Resolves #2241
During our evaluation of Java 24, we did uncover one issue, which was in our instrumentation of
java/lang/ClassLoader
. Due to some Java 24 updates to theinitSystemClassLoader
method, the agent caused a VerifyError in this class because of its resolution of the superclass ofThrowable
andException
. This is explained in more detail in the updates toPatchedClassWriter
.Also, the jms-3 test has been limited to LTS versions <24 because of test dependency ActiveMQ's use of the security manager api (which was removed in JDK24).
(Edit: the AITs tests are expected to fail, because they also need to be configured to run with 24. I have a branch for that
jdk24-support
in the AITs repo, which will be merged after this PR. Here is a GHA of the PR test suite against that branch: https://github.com/newrelic/newrelic-java-agent/actions/runs/14116167431)