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

bump: h2 2.3.232 (was 2.2.224) #1189

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ object Dependencies {
val akkaPersistenceR2dbcState =
"com.lightbend.akka" %% "akka-persistence-r2dbc" % Versions.akkaPersistenceR2dbc

val h2 = "com.h2database" % "h2" % "2.2.224" % Provided // EPL 1.0
val h2 = "com.h2database" % "h2" % "2.3.232" % Provided // EPL 1.0
val r2dbcH2 = "io.r2dbc" % "r2dbc-h2" % "1.0.0.RELEASE" % Provided // ApacheV2

val r2dbcSqlServer = "io.r2dbc" % "r2dbc-mssql" % "1.0.2.RELEASE" % Provided // ApacheV2
Expand Down Expand Up @@ -82,7 +82,7 @@ object Dependencies {
val scalatestJUnit = "org.scalatestplus" %% "junit-4-13" % (Versions.scalaTest + ".0") % sbt.Test
val junit = "junit" % "junit" % Versions.junit % sbt.Test

val h2Driver = "com.h2database" % "h2" % "2.2.224" % sbt.Test
val h2Driver = "com.h2database" % "h2" % "2.3.232" % sbt.Test
val postgresDriver = "org.postgresql" % "postgresql" % "42.7.1" % sbt.Test
val mysqlDriver = "com.mysql" % "mysql-connector-j" % "8.2.0" % sbt.Test
val msSQLServerDriver = "com.microsoft.sqlserver" % "mssql-jdbc" % "7.4.1.jre8" % sbt.Test
Expand Down
2 changes: 1 addition & 1 deletion samples/grpc/local-drone-control-scala/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ libraryDependencies ++= Seq(
"com.lightbend.akka" %% "akka-persistence-r2dbc" % AkkaPersistenceR2dbcVersion,
"com.typesafe.akka" %% "akka-persistence-testkit" % AkkaVersion % Test,
// local single-node lightweight database with h2
"com.h2database" % "h2" % "2.2.224",
"com.h2database" % "h2" % "2.3.232",
"io.r2dbc" % "r2dbc-h2" % "1.0.0.RELEASE",
// 3. Querying or projecting data from Akka Persistence
"com.lightbend.akka" %% "akka-projection-r2dbc" % AkkaProjectionVersion,
Expand Down
Loading