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

h2 2.2.222 (was 2.2.220) #11951

Merged
merged 2 commits into from
Sep 13, 2023
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
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ lazy val root = (project in file("."))
guice,
jdbc,
evolutions,
"com.h2database" % "h2" % "2.2.220",
"com.h2database" % "h2" % "2.2.222",
)
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ lazy val root = (project in file("."))
updateOptions := updateOptions.value.withLatestSnapshots(false),
update / evictionWarningOptions ~= (_.withWarnTransitiveEvictions(false).withWarnDirectEvictions(false)),
PlayKeys.playInteractionMode := play.sbt.StaticPlayNonBlockingInteractionMode,
libraryDependencies ++= Seq(guice, javaJdbc, evolutions, "com.h2database" % "h2" % "2.2.220"),
libraryDependencies ++= Seq(guice, javaJdbc, evolutions, "com.h2database" % "h2" % "2.2.222"),
InputKey[Unit]("applyEvolutions") := {
val args = Def.spaceDelimited("<path>").parsed
val path :: Nil = args
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ lazy val root = (project in file("."))
updateOptions := updateOptions.value.withLatestSnapshots(false),
update / evictionWarningOptions ~= (_.withWarnTransitiveEvictions(false).withWarnDirectEvictions(false)),
PlayKeys.playInteractionMode := play.sbt.StaticPlayNonBlockingInteractionMode,
libraryDependencies ++= Seq(guice, javaJdbc, evolutions, "com.h2database" % "h2" % "2.2.220"),
libraryDependencies ++= Seq(guice, javaJdbc, evolutions, "com.h2database" % "h2" % "2.2.222"),
InputKey[Unit]("applyEvolutions") := {
val args = Def.spaceDelimited("<path>").parsed
val path :: Nil = args
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ lazy val root = (project in file("."))
updateOptions := updateOptions.value.withLatestSnapshots(false),
update / evictionWarningOptions ~= (_.withWarnTransitiveEvictions(false).withWarnDirectEvictions(false)),
PlayKeys.playInteractionMode := play.sbt.StaticPlayNonBlockingInteractionMode,
libraryDependencies ++= Seq(guice, javaJdbc, evolutions, "com.h2database" % "h2" % "2.2.220"),
libraryDependencies ++= Seq(guice, javaJdbc, evolutions, "com.h2database" % "h2" % "2.2.222"),
InputKey[Unit]("applyEvolutions") := {
val args = Def.spaceDelimited("<path>").parsed
val path :: Nil = args
Expand Down
2 changes: 1 addition & 1 deletion documentation/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ lazy val main = Project("Play-Documentation", file("."))
version := PlayVersion.current,
libraryDependencies ++= Seq(
"com.typesafe" % "config" % "1.4.2" % Test,
"com.h2database" % "h2" % "2.2.220" % Test,
"com.h2database" % "h2" % "2.2.222" % Test,
"org.mockito" % "mockito-core" % "5.5.0" % Test,
// https://github.com/logstash/logstash-logback-encoder/tree/logstash-logback-encoder-4.9#including
"net.logstash.logback" % "logstash-logback-encoder" % "7.3" % Test
Expand Down
2 changes: 1 addition & 1 deletion project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ object Dependencies {

val javaxInject = "javax.inject" % "javax.inject" % "1"

val h2database = "com.h2database" % "h2" % "2.2.220"
val h2database = "com.h2database" % "h2" % "2.2.222"

val derbyVersion = "10.15.2.0"
val derbyDatabase = Seq(
Expand Down