From e8c872dca13fd8644aa4588d4336fb47dd47d352 Mon Sep 17 00:00:00 2001 From: xerial-bot Date: Fri, 10 Feb 2023 23:02:10 -0800 Subject: [PATCH] Update sbt-airframe to 23.2.4 (#2750) Updates [org.wvlet.airframe:sbt-airframe](https://github.com/wvlet/airframe) from 23.2.3 to 23.2.4. [GitHub Release Notes](https://github.com/wvlet/airframe/releases/tag/v23.2.4) - [Version Diff](https://github.com/wvlet/airframe/compare/v23.2.3...v23.2.4) 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/77e035ef483ebb658433dfa1469671184e511f09/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 (23.2.3). You might want to review and update them manually. ``` docs/release-notes.md examples/rpc-examples/hello-rpc/build.sbt examples/rpc-examples/rpc-scalajs/build.sbt examples/rx-demo/gallery/build.sbt ```
Adjust future updates Add this to your `.scala-steward.conf` file to ignore future updates of this dependency: ``` updates.ignore = [ { groupId = "org.wvlet.airframe", artifactId = "sbt-airframe" } ] ``` Or, add this to slow down future updates of this dependency: ``` dependencyOverrides = [{ pullRequests = { frequency = "30 days" }, dependency = { groupId = "org.wvlet.airframe", artifactId = "sbt-airframe" } }] ```
labels: sbt-plugin-update --- examples/rpc-examples/hello-rpc/project/plugins.sbt | 2 +- examples/rpc-examples/rpc-scalajs/project/plugins.sbt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/rpc-examples/hello-rpc/project/plugins.sbt b/examples/rpc-examples/hello-rpc/project/plugins.sbt index 4cff033fa0..1f1eb900f2 100644 --- a/examples/rpc-examples/hello-rpc/project/plugins.sbt +++ b/examples/rpc-examples/hello-rpc/project/plugins.sbt @@ -1,5 +1,5 @@ ThisBuild / libraryDependencySchemes += "org.scala-lang.modules" %% "scala-xml" % "always" addSbtPlugin("org.xerial.sbt" % "sbt-pack" % "0.17") -addSbtPlugin("org.wvlet.airframe" % "sbt-airframe" % "23.2.3") +addSbtPlugin("org.wvlet.airframe" % "sbt-airframe" % "23.2.4") addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.0") diff --git a/examples/rpc-examples/rpc-scalajs/project/plugins.sbt b/examples/rpc-examples/rpc-scalajs/project/plugins.sbt index 66847bcf42..a8a95eeeda 100644 --- a/examples/rpc-examples/rpc-scalajs/project/plugins.sbt +++ b/examples/rpc-examples/rpc-scalajs/project/plugins.sbt @@ -1,6 +1,6 @@ ThisBuild / libraryDependencySchemes += "org.scala-lang.modules" %% "scala-xml" % "always" -addSbtPlugin("org.wvlet.airframe" % "sbt-airframe" % "23.2.3") +addSbtPlugin("org.wvlet.airframe" % "sbt-airframe" % "23.2.4") addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.9.0") addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.2.0") addSbtPlugin("io.spray" % "sbt-revolver" % "0.9.1")