From a29cf7dcafa0126f57e8163cbba63bd97945d272 Mon Sep 17 00:00:00 2001 From: xerial-bot Date: Mon, 16 Sep 2024 22:45:24 -0700 Subject: [PATCH] Update scalacheck to 1.18.1 (#3638) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## About this PR 📦 Updates [org.scalacheck:scalacheck](https://github.com/typelevel/scalacheck) from `1.18.0` to `1.18.1` 📜 [GitHub Release Notes](https://github.com/typelevel/scalacheck/releases/tag/v1.18.1) - [Version Diff](https://github.com/typelevel/scalacheck/compare/v1.18.0...v1.18.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/7ec418cd5441d449f037bca6d34326534c07a5dd/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.scalacheck", artifactId = "scalacheck" } ] ``` Or, add this to slow down future updates of this dependency: ``` dependencyOverrides = [{ pullRequests = { frequency = "30 days" }, dependency = { groupId = "org.scalacheck", artifactId = "scalacheck" } }] ```
labels: library-update --- airspec/build.sbt | 2 +- build.sbt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/airspec/build.sbt b/airspec/build.sbt index 55179a775..d85463442 100644 --- a/airspec/build.sbt +++ b/airspec/build.sbt @@ -18,7 +18,7 @@ val SCALA_2_13 = "2.13.14" val SCALA_3 = "3.3.3" val targetScalaVersions = SCALA_3 :: SCALA_2_13 :: SCALA_2_12 :: Nil -val SCALACHECK_VERSION = "1.18.0" +val SCALACHECK_VERSION = "1.18.1" val JS_JAVA_LOGGING_VERSION = "1.0.0" val JAVAX_ANNOTATION_API_VERSION = "1.3.2" diff --git a/build.sbt b/build.sbt index 5d44a0415..8e5658d9f 100644 --- a/build.sbt +++ b/build.sbt @@ -11,7 +11,7 @@ val targetScalaVersions = SCALA_3 :: uptoScala2 ThisBuild / resolvers ++= Resolver.sonatypeOssRepos("snapshots") val AIRSPEC_VERSION = sys.env.getOrElse("AIRSPEC_VERSION", "24.5.1") -val SCALACHECK_VERSION = "1.18.0" +val SCALACHECK_VERSION = "1.18.1" val MSGPACK_VERSION = "0.9.8" val SCALA_PARSER_COMBINATOR_VERSION = "2.4.0" val SQLITE_JDBC_VERSION = "3.46.1.0"