Skip to content

armeria-0.78.0

Choose a tag to compare

@trustin trustin released this 21 Dec 05:39
e142977

New features

  • Preliminary support for annotated services in DocService. #1479
  • Added com.linecorp.armeria.common.util.InetAddressPredicates for easier IP address filtering. #1494 #1498
    Predicate<InetAddress> ipFilter =
            InetAddressPredicates.ofCidr("192.168.0.0/24").or(
                    InetAddressPredicates.ofCidr("10.1.0.0/16"));
    See Getting an IP address of a client who initiated a request for more examples.

Bug fixes

  • Fixed a bug where an Armeria client does not send the content-length: 0 header when a user sends a PUT/POST/PATCH request without content. #1476 #1499
  • Fixed a bug where the decorators specified in AnnotatedServiceRegistrationBean are not applied correctly. #1497