Skip to main content
info

You're seeing the release note of an old version. Check out the latest release note.

v1.13.0

October 15, 2021

🌟 New features

  • You can now customize HTTP/1 header names on the server side using ServerBuilder.http1HeaderNaming(). #3845 #3866
    Server.builder()
    .http1HeaderNaming(Http1HeaderNaming.traditional());
  • You can now easily create an HttpResponse from a specific executor using HttpResponse.from(). #3834 #3864
    Server.builder()
    .service("/blocking" (ctx, req) -> {
    return HttpResponse.from(() -> { // 👈👈👈
    // Perform a long running task.
    ...
    return HttpResponse.of(...);
    }, ctx.blockingTaskExecutor());
    });

📈 Improvements

🛠️ Bug fixes

  • You no longer see a NullPointerExcepiton when no suitable ClientFactory was found. #3867 #3868
    • An IllegalStateException with a proper error message will be raised instead.
  • You no longer see a false positive warning when adding GrpcServices. #3869 #3871
  • You no longer see an IllegalStateException when a gRPC client call starts with an empty EndpointGroup. #3876
  • management.server.port is now correctly activated only when Armeria Actuator is configured. #3873

☢️ Breaking changes

⛓ 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

🙇 Thank you

This release was possible thanks to the following contributors who shared their brilliant ideas and awesome pull requests:

@trustin@hyangtack@ikhoon@jupiny@heowc@TheWeaVer@octo47@ghkim3221@mauhiz@minwoox

Like Armeria?
Star us ⭐️

×