Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release PR #1046

Merged
merged 2 commits into from
Apr 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ ThisBuild / scalaVersion := "3.3.1"
ThisBuild / version := sys.env.getOrElse("BUILD_VERSION", "dev-SNAPSHOT")
// parsed by project/Versions.scala, updated by updateDependencies.sh

val cpgVersion = "1.6.6"
val joernVersion = "2.0.290"
val overflowdbVersion = "1.187"
val cpgVersion = "1.6.10"
val joernVersion = "2.0.311"
val overflowdbVersion = "1.190"
val requests = "0.8.0"
val upickle = "3.1.2"

Expand Down
2 changes: 1 addition & 1 deletion src/main/scala/ai/privado/cache/AppCache.scala
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,6 @@ class AppCache(
def init(path: String): Unit = {
this.scanPath = path.stripSuffix("/") // Scan Path of the repo on the host machine
this.localScanPath = getRepoScanPath(path) // scan path perceived by the binary (can be different inside docker)
this.repoName = this.localScanPath.split("/\\\\").last
this.repoName = this.localScanPath.split("[/\\\\]").lastOption.getOrElse("")
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ abstract class DataElementDiscoveryTestBase extends AnyWordSpec with Matchers wi
outputDir = File.newTemporaryDirectory()

val config =
Config(fetchDependencies = true).withInputPath(inputDir.pathAsString).withOutputPath(outputDir.pathAsString)
Config(fetchDependencies = true, delombokMode = Some("no-delombok"))
.withInputPath(inputDir.pathAsString)
.withOutputPath(outputDir.pathAsString)
val javaSrc = new JavaSrc2Cpg()
val xtocpg = javaSrc.createCpg(config).map { cpg =>
applyDefaultOverlays(cpg)
Expand Down
Loading