Skip to content

Commit

Permalink
Updated dependencies (#237)
Browse files Browse the repository at this point in the history
  • Loading branch information
max-leuthaeuser authored Jan 6, 2023
1 parent a21db6f commit 12a64f2
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 10 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
.bsp/
null
.idea/
/build/
target
Expand Down
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
val cpgVersion = "1.3.582"
val joernVersion = "1.1.1357"
val cpgVersion = "1.3.585"
val joernVersion = "1.1.1378"

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

Expand Down Expand Up @@ -100,7 +100,7 @@ lazy val commonSettings = Seq(
"org.slf4j" % "slf4j-api" % "1.7.36",
"org.apache.logging.log4j" % "log4j-slf4j-impl" % "2.18.0" % Runtime,
"io.joern" %% "x2cpg" % joernVersion % Test classifier "tests",
"org.scalatest" %% "scalatest" % "3.2.14" % Test
"org.scalatest" %% "scalatest" % "3.2.15" % Test
)
)

Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.7.1
sbt.version=1.8.2
4 changes: 2 additions & 2 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
addSbtPlugin("com.github.sbt" % "sbt-native-packager" % "1.9.9")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.6")
addSbtPlugin("com.github.sbt" % "sbt-native-packager" % "1.9.11")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.0")
addSbtPlugin("io.shiftleft" % "sbt-ci-release-early" % "2.0.27")
addSbtPlugin("com.dwijnand" % "sbt-dynver" % "4.1.1")
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "1.1.0")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -838,8 +838,7 @@ class CfgCreationPassTest extends AnyWordSpec with Matchers {
("param1_0", 1, FalseEdge)
)
succOf("param1_0", 1) shouldBe expected(("param1_0 === void 0 ? {} : param1_0", AlwaysEdge))
succOf("_tmp_1") shouldBe expected(("{}", AlwaysEdge))
succOf("{}") shouldBe expected(("param1_0 === void 0 ? {} : param1_0", AlwaysEdge))
succOf("_tmp_1") shouldBe expected(("param1_0 === void 0 ? {} : param1_0", AlwaysEdge))
succOf("param1_0 === void 0 ? {} : param1_0") shouldBe expected(
("_tmp_0 = param1_0 === void 0 ? {} : param1_0", AlwaysEdge)
)
Expand All @@ -853,8 +852,7 @@ class CfgCreationPassTest extends AnyWordSpec with Matchers {
("_tmp_2", TrueEdge), // holds {}
("_tmp_0", 2, FalseEdge)
)
succOf("_tmp_2") shouldBe expected(("{}", 1, AlwaysEdge))
succOf("{}", 1) shouldBe expected(("_tmp_0.id === void 0 ? {} : _tmp_0.id", AlwaysEdge))
succOf("_tmp_2") shouldBe expected(("_tmp_0.id === void 0 ? {} : _tmp_0.id", AlwaysEdge))
succOf("_tmp_0", 2) shouldBe expected(("id", 2, AlwaysEdge))

succOf("_tmp_0.id === void 0 ? {} : _tmp_0.id") shouldBe expected(
Expand Down

0 comments on commit 12a64f2

Please sign in to comment.