From 1a4dde6d583b4d4ffcd9e52dfd59331e8a8d2919 Mon Sep 17 00:00:00 2001 From: xerial-bot Date: Tue, 10 Oct 2023 05:37:35 -0700 Subject: [PATCH] Update sbt-ide-settings to 1.1.2 (#3240) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## About this PR 📦 Updates [org.jetbrains.scala:sbt-ide-settings](https://github.com/JetBrains/sbt-ide-settings) from `1.1.1` to `1.1.2` 📜 [GitHub Release Notes](https://github.com/JetBrains/sbt-ide-settings/releases/tag/v1.1.2) - [Version Diff](https://github.com/JetBrains/sbt-ide-settings/compare/v1.1.1...v1.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/b83aae55d9dd000548c3b3c9b63d79636e7b3c8b/docs/repo-specific-configuration.md) file. _Have a fantastic day writing Scala!_
🔍 Files still referring to the old version number The following files still refer to the old version number (1.1.1). You might want to review and update them manually. ``` airspec/build.sbt airspec/src/test/scala/examples/AsyncTest.scala build.sbt docs/release-notes.md website/static/img/undraw_youtube_tutorial.svg ```
⚙ Adjust future updates Add this to your `.scala-steward.conf` file to ignore future updates of this dependency: ``` updates.ignore = [ { groupId = "org.jetbrains.scala", artifactId = "sbt-ide-settings" } ] ``` Or, add this to slow down future updates of this dependency: ``` dependencyOverrides = [{ pullRequests = { frequency = "30 days" }, dependency = { groupId = "org.jetbrains.scala", artifactId = "sbt-ide-settings" } }] ```
labels: sbt-plugin-update --- project/plugin.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugin.sbt b/project/plugin.sbt index f1fa34d0d9..173099f623 100755 --- a/project/plugin.sbt +++ b/project/plugin.sbt @@ -8,7 +8,7 @@ addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.0.9") addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2") addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.2") addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.11.0") -addSbtPlugin("org.jetbrains.scala" % "sbt-ide-settings" % "1.1.1") +addSbtPlugin("org.jetbrains.scala" % "sbt-ide-settings" % "1.1.2") // For integration testing val SBT_AIRFRAME_VERSION = sys.env.getOrElse("SBT_AIRFRAME_VERSION", "23.6.2")