From 0e94fcc5a0b5a6cb7d1b773d7333c364f0a002c9 Mon Sep 17 00:00:00 2001 From: "scala-steward-for-moia[bot]" <97042238+scala-steward-for-moia[bot]@users.noreply.github.com> Date: Mon, 27 Nov 2023 09:19:38 +0000 Subject: [PATCH] Update mockito-scala to 1.17.30 (#18) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## About this PR 📦 Updates [org.mockito:mockito-scala](https://github.com/mockito/mockito-scala) from `1.17.29` to `1.17.30` 📜 [GitHub Release Notes](https://github.com/mockito/mockito-scala/releases/tag/v1.17.30) - [Version Diff](https://github.com/mockito/mockito-scala/compare/v1.17.29...v1.17.30) ## 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/c12d4a4bad2b161125d40b8f05b335ee2f195de9/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 = "org.mockito", artifactId = "mockito-scala" } ] ``` Or, add this to slow down future updates of this dependency: ``` dependencyOverrides = [{ pullRequests = { frequency = "30 days" }, dependency = { groupId = "org.mockito", artifactId = "mockito-scala" } }] ```
labels: test-library-update, early-semver-patch, semver-spec-patch, commit-count:1 Co-authored-by: scala-steward <162267+scala-steward-for-moia[bot]@users.noreply.github.com> --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 35ceaa0..8a73234 100644 --- a/build.sbt +++ b/build.sbt @@ -50,7 +50,7 @@ lazy val awsDependencies = Seq( lazy val testDependencies = Seq( "org.scalatest" %% "scalatest" % "3.2.17" % Test, - "org.mockito" %% "mockito-scala" % "1.17.29" % Test, + "org.mockito" %% "mockito-scala" % "1.17.30" % Test, "org.mock-server" % "mockserver-netty" % "5.15.0" % Test )