From 53f607892d00b30ffd0709e940a0f52a68482b3b Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Wed, 16 Oct 2024 19:34:41 +0200 Subject: [PATCH] Update client3:core to 3.10.1 (#762) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## About this PR 📦 Updates [com.softwaremill.sttp.client3:core](https://github.com/softwaremill/sttp) from `3.10.0` to `3.10.1` 📜 [GitHub Release Notes](https://github.com/softwaremill/sttp/releases/tag/v3.10.1) - [Version Diff](https://github.com/softwaremill/sttp/compare/v3.10.0...v3.10.1) ## 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/6fbfe24025d3e02be3a08bc628ccb3a828b36038/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.softwaremill.sttp.client3", artifactId = "core" } ] ``` Or, add this to slow down future updates of this dependency: ``` dependencyOverrides = [{ pullRequests = { frequency = "30 days" }, dependency = { groupId = "com.softwaremill.sttp.client3", artifactId = "core" } }] ```
labels: library-update, early-semver-patch, semver-spec-patch, version-scheme:early-semver, commit-count:1 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index f9fbab3c5..01107f02b 100644 --- a/build.sbt +++ b/build.sbt @@ -283,7 +283,7 @@ lazy val `kyo-sttp` = .dependsOn(`kyo-core`) .settings( `kyo-settings`, - libraryDependencies += "com.softwaremill.sttp.client3" %%% "core" % "3.10.0" + libraryDependencies += "com.softwaremill.sttp.client3" %%% "core" % "3.10.1" ) .jsSettings(`js-settings`) .jvmSettings(mimaCheck(false))