Skip to content

Commit

Permalink
Update netty-reactive-streams-http to 3.0.0 (#3262)
Browse files Browse the repository at this point in the history
  • Loading branch information
softwaremill-ci authored Oct 27, 2023
1 parent 878af61 commit c0d657f
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -1434,7 +1434,7 @@ lazy val nettyServer: ProjectMatrix = (projectMatrix in file("server/netty-serve
name := "tapir-netty-server",
libraryDependencies ++= Seq(
"io.netty" % "netty-all" % Versions.nettyAll,
"com.typesafe.netty" % "netty-reactive-streams-http" % Versions.nettyReactiveStreams
"org.playframework.netty" % "netty-reactive-streams-http" % Versions.nettyReactiveStreams
)
++ loggerDependencies,
// needed because of https://github.com/coursier/coursier/issues/2016
Expand Down
2 changes: 1 addition & 1 deletion project/Versions.scala
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ object Versions {
val finatra = "22.12.0"
val catbird = "21.12.0"
val json4s = "4.0.6"
val nettyReactiveStreams = "2.0.10"
val nettyReactiveStreams = "3.0.0"
val sprayJson = "1.3.6"
val scalaCheck = "1.17.0"
val scalaTest = "3.2.17"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package sttp.tapir.server.netty.internal

import cats.effect.{Async, Sync}
import cats.syntax.all._
import com.typesafe.netty.http.StreamedHttpRequest
import org.playframework.netty.http.StreamedHttpRequest
import fs2.Chunk
import fs2.interop.reactivestreams.StreamSubscriber
import fs2.io.file.{Files, Path}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package sttp.tapir.server.netty

import com.typesafe.netty.http.HttpStreamsServerHandler
import org.playframework.netty.http.HttpStreamsServerHandler
import io.netty.channel.epoll.{Epoll, EpollEventLoopGroup, EpollServerSocketChannel}
import io.netty.channel.kqueue.{KQueue, KQueueEventLoopGroup, KQueueServerSocketChannel}
import io.netty.channel.nio.NioEventLoopGroup
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package sttp.tapir.server.netty.internal

import com.typesafe.netty.http.{DefaultStreamedHttpResponse, StreamedHttpRequest}
import org.playframework.netty.http.{DefaultStreamedHttpResponse, StreamedHttpRequest}
import com.typesafe.scalalogging.Logger
import io.netty.buffer.{ByteBuf, Unpooled}
import io.netty.channel._
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package sttp.tapir.server.netty.internal

import com.typesafe.netty.http.StreamedHttpRequest
import org.playframework.netty.http.StreamedHttpRequest
import io.netty.buffer.ByteBufUtil
import io.netty.handler.codec.http.FullHttpRequest
import sttp.capabilities.zio.ZioStreams
Expand Down

0 comments on commit c0d657f

Please sign in to comment.