From e2b43673db1c73cd5606572d0f5b3bba2233c08b Mon Sep 17 00:00:00 2001 From: xerial-bot Date: Thu, 14 Dec 2023 20:19:29 -0800 Subject: [PATCH] Update airframe-http, airframe-http-netty, ... to 23.12.0 (#3306) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## About this PR 📦 Updates * [org.wvlet.airframe:airframe-http](https://github.com/wvlet/airframe) * [org.wvlet.airframe:airframe-http-netty](https://github.com/wvlet/airframe) * [org.wvlet.airframe:airframe-launcher](https://github.com/wvlet/airframe) * [org.wvlet.airframe:airframe-rx-html](https://github.com/wvlet/airframe) * [org.wvlet.airframe:sbt-airframe](https://github.com/wvlet/airframe) from `23.11.3` to `23.12.0` 📜 [GitHub Release Notes](https://github.com/wvlet/airframe/releases/tag/v23.12.0) - [Version Diff](https://github.com/wvlet/airframe/compare/v23.11.3...v23.12.0) ## 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!_
âš™ Adjust future updates Add this to your `.scala-steward.conf` file to ignore future updates of this dependency: ``` updates.ignore = [ { groupId = "org.wvlet.airframe" } ] ``` Or, add this to slow down future updates of this dependency: ``` dependencyOverrides = [{ pullRequests = { frequency = "30 days" }, dependency = { groupId = "org.wvlet.airframe" } }] ```
labels: library-update --- examples/rpc-examples/hello-rpc/build.sbt | 2 +- examples/rpc-examples/hello-rpc/project/plugins.sbt | 2 +- examples/rpc-examples/rpc-scalajs/build.sbt | 2 +- examples/rpc-examples/rpc-scalajs/project/plugins.sbt | 2 +- examples/rx-demo/gallery/build.sbt | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/examples/rpc-examples/hello-rpc/build.sbt b/examples/rpc-examples/hello-rpc/build.sbt index 02617bf2b5..d97021b2c4 100644 --- a/examples/rpc-examples/hello-rpc/build.sbt +++ b/examples/rpc-examples/hello-rpc/build.sbt @@ -1,4 +1,4 @@ -val AIRFRAME_VERSION = "23.11.3" +val AIRFRAME_VERSION = "23.12.0" ThisBuild / scalaVersion := "3.2.2" // RPC API definition. This project should contain only RPC interfaces diff --git a/examples/rpc-examples/hello-rpc/project/plugins.sbt b/examples/rpc-examples/hello-rpc/project/plugins.sbt index 57c0a4e84f..03e56af583 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.18") -addSbtPlugin("org.wvlet.airframe" % "sbt-airframe" % "23.11.3") +addSbtPlugin("org.wvlet.airframe" % "sbt-airframe" % "23.12.0") addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2") diff --git a/examples/rpc-examples/rpc-scalajs/build.sbt b/examples/rpc-examples/rpc-scalajs/build.sbt index 887c9d23e6..624e1a1f3c 100644 --- a/examples/rpc-examples/rpc-scalajs/build.sbt +++ b/examples/rpc-examples/rpc-scalajs/build.sbt @@ -1,6 +1,6 @@ Global / onChangedBuildSource := ReloadOnSourceChanges -val AIRFRAME_VERSION = "23.11.3" +val AIRFRAME_VERSION = "23.12.0" ThisBuild / scalaVersion := "3.2.2" lazy val rpcExample = diff --git a/examples/rpc-examples/rpc-scalajs/project/plugins.sbt b/examples/rpc-examples/rpc-scalajs/project/plugins.sbt index bebc870b47..e140d9af29 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.11.3") +addSbtPlugin("org.wvlet.airframe" % "sbt-airframe" % "23.12.0") addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.14.0") addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.2") addSbtPlugin("io.spray" % "sbt-revolver" % "0.10.0") diff --git a/examples/rx-demo/gallery/build.sbt b/examples/rx-demo/gallery/build.sbt index b5778c5703..bbc118d875 100644 --- a/examples/rx-demo/gallery/build.sbt +++ b/examples/rx-demo/gallery/build.sbt @@ -1,6 +1,6 @@ Global / onChangedBuildSource := ReloadOnSourceChanges -val AIRFRAME_VERSION = "23.11.3" +val AIRFRAME_VERSION = "23.12.0" ThisBuild / scalaVersion := "2.13.12" lazy val gallery =