File tree 3 files changed +14
-2
lines changed
flink-table-calcite-bridge
flink-table-runtime/src/main/resources/META-INF
3 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -152,9 +152,21 @@ under the License.
152
152
<groupId >org.locationtech.proj4j</groupId >
153
153
<artifactId >proj4j</artifactId >
154
154
</exclusion >
155
+ <!-- Exclude json-path as we are manually overriding it to a newer version -->
156
+ <exclusion >
157
+ <groupId >com.jayway.jsonpath</groupId >
158
+ <artifactId >json-path</artifactId >
159
+ </exclusion >
155
160
</exclusions >
156
161
</dependency >
157
162
163
+ <!-- Override the json-path version used by Calcite 1.32 to deal with CVE-2023-1370 -->
164
+ <dependency >
165
+ <groupId >com.jayway.jsonpath</groupId >
166
+ <artifactId >json-path</artifactId >
167
+ <version >${jsonpath.version} </version >
168
+ </dependency >
169
+
158
170
<dependency >
159
171
<groupId >org.apache.flink</groupId >
160
172
<artifactId >flink-annotations</artifactId >
Original file line number Diff line number Diff line change @@ -6,6 +6,6 @@ The Apache Software Foundation (http://www.apache.org/).
6
6
7
7
This project bundles the following dependencies under the Apache Software License 2.0. (http://www.apache.org/licenses/LICENSE-2.0.txt)
8
8
9
- - com.jayway.jsonpath:json-path:2.7 .0
9
+ - com.jayway.jsonpath:json-path:2.9 .0
10
10
- org.codehaus.janino:janino:3.1.10
11
11
- org.codehaus.janino:commons-compiler:3.1.10
Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ under the License.
83
83
at the same time minimum 3.1.x Janino version passing Flink tests without WAs is 3.1.10,
84
84
more details are in FLINK-27995 -->
85
85
<janino .version>3.1.10</janino .version>
86
- <jsonpath .version>2.7 .0</jsonpath .version>
86
+ <jsonpath .version>2.9 .0</jsonpath .version>
87
87
<guava .version>32.1.3-jre</guava .version>
88
88
</properties >
89
89
</project >
You can’t perform that action at this time.
0 commit comments