Skip to content

Commit

Permalink
feature: upgrade otel agent to 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Henrique Medeiros committed Feb 11, 2024
1 parent 2504506 commit 940c9dd
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
Binary file modified agents/opentelemetry-javaagent.jar
Binary file not shown.
15 changes: 14 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@
<springdoc-openapi-starter-webmvc-ui.version>2.3.0</springdoc-openapi-starter-webmvc-ui.version>
<snakeyaml.version>2.2</snakeyaml.version>
<h2.version>2.2.220</h2.version>
<opentelemetry.version>1.30.0</opentelemetry.version>
<opentelemetry.version>1.35.0</opentelemetry.version>
<json-path.version>2.9.0</json-path.version>
</properties>

<dependencyManagement>
Expand Down Expand Up @@ -123,6 +124,18 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>com.jayway.jsonpath</groupId>
<artifactId>json-path</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- Solves the https://devhub.checkmarx.com/cve-details/CVE-2023-51074 -->
<dependency>
<groupId>com.jayway.jsonpath</groupId>
<artifactId>json-path</artifactId>
<version>${json-path.version}</version>
</dependency>
<dependency>
<groupId>io.opentelemetry</groupId>
Expand Down

0 comments on commit 940c9dd

Please sign in to comment.