Skip to content

Commit 7b124f4

Browse files
Updated dependencies (#314)
1 parent f0ed1d5 commit 7b124f4

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

build.sbt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
val cpgVersion = "1.4.10"
2-
val joernVersion = "2.0.44"
1+
val cpgVersion = "1.4.25"
2+
val joernVersion = "2.0.140"
33

44
val gitCommitString = SettingKey[String]("gitSha")
55

@@ -16,7 +16,7 @@ Global / excludeLintKeys += Fast / configuration
1616
Global / excludeLintKeys += gitCommitString
1717

1818
lazy val commonSettings = Seq(
19-
scalaVersion := "3.3.0",
19+
scalaVersion := "3.3.1",
2020
organization := "io.shiftleft",
2121
scalacOptions ++= Seq("-Xtarget:8"),
2222
resolvers ++= Seq(
@@ -28,14 +28,14 @@ lazy val commonSettings = Seq(
2828
"io.joern" %% "x2cpg" % joernVersion,
2929
"com.github.scopt" %% "scopt" % "4.1.0",
3030
"org.graalvm.js" % "js" % "22.3.3",
31-
"com.fasterxml.jackson.core" % "jackson-databind" % "2.15.2",
31+
"com.fasterxml.jackson.core" % "jackson-databind" % "2.15.3",
3232
"com.atlassian.sourcemap" % "sourcemap" % "2.0.0",
3333
"commons-io" % "commons-io" % "2.13.0",
3434
"org.slf4j" % "slf4j-api" % "2.0.7",
3535
"org.apache.logging.log4j" % "log4j-slf4j2-impl" % "2.20.0" % Optional,
3636
"org.apache.logging.log4j" % "log4j-core" % "2.20.0" % Optional,
3737
"io.joern" %% "x2cpg" % joernVersion % Test classifier "tests",
38-
"org.scalatest" %% "scalatest" % "3.2.16" % Test
38+
"org.scalatest" %% "scalatest" % "3.2.17" % Test
3939
)
4040
)
4141

src/main/scala/io/shiftleft/js2cpg/astcreation/NewCompositeNode.scala

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,9 @@ class NewCompositeNode(underlying: ListBuffer[NewNode] = ListBuffer.empty[NewNod
2828
def iterate[T](func: NewNode => T): Unit = {
2929
underlying.foreach(func)
3030
}
31+
32+
def isValidInNeighbor(edgeLabel: String, node: NewNode): Boolean = ??? // we do not need this
33+
34+
def isValidOutNeighbor(edgeLabel: String, node: NewNode): Boolean = ??? // we do not need this
35+
3136
}

0 commit comments

Comments
 (0)