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

chore: update dependencies #2247

Merged
merged 8 commits into from Oct 12, 2022
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
16 changes: 8 additions & 8 deletions project/Dependencies.scala
Expand Up @@ -25,7 +25,7 @@ object Dependencies {
val ZioJsonVersion = "0.3.0"
val ZioConfigVersion = "3.0.2"
val ZioSchemaVersion = "0.2.0"
val ZioLoggingVersion = "2.1.1"
val ZioLoggingVersion = "2.1.2"
val ZioMetricsConnectorsVersion = "2.0.0"
val ZioPreludeVersion = "1.0.0-RC16"

Expand Down Expand Up @@ -57,8 +57,8 @@ object Dependencies {

// logging
val scalaLogging = "com.typesafe.scala-logging" %% "scala-logging" % "3.9.5" // Scala 3 compatible
val slf4jApi = "org.slf4j" % "slf4j-api" % "2.0.2" // the logging interface
val logbackClassic = "ch.qos.logback" % "logback-classic" % "1.4.1" // the logging implementation
val slf4jApi = "org.slf4j" % "slf4j-api" % "2.0.3" // the logging interface
val logbackClassic = "ch.qos.logback" % "logback-classic" % "1.4.3" // the logging implementation

// Metrics
val aspectjweaver = "org.aspectj" % "aspectjweaver" % "1.9.9.1"
Expand All @@ -74,7 +74,7 @@ object Dependencies {
// jwtSprayJson -> 9.0.2 is the latest version that's compatible with spray-json; if it wasn't for spray, this would be Scala 3 compatible
val springSecurityCore =
"org.springframework.security" % "spring-security-core" % "5.7.3" exclude ("commons-logging", "commons-logging") exclude ("org.springframework", "spring-aop")
val bouncyCastle = "org.bouncycastle" % "bcprov-jdk15to18" % "1.71"
val bouncyCastle = "org.bouncycastle" % "bcprov-jdk15to18" % "1.72"

// caching
val ehcache = "net.sf.ehcache" % "ehcache" % "2.10.9.2"
Expand All @@ -89,8 +89,8 @@ object Dependencies {
val icu4j = "com.ibm.icu" % "icu4j" % "71.1"
val jakartaJSON = "org.glassfish" % "jakarta.json" % "2.0.1"
val jodd = "org.jodd" % "jodd" % "3.2.7"
val rdf4jClient = "org.eclipse.rdf4j" % "rdf4j-client" % "4.1.3"
val rdf4jShacl = "org.eclipse.rdf4j" % "rdf4j-shacl" % "4.1.3"
val rdf4jClient = "org.eclipse.rdf4j" % "rdf4j-client" % "4.2.0"
val rdf4jShacl = "org.eclipse.rdf4j" % "rdf4j-shacl" % "4.2.0"
val saxonHE = "net.sf.saxon" % "Saxon-HE" % "11.4"
val scalaGraph = "org.scala-graph" %% "graph-core" % "1.13.5" // Scala 3 incompatible
val scallop = "org.rogach" %% "scallop" % "4.1.0" // Scala 3 compatible
Expand All @@ -104,8 +104,8 @@ object Dependencies {
val akkaTestkit = "com.typesafe.akka" %% "akka-testkit" % AkkaActorVersion // Scala 3 compatible
val gatlingHighcharts = "io.gatling.highcharts" % "gatling-charts-highcharts" % "3.8.4"
val gatlingTestFramework = "io.gatling" % "gatling-test-framework" % "3.8.4"
val scalaTest = "org.scalatest" %% "scalatest" % "3.2.13" // Scala 3 compatible
val testcontainers = "org.testcontainers" % "testcontainers" % "1.17.3"
val scalaTest = "org.scalatest" %% "scalatest" % "3.2.14" // Scala 3 compatible
val testcontainers = "org.testcontainers" % "testcontainers" % "1.17.5"

// found/added by the plugin but deleted anyway
val commonsLang3 = "org.apache.commons" % "commons-lang3" % "3.12.0"
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
@@ -1 +1 @@
sbt.version=1.7.1
sbt.version=1.7.2
Expand Up @@ -807,6 +807,9 @@ object GravsearchParser {
// Successive statements are connected by Joins.
node.visitChildren(this)

override def meet(node: algebra.AggregateFunctionCall): Unit =
unsupported(node)

override def meetOther(node: algebra.QueryModelNode): Unit =
unsupported(node)
}
Expand Down