Skip to content

Commit

Permalink
Update airframe-http, ... to 23.3.3 (#2802)
Browse files Browse the repository at this point in the history
Updates 
* [org.wvlet.airframe:airframe-http](https://github.com/wvlet/airframe)
*
[org.wvlet.airframe:airframe-http-finagle](https://github.com/wvlet/airframe)
*
[org.wvlet.airframe:airframe-http-grpc](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.3.2 to 23.3.3.
[GitHub Release
Notes](https://github.com/wvlet/airframe/releases/tag/v23.3.3) -
[Version
Diff](v23.3.2...v23.3.3)


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/070634501628558e00a7cd623c97bff1995e59e3/docs/repo-specific-configuration.md)
file.

Have a fantastic day writing Scala!

<details>
<summary>Files still referring to the old version number</summary>

The following files still refer to the old version number (23.3.2).
You might want to review and update them manually.
```
docs/release-notes.md
```
</details>
<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>

labels: library-update
  • Loading branch information
xerial-bot authored Mar 24, 2023
1 parent 7ea21b1 commit 7bb1c23
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion examples/rpc-examples/hello-rpc/build.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
val AIRFRAME_VERSION = "23.3.2"
val AIRFRAME_VERSION = "23.3.3"
ThisBuild / scalaVersion := "2.13.10"

// RPC API definition. This project should contain only RPC interfaces
Expand Down
2 changes: 1 addition & 1 deletion examples/rpc-examples/hello-rpc/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -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.3.2")
addSbtPlugin("org.wvlet.airframe" % "sbt-airframe" % "23.3.3")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.0")
2 changes: 1 addition & 1 deletion examples/rpc-examples/rpc-scalajs/build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Global / onChangedBuildSource := ReloadOnSourceChanges

val AIRFRAME_VERSION = "23.3.2"
val AIRFRAME_VERSION = "23.3.3"
ThisBuild / scalaVersion := "2.13.10"

lazy val rpcExample =
Expand Down
2 changes: 1 addition & 1 deletion examples/rpc-examples/rpc-scalajs/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ThisBuild / libraryDependencySchemes += "org.scala-lang.modules" %% "scala-xml" % "always"

addSbtPlugin("org.wvlet.airframe" % "sbt-airframe" % "23.3.2")
addSbtPlugin("org.wvlet.airframe" % "sbt-airframe" % "23.3.3")
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")
2 changes: 1 addition & 1 deletion examples/rx-demo/gallery/build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Global / onChangedBuildSource := ReloadOnSourceChanges

val AIRFRAME_VERSION = "23.3.2"
val AIRFRAME_VERSION = "23.3.3"
ThisBuild / scalaVersion := "2.13.10"

lazy val gallery =
Expand Down

0 comments on commit 7bb1c23

Please sign in to comment.