Skip to content

Commit c6c69ad

Browse files
cptwunderlichBenjamin Maurer
andauthored
Update dependencies for http4s. (#10186)
Co-authored-by: Benjamin Maurer <[email protected]>
1 parent b6cb61e commit c6c69ad

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

frameworks/Scala/http4s/blaze/build.sbt

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name := "http4s"
22

33
version := "1.0"
44

5-
scalaVersion := "2.13.11"
5+
scalaVersion := "2.13.17"
66

77
scalacOptions ++= Seq(
88
"-deprecation",
@@ -19,9 +19,9 @@ scalacOptions ++= Seq(
1919

2020
enablePlugins(SbtTwirl)
2121

22-
val http4sVersion = "0.23.22"
23-
val http4sBlazeVersion = "0.23.15"
24-
val http4sTwirlVersion = "0.23.17"
22+
val http4sVersion = "0.23.32"
23+
val http4sBlazeVersion = "0.23.17"
24+
val http4sTwirlVersion = "0.23.18"
2525

2626
assembly / assemblyMergeStrategy := {
2727
case PathList(xs @ _*) if xs.last == "io.netty.versions.properties" => MergeStrategy.rename
@@ -35,13 +35,13 @@ libraryDependencies ++= Seq(
3535
"org.http4s" %% "http4s-twirl" % http4sTwirlVersion,
3636
"org.http4s" %% "http4s-circe" % http4sVersion,
3737
// Optional for auto-derivation of JSON codecs
38-
"io.circe" %% "circe-generic" % "0.14.5",
39-
"org.typelevel" %% "cats-effect" % "3.5.1",
40-
"co.fs2" %% "fs2-core" % "3.7.0",
41-
"co.fs2" %% "fs2-io" % "3.7.0",
42-
"io.getquill" %% "quill-jasync-postgres" % "3.19.0",
43-
"io.getquill" %% "quill-jasync" % "3.19.0",
44-
"ch.qos.logback" % "logback-classic" % "1.4.8"
38+
"io.circe" %% "circe-generic" % "0.14.15",
39+
"org.typelevel" %% "cats-effect" % "3.6.3",
40+
"co.fs2" %% "fs2-core" % "3.12.2",
41+
"co.fs2" %% "fs2-io" % "3.12.2",
42+
"io.getquill" %% "quill-jasync-postgres" % "4.8.0",
43+
"io.getquill" %% "quill-jasync" % "4.8.0",
44+
"ch.qos.logback" % "logback-classic" % "1.5.19"
4545
)
4646

4747
addCompilerPlugin("com.olegpy" %% "better-monadic-for" % "0.3.1")

frameworks/Scala/http4s/http4s.dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM sbtscala/scala-sbt:eclipse-temurin-21.0.6_7_1.10.11_2.13.16 AS builder
1+
FROM sbtscala/scala-sbt:eclipse-temurin-21.0.8_9_1.11.7_2.13.17 AS builder
22
WORKDIR /http4s
33
COPY blaze/project project
44
COPY blaze/src src
@@ -10,7 +10,7 @@ RUN sbt assembly -batch && \
1010
rm -Rf ~/.sbt && \
1111
rm -Rf ~/.ivy2 && \
1212
rm -Rf /var/cache
13-
13+
1414
FROM openjdk:21
1515
WORKDIR /http4s
1616
COPY --from=builder /http4s/http4s-assembly-1.0.jar /http4s/http4s-assembly-1.0.jar

0 commit comments

Comments
 (0)