Skip to content

Commit

Permalink
Fix vulnerabilities in server dependencies (open-metadata#13659)
Browse files Browse the repository at this point in the history
  • Loading branch information
harshach authored Oct 20, 2023
1 parent 790b4c2 commit c3b65f5
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 2 deletions.
2 changes: 1 addition & 1 deletion openmetadata-service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20230618</version>
<version>20231013</version>
</dependency>

<dependency>
Expand Down
6 changes: 6 additions & 0 deletions openmetadata-shaded-deps/elasticsearch-dep/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@
<groupId>org.elasticsearch.client</groupId>
<artifactId>elasticsearch-rest-high-level-client</artifactId>
<optional>true</optional>
<exclusions>
<exclusion>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<profiles>
Expand Down
6 changes: 6 additions & 0 deletions openmetadata-shaded-deps/opensearch-dep/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@
<groupId>org.opensearch.client</groupId>
<artifactId>opensearch-rest-high-level-client</artifactId>
<optional>true</optional>
<exclusions>
<exclusion>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<profiles>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,7 @@
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-io</artifactId>
<!-- 9.x required for Dropwizard 2.1.x -->
<version>9.4.51.v20230217</version>
<version>9.4.52.v20230823</version>
</dependency>

<!-- avoid security issue https://security.snyk.io/vuln/SNYK-JAVA-ORGGLASSFISH-1297098 -->
Expand Down

0 comments on commit c3b65f5

Please sign in to comment.