From ea7a40eccf5b980d2e74aa6e75693028b1d658cf Mon Sep 17 00:00:00 2001 From: Bilwa ST Date: Mon, 20 Feb 2023 20:35:43 +0530 Subject: [PATCH] Upgrade jettison to 1.5.3 to fix CVE-2022-45685, CVE-2022-45693 --- pom.xml | 2 +- .../main/java/org/apache/tez/dag/history/utils/DAGUtils.java | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/pom.xml b/pom.xml index 5b7bd49970..54d2f275c7 100644 --- a/pom.xml +++ b/pom.xml @@ -739,7 +739,7 @@ org.codehaus.jettison jettison - 1.5.1 + 1.5.3 com.google.code.findbugs diff --git a/tez-dag/src/main/java/org/apache/tez/dag/history/utils/DAGUtils.java b/tez-dag/src/main/java/org/apache/tez/dag/history/utils/DAGUtils.java index 77e7179c29..4c45e74101 100644 --- a/tez-dag/src/main/java/org/apache/tez/dag/history/utils/DAGUtils.java +++ b/tez-dag/src/main/java/org/apache/tez/dag/history/utils/DAGUtils.java @@ -111,7 +111,8 @@ public static JSONObject generateSimpleJSONPlan(DAGPlan dagPlan) throws JSONExce return dagJson; } - public static JSONObject convertDataEventDependencyInfoToJSON(List info) { + public static JSONObject convertDataEventDependencyInfoToJSON(List info) + throws JSONException { return new JSONObject(convertDataEventDependecyInfoToATS(info)); } @@ -436,7 +437,7 @@ public static Map convertVertexStatsToATSMap( } public static JSONObject convertServicePluginToJSON( - ServicePluginInfo servicePluginInfo) { + ServicePluginInfo servicePluginInfo) throws JSONException { JSONObject jsonObject = new JSONObject(convertServicePluginToATSMap(servicePluginInfo)); return jsonObject; }