Skip to content

Commit 940c9dd

Browse files
author
Jonathan Henrique Medeiros
committed
feature: upgrade otel agent to 2.0.0
1 parent 2504506 commit 940c9dd

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

agents/opentelemetry-javaagent.jar

2.23 MB
Binary file not shown.

pom.xml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@
2323
<springdoc-openapi-starter-webmvc-ui.version>2.3.0</springdoc-openapi-starter-webmvc-ui.version>
2424
<snakeyaml.version>2.2</snakeyaml.version>
2525
<h2.version>2.2.220</h2.version>
26-
<opentelemetry.version>1.30.0</opentelemetry.version>
26+
<opentelemetry.version>1.35.0</opentelemetry.version>
27+
<json-path.version>2.9.0</json-path.version>
2728
</properties>
2829

2930
<dependencyManagement>
@@ -123,6 +124,18 @@
123124
<groupId>org.springframework.boot</groupId>
124125
<artifactId>spring-boot-starter-test</artifactId>
125126
<scope>test</scope>
127+
<exclusions>
128+
<exclusion>
129+
<groupId>com.jayway.jsonpath</groupId>
130+
<artifactId>json-path</artifactId>
131+
</exclusion>
132+
</exclusions>
133+
</dependency>
134+
<!-- Solves the https://devhub.checkmarx.com/cve-details/CVE-2023-51074 -->
135+
<dependency>
136+
<groupId>com.jayway.jsonpath</groupId>
137+
<artifactId>json-path</artifactId>
138+
<version>${json-path.version}</version>
126139
</dependency>
127140
<dependency>
128141
<groupId>io.opentelemetry</groupId>

0 commit comments

Comments
 (0)