1.16.2 (2025-10-06)
Bugs Fixed
- Fixed a bug where
reactor.netty.http.client.HttpClient.resolver
would always be set toDefaultAddressResolverGroup.INSTANCE
when noProxyOptions
were provided, even when a customHttpClient
was used to initializeNettyAsyncHttpClientBuilder
.
Now the resolver is only set toDefaultAddressResolverGroup.INSTANCE
when a resolver wasn't set. - Changed how HTTP responses are closed to limit the chances of leaking
ByteBuf
s when theConnection
'sChannel
was
deregistered from anEventLoop
, resulting in the network connection from being cleaned up properly.