Skip to content

Commit

Permalink
Update dependency com.linecorp.armeria:armeria-bom to v1.25.0 (#5748)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Jack Berg <[email protected]>
  • Loading branch information
renovate[bot] and jack-berg authored Aug 22, 2023
1 parent 3c9eb62 commit 32d591a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dependencyManagement/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ public HttpResponse serve(ServiceRequestContext ctx, HttpRequest req) {
MediaType.parse("application/x-protobuf"),
successResponse);
});
return HttpResponse.from(responseFuture);
return HttpResponse.of(responseFuture);
}

private static byte[] maybeGzipInflate(RequestHeaders requestHeaders, byte[] content)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public HttpResponse serve(ServiceRequestContext ctx, HttpRequest req) {
.setParent(incomingContext)
.startSpan();
try (Scope ignored = span.makeCurrent()) {
return HttpResponse.from(
return HttpResponse.of(
client
.get()
.get("/backend")
Expand Down

0 comments on commit 32d591a

Please sign in to comment.