Skip to content

Commit 6ad9780

Browse files
authored
Update airframe-http, airframe-http-netty, ... to 23.7.4 (#3080)
## 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.7.3` to `23.7.4` 📜 [GitHub Release Notes](https://github.com/wvlet/airframe/releases/tag/v23.7.4) - [Version Diff](v23.7.3...v23.7.4) ## 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!_ <details> <summary>⚙ Adjust future updates</summary> 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" } }] ``` </details> <sup> labels: library-update </sup>
1 parent 653965e commit 6ad9780

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

examples/rpc-examples/hello-rpc/build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
val AIRFRAME_VERSION = "23.7.3"
1+
val AIRFRAME_VERSION = "23.7.4"
22
ThisBuild / scalaVersion := "3.2.2"
33

44
// RPC API definition. This project should contain only RPC interfaces
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ThisBuild / libraryDependencySchemes += "org.scala-lang.modules" %% "scala-xml" % "always"
22

33
addSbtPlugin("org.xerial.sbt" % "sbt-pack" % "0.17")
4-
addSbtPlugin("org.wvlet.airframe" % "sbt-airframe" % "23.7.3")
4+
addSbtPlugin("org.wvlet.airframe" % "sbt-airframe" % "23.7.4")
55
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.0")

examples/rpc-examples/rpc-scalajs/build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Global / onChangedBuildSource := ReloadOnSourceChanges
22

3-
val AIRFRAME_VERSION = "23.7.3"
3+
val AIRFRAME_VERSION = "23.7.4"
44
ThisBuild / scalaVersion := "3.2.2"
55

66
lazy val rpcExample =
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
ThisBuild / libraryDependencySchemes += "org.scala-lang.modules" %% "scala-xml" % "always"
22

3-
addSbtPlugin("org.wvlet.airframe" % "sbt-airframe" % "23.7.3")
3+
addSbtPlugin("org.wvlet.airframe" % "sbt-airframe" % "23.7.4")
44
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.13.2")
55
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.2")
66
addSbtPlugin("io.spray" % "sbt-revolver" % "0.10.0")

examples/rx-demo/gallery/build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Global / onChangedBuildSource := ReloadOnSourceChanges
22

3-
val AIRFRAME_VERSION = "23.7.3"
3+
val AIRFRAME_VERSION = "23.7.4"
44
ThisBuild / scalaVersion := "2.13.11"
55

66
lazy val gallery =

0 commit comments

Comments
 (0)