Skip to content

Commit

Permalink
[FLINK-36830][table] Bump json-path to 2.9.0
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Cooper <[email protected]>
  • Loading branch information
tomncooper authored Dec 6, 2024
1 parent 835c210 commit cbe2656
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions flink-table/flink-table-calcite-bridge/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -152,9 +152,29 @@ under the License.
<groupId>org.locationtech.proj4j</groupId>
<artifactId>proj4j</artifactId>
</exclusion>
<!--
Exclude json-path as we are manually overriding it to a newer version (FLINK-36830).
This can be removed once calcite is upgraded to 1.38 or greater, more details
in JIRA issue FLINK-36602.
-->
<exclusion>
<groupId>com.jayway.jsonpath</groupId>
<artifactId>json-path</artifactId>
</exclusion>
</exclusions>
</dependency>

<!--
Override the json-path version used by Calcite to deal with CVE-2023-1370 (FLINK-36830).
This can be removed once calcite is upgraded to 1.38 or greater, more details
in JIRA issue FLINK-36602.
-->
<dependency>
<groupId>com.jayway.jsonpath</groupId>
<artifactId>json-path</artifactId>
<version>2.9.0</version>
</dependency>

<dependency>
<groupId>org.apache.flink</groupId>
<artifactId>flink-annotations</artifactId>
Expand Down

0 comments on commit cbe2656

Please sign in to comment.