Update dependency com.linecorp.armeria:armeria-bom to v1.25.0 (#5748)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Jack Berg <jberg@newrelic.com>
This commit is contained in:
parent
3c9eb62bd2
commit
32d591ae53
|
|
@ -11,7 +11,7 @@ val DEPENDENCY_BOMS = listOf(
|
|||
"com.fasterxml.jackson:jackson-bom:2.15.2",
|
||||
"com.google.guava:guava-bom:32.1.2-jre",
|
||||
"com.google.protobuf:protobuf-bom:3.24.1",
|
||||
"com.linecorp.armeria:armeria-bom:1.24.3",
|
||||
"com.linecorp.armeria:armeria-bom:1.25.0",
|
||||
"com.squareup.okhttp3:okhttp-bom:4.11.0",
|
||||
"com.squareup.okio:okio-bom:3.5.0", // applies to transitive dependencies of okhttp
|
||||
"io.grpc:grpc-bom:1.57.2",
|
||||
|
|
|
|||
|
|
@ -178,7 +178,7 @@ public abstract class AbstractHttpTelemetryExporterTest<T, U extends Message> {
|
|||
MediaType.parse("application/x-protobuf"),
|
||||
successResponse);
|
||||
});
|
||||
return HttpResponse.from(responseFuture);
|
||||
return HttpResponse.of(responseFuture);
|
||||
}
|
||||
|
||||
private static byte[] maybeGzipInflate(RequestHeaders requestHeaders, byte[] content)
|
||||
|
|
|
|||
|
|
@ -72,7 +72,7 @@ class B3PropagationIntegrationTest {
|
|||
.setParent(incomingContext)
|
||||
.startSpan();
|
||||
try (Scope ignored = span.makeCurrent()) {
|
||||
return HttpResponse.from(
|
||||
return HttpResponse.of(
|
||||
client
|
||||
.get()
|
||||
.get("/backend")
|
||||
|
|
|
|||
Loading…
Reference in New Issue