1.13.0 release notes
15th October 2021
🌟 New features
- You can now customize HTTP/1 header names on the server side
using
ServerBuilder.http1HeaderNaming(). #3845 #3866Server.builder() .http1HeaderNaming(Http1HeaderNaming.traditional()); - You can now easily create an
HttpResponsefrom a specific executor usingHttpResponse.from(). #3834 #3864Server.builder() .service("/blocking" (ctx, req) -> { return HttpResponse.from(() -> { // 👈👈👈 // Perform a long running task. ... return HttpResponse.of(...); }, ctx.blockingTaskExecutor()); });
📈 Improvements
- Various
HttpHeaderNamesare added. #3872
🛠️ Bug fixes
- You no longer see a
NullPointerExcepitonwhen no suitableClientFactorywas found. #3867 #3868- An
IllegalStateExceptionwith a proper error message will be raised instead.
- An
- You no longer see a false positive warning when adding
GrpcServices. #3869 #3871 - You no longer see an
IllegalStateExceptionwhen a gRPC client call starts with an emptyEndpointGroup. #3876 management.server.portis now correctly activated only when Armeria Actuator is configured. #3873
☢️ Breaking changes
GraphqlRequesthas been moved tocommonfromserverpackage. #3865
⛓ Dependencies
- Netty 4.1.68 → 4.1.69
- Netty io_uring 0.0.8 → 0.0.9
- Reactor 3.4.10 → 3.4.11
- reactor-kotlin-extensions 1.1.4 → 1.1.5
- RxJava 3.1.1 → 3.1.2
- ScalaPB 0.11.5 → 0.11.6