From 40b058d2519ecbf56c699fe28a58a951f51ed2df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D0=BB=D0=B5=D0=BA=D1=81=D0=B0=D0=BD=D0=B4=D1=8A?= =?UTF-8?q?=D1=80=20=D0=9A=D1=83=D1=80=D1=82=D0=B0=D0=BA=D0=BE=D0=B2?= Date: Tue, 10 Dec 2024 23:43:16 +0200 Subject: [PATCH 1/2] Update Jackson to 2.18.2 --- .../linuxtools-latest.target | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/releng/org.eclipse.linuxtools.target/linuxtools-latest.target b/releng/org.eclipse.linuxtools.target/linuxtools-latest.target index 95bc4cd226..8129a3ee02 100644 --- a/releng/org.eclipse.linuxtools.target/linuxtools-latest.target +++ b/releng/org.eclipse.linuxtools.target/linuxtools-latest.target @@ -84,37 +84,37 @@ com.fasterxml.jackson.core jackson-annotations - 2.18.1 + 2.18.2 jar com.fasterxml.jackson.core jackson-core - 2.18.1 + 2.18.2 jar com.fasterxml.jackson.core jackson-databind - 2.18.1 + 2.18.2 jar com.fasterxml.jackson.datatype jackson-datatype-guava - 2.18.1 + 2.18.2 jar com.fasterxml.jackson.module jackson-module-jaxb-annotations - 2.18.1 + 2.18.2 jar com.fasterxml.jackson.module jackson-module-jakarta-xmlbind-annotations - 2.18.1 + 2.18.2 jar From cd7b526e7b507030b3785ed7179066645d54232a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D0=BB=D0=B5=D0=BA=D1=81=D0=B0=D0=BD=D0=B4=D1=8A?= =?UTF-8?q?=D1=80=20=D0=9A=D1=83=D1=80=D1=82=D0=B0=D0=BA=D0=BE=D0=B2?= Date: Tue, 10 Dec 2024 23:55:41 +0200 Subject: [PATCH 2/2] Fix compilation against latest zest --- .../linuxtools/internal/callgraph/AggregateLayoutAlgorithm.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/systemtap/org.eclipse.linuxtools.callgraph/src/org/eclipse/linuxtools/internal/callgraph/AggregateLayoutAlgorithm.java b/systemtap/org.eclipse.linuxtools.callgraph/src/org/eclipse/linuxtools/internal/callgraph/AggregateLayoutAlgorithm.java index a417f72084..0dde851956 100644 --- a/systemtap/org.eclipse.linuxtools.callgraph/src/org/eclipse/linuxtools/internal/callgraph/AggregateLayoutAlgorithm.java +++ b/systemtap/org.eclipse.linuxtools.callgraph/src/org/eclipse/linuxtools/internal/callgraph/AggregateLayoutAlgorithm.java @@ -25,7 +25,7 @@ * Aggregate View. This avoids needing to design a Layout Algorithm * from scratch. */ -public class AggregateLayoutAlgorithm extends GridLayoutAlgorithm{ +public class AggregateLayoutAlgorithm extends GridLayoutAlgorithm.Zest1{ private ArrayList list; private Long totalTime;