Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update airframe-codec, airframe-control, ... to 24.4.1 #3496

Merged
merged 2 commits into from
Apr 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
*/
package wvlet.airframe.http.codegen

import wvlet.airframe.surface.reflect.ReflectSurfaceFactory
import wvlet.airspec.AirSpec

/**
Expand All @@ -24,14 +23,4 @@ class ClassScannerTest extends AirSpec {
"/lib/0.0.1%2Btest/xxxx-0.0.1%2Btest.jar"
) shouldBe "/lib/0.0.1+test/xxxx-0.0.1+test.jar"
}

test("Skip abstract class") {
if (isScala3) {
skip(s"Runtime reflection doesn't work in Scala 3")
}
// https://github.com/wvlet/airframe/issues/1607
val cl = classOf[io.grpc.stub.AbstractStub[_]]
val s = ReflectSurfaceFactory.ofClass(cl)
val m = ReflectSurfaceFactory.methodsOfClass(cl)
}
}
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ val targetScalaVersions = SCALA_3 :: uptoScala2
// Add this for using snapshot versions
ThisBuild / resolvers ++= Resolver.sonatypeOssRepos("snapshots")

val AIRSPEC_VERSION = sys.env.getOrElse("AIRSPEC_VERSION", "24.3.0")
val AIRSPEC_VERSION = sys.env.getOrElse("AIRSPEC_VERSION", "24.4.1")
val SCALACHECK_VERSION = "1.17.1"
val MSGPACK_VERSION = "0.9.8"
val SCALA_PARSER_COMBINATOR_VERSION = "2.4.0"
Expand Down
4 changes: 2 additions & 2 deletions sbt-airframe/build.sbt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// Reload build.sbt on changes
Global / onChangedBuildSource := ReloadOnSourceChanges

val AIRFRAME_VERSION = sys.env.getOrElse("AIRFRAME_VERSION", "24.3.0")
val AIRSPEC_VERSION = sys.env.getOrElse("AIRSPEC_VERSION", "24.3.0")
val AIRFRAME_VERSION = sys.env.getOrElse("AIRFRAME_VERSION", "24.4.1")
val AIRSPEC_VERSION = sys.env.getOrElse("AIRSPEC_VERSION", "24.4.1")
val SCALA_2_12 = "2.12.19"

ThisBuild / organization := "org.wvlet.airframe"
Expand Down
Loading