From e9c73c2c6525068a71bb8dfb6234783876646124 Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Mon, 30 Sep 2024 09:19:58 +0200 Subject: [PATCH] Update skafka to 17.1.2 (#678) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## About this PR 📦 Updates [com.evolutiongaming:skafka](https://github.com/evolution-gaming/skafka) from `17.1.0` to `17.1.2` 📜 [GitHub Release Notes](https://github.com/evolution-gaming/skafka/releases/tag/v17.1.2) - [Version Diff](https://github.com/evolution-gaming/skafka/compare/v17.1.0...v17.1.2) ## 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/ee1dbea86cd10033d5f25971ff9d9e3b17f159c3/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 = "com.evolutiongaming", artifactId = "skafka" } ] ``` Or, add this to slow down future updates of this dependency: ``` dependencyOverrides = [{ pullRequests = { frequency = "30 days" }, dependency = { groupId = "com.evolutiongaming", artifactId = "skafka" } }] ```
labels: library-update, early-semver-patch, semver-spec-patch, version-scheme:early-semver, commit-count:1 --- project/Dependencies.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/Dependencies.scala b/project/Dependencies.scala index 2ed462676..58c604a34 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -19,7 +19,7 @@ object Dependencies { val random = "com.evolutiongaming" %% "random" % "1.0.0" val retry = "com.evolutiongaming" %% "retry" % "3.0.1" val sstream = "com.evolutiongaming" %% "sstream" % "1.0.1" - val skafka = "com.evolutiongaming" %% "skafka" % "17.1.0" + val skafka = "com.evolutiongaming" %% "skafka" % "17.1.2" val `akka-test-actor` = "com.evolutiongaming" %% "akka-test-actor" % "0.1.0" val scache = "com.evolution" %% "scache" % "5.0.0" val `resource-pool` = "com.evolution" %% "resource-pool" % "1.0.4"