From 41a7faa3c6657165a2584d469345add68bfa90f6 Mon Sep 17 00:00:00 2001 From: xerial-bot Date: Thu, 14 Dec 2023 09:24:22 -0800 Subject: [PATCH] Update netty-all to 4.1.103.Final (#3302) 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.102.Final` to `4.1.103.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 d85e2ec6c6..139c2b8ec0 100644 --- a/build.sbt +++ b/build.sbt @@ -735,7 +735,7 @@ lazy val netty = name := "airframe-http-netty", description := "Airframe HTTP Netty backend", libraryDependencies ++= Seq( - "io.netty" % "netty-all" % "4.1.102.Final" + "io.netty" % "netty-all" % "4.1.103.Final" ) ) .dependsOn(http.jvm, rx.jvm)