Skip to content

Commit bf08b59

Browse files
Update netty-all to 4.2.7.Final (#4872)
## About this PR 📦 Updates io.netty:netty-all from `4.2.0.Final` to `4.2.7.Final` ## Usage ✅ **Please merge!** I'll automatically update this PR to resolve conflicts as long as you don't change it yourself. If you'd like to skip this version, you can just close this PR. If you have any feedback, just mention me in the comments below. Configure Scala Steward for your repository with a [`.scala-steward.conf`](https://github.com/scala-steward-org/scala-steward/blob/2a028a134addd16dff0b99a189a295a348991c53/docs/repo-specific-configuration.md) file. _Have a fantastic day writing Scala!_ <details> <summary>⚙ Adjust future updates</summary> Add this to your `.scala-steward.conf` file to ignore future updates of this dependency: ``` updates.ignore = [ { groupId = "io.netty", artifactId = "netty-all" } ] ``` Or, add this to slow down future updates of this dependency: ``` dependencyOverrides = [{ pullRequests = { frequency = "30 days" }, dependency = { groupId = "io.netty", artifactId = "netty-all" } }] ``` </details> <sup> labels: library-update, commit-count:1 </sup> <!-- scala-steward = { "Update" : { "ForArtifactId" : { "crossDependency" : [ { "groupId" : "io.netty", "artifactId" : { "name" : "netty-all", "maybeCrossName" : null }, "version" : "4.2.0.Final", "sbtVersion" : null, "scalaVersion" : null, "configurations" : null } ], "newerVersions" : [ "4.2.7.Final" ], "newerGroupId" : null, "newerArtifactId" : null } }, "Labels" : [ "library-update", "commit-count:1" ] } --> --------- Co-authored-by: scala-steward <scala-steward> Co-authored-by: Adam Warski <adam@warski.org>
1 parent ae6cfeb commit bf08b59

File tree

2 files changed

+4
-12
lines changed

2 files changed

+4
-12
lines changed

build.sbt

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1558,9 +1558,7 @@ lazy val nettyServer: ProjectMatrix = (projectMatrix in file("server/netty-serve
15581558
"org.playframework.netty" % "netty-reactive-streams-http" % Versions.nettyReactiveStreams,
15591559
"org.apache.httpcomponents" % "httpmime" % "4.5.14",
15601560
slf4j
1561-
),
1562-
// needed because of https://github.com/coursier/coursier/issues/2016
1563-
useCoursier := false
1561+
)
15641562
)
15651563
.jvmPlatform(scalaVersions = scala2And3Versions, settings = commonJvmSettings)
15661564
.dependsOn(serverCore, serverTests % Test)
@@ -1570,8 +1568,6 @@ lazy val nettyServerSync: ProjectMatrix =
15701568
.settings(commonSettings)
15711569
.settings(
15721570
name := "tapir-netty-server-sync",
1573-
// needed because of https://github.com/coursier/coursier/issues/2016
1574-
useCoursier := false,
15751571
Test / run / fork := true,
15761572
libraryDependencies ++= Seq(
15771573
"com.softwaremill.ox" %% "core" % Versions.ox,
@@ -1602,9 +1598,7 @@ def nettyServerProject(proj: String, dependency: ProjectMatrix): ProjectMatrix =
16021598
ProjectMatrix(s"nettyServer${proj.capitalize}", file(s"server/netty-server/$proj"))
16031599
.settings(commonSettings)
16041600
.settings(
1605-
name := s"tapir-netty-server-$proj",
1606-
// needed because of https://github.com/coursier/coursier/issues/2016
1607-
useCoursier := false
1601+
name := s"tapir-netty-server-$proj"
16081602
)
16091603
.jvmPlatform(scalaVersions = scala2And3Versions, settings = commonJvmSettings)
16101604
.dependsOn(nettyServer, dependency, serverTests % Test)
@@ -2297,9 +2291,7 @@ lazy val documentation: ProjectMatrix = (projectMatrix in file("generated-doc"))
22972291
"org.http4s" %% "http4s-blaze-server" % Versions.http4sBlazeServer,
22982292
"com.softwaremill.sttp.apispec" %% "openapi-circe-yaml" % Versions.sttpApispec,
22992293
"com.softwaremill.sttp.apispec" %% "asyncapi-circe-yaml" % Versions.sttpApispec
2300-
),
2301-
// needed because of https://github.com/coursier/coursier/issues/2016
2302-
useCoursier := false
2294+
)
23032295
)
23042296
.jvmPlatform(scalaVersions = List(documentationScalaVersion), settings = commonJvmSettings)
23052297
.dependsOn(

project/Versions.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ object Versions {
6666
val openTelemetrySemconvVersion = "1.37.0"
6767
val mockServer = "5.15.0"
6868
val dogstatsdClient = "4.4.5"
69-
val nettyAll = "4.2.0.Final"
69+
val nettyAll = "4.2.7.Final"
7070
val logback = "1.5.20"
7171
val slf4j = "2.0.17"
7272
val jsoniter = "2.35.3"

0 commit comments

Comments
 (0)