From 653965e8f829bf06a62c924c1dee47f37ab6ad92 Mon Sep 17 00:00:00 2001 From: xerial-bot Date: Fri, 28 Jul 2023 12:53:23 -0700 Subject: [PATCH] Update netty-all to 4.1.96.Final (#3074) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## About this PR 📦 Updates io.netty:netty-all from `4.1.95.Final` to `4.1.96.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/b83aae55d9dd000548c3b3c9b63d79636e7b3c8b/docs/repo-specific-configuration.md) file. _Have a fantastic day writing Scala!_
âš™ Adjust future updates 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" } }] ```
labels: library-update --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 6b3c50f7cd..a53b01a41a 100644 --- a/build.sbt +++ b/build.sbt @@ -712,7 +712,7 @@ lazy val netty = name := "airframe-http-netty", description := "Airframe HTTP Netty backend", libraryDependencies ++= Seq( - "io.netty" % "netty-all" % "4.1.95.Final" + "io.netty" % "netty-all" % "4.1.96.Final" ) ) .dependsOn(http.jvm, rx.jvm)