Skip to content

Commit

Permalink
Merge pull request #440 from cqse/renovate/jacoco
Browse files Browse the repository at this point in the history
Update jacoco to v0.8.12
  • Loading branch information
DreierF committed Apr 3, 2024
2 parents 6f28a10 + f340f1f commit d6cca42
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 13 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ We use [semantic versioning](http://semver.org/):
- [feature] Docker: agent copies itself to `/transfer` if this is mounted into the container
- [fix] Disable warning about proxy port not being correct when no proxy port was set at all
- [fix] _agent_: `GET /commit` and `GET /revision` endpoints did return 500 error
- [feature] _agent_: Added stable support for Java 22 and experimental support for Java 23

# 33.1.2
- [fix] _teamscale-maven-plugin_: Revision and end commit could not be set via command line (user property)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,15 @@

package com.teamscale.jacoco.agent;

import org.jacoco.agent.rt.internal_4742761.Agent;
import org.jacoco.agent.rt.internal_4742761.AgentModule;
import org.jacoco.agent.rt.internal_4742761.CoverageTransformer;
import org.jacoco.agent.rt.internal_4742761.IExceptionLogger;
import org.jacoco.agent.rt.internal_4742761.core.runtime.AgentOptions;
import org.jacoco.agent.rt.internal_4742761.core.runtime.IRuntime;
import org.jacoco.agent.rt.internal_4742761.core.runtime.InjectedClassRuntime;
import org.jacoco.agent.rt.internal_4742761.core.runtime.ModifiedSystemClassRuntime;
import org.jacoco.agent.rt.internal_aeaf9ab.Agent;
import org.jacoco.agent.rt.internal_aeaf9ab.AgentModule;
import org.jacoco.agent.rt.internal_aeaf9ab.CoverageTransformer;
import org.jacoco.agent.rt.internal_aeaf9ab.IExceptionLogger;
import org.jacoco.agent.rt.internal_aeaf9ab.PreMain;
import org.jacoco.agent.rt.internal_aeaf9ab.core.runtime.AgentOptions;
import org.jacoco.agent.rt.internal_aeaf9ab.core.runtime.IRuntime;
import org.jacoco.agent.rt.internal_aeaf9ab.core.runtime.InjectedClassRuntime;
import org.jacoco.agent.rt.internal_aeaf9ab.core.runtime.ModifiedSystemClassRuntime;
import org.slf4j.Logger;

import java.lang.instrument.Instrumentation;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package com.teamscale.jacoco.agent;

import org.jacoco.agent.rt.internal_4742761.CoverageTransformer;
import org.jacoco.agent.rt.internal_4742761.core.runtime.AgentOptions;
import org.jacoco.agent.rt.internal_4742761.core.runtime.IRuntime;
import org.jacoco.agent.rt.internal_aeaf9ab.CoverageTransformer;
import org.jacoco.agent.rt.internal_aeaf9ab.core.runtime.AgentOptions;
import org.jacoco.agent.rt.internal_aeaf9ab.core.runtime.IRuntime;
import org.slf4j.Logger;

import java.lang.instrument.IllegalClassFormatException;
Expand Down
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ jersey = "2.42"
jackson = "2.17.0"
# When upgrading JaCoCo to a newer version make sure to
# check the comment in the OpenAnalyzer.java, JaCoCoPreMain.java and CachingInstructionsBuilder.java
# and update the internal_xxxxxx hash included in the imports in LenientCoverageTransformer.java.
jacoco = "0.8.11"
# and update the internal_xxxxxx hash included in the imports in LenientCoverageTransformer.java and JaCoCoPreMain.java.
jacoco = "0.8.12"
# We need to stay on the 1.3.x release line as 1.4.x requires Java 11
logback = "1.3.14"
retrofit = "2.11.0"
Expand Down

0 comments on commit d6cca42

Please sign in to comment.