1.6.1¶ ↑
Improvements¶ ↑
-
:oauth
plugin:.oauth_session
can be called with an:audience
parameter, which has the effect of adding it as an extra form body parameter of the token request.
Bugfixes¶ ↑
-
options: when freezing the options, skip freezing
:debug
; it’s usually a file/IO/stream object (stdout, stderr…), which makes it error when log messages are written. -
tcp: fixed adding IPv6 addresses to a tcp object when IPv4 connection probe is ongoing so that the next try uses the first ipv6 address.
-
tcp: reorder addresses on reconnection, so ipv6 is tried first in case it is still valid.
-
tcp: make sure ip index is decremented on error, so the next tried IP may be a valid one.
-
tcp: do not reattempt connecting if there are no available addresses to connect. This may happen in a fiber-aware context, where fiber A waits on connection, fiber B reconnects as a result on an error or GOAWAY frame and waits on the resolver DNS answer, and when context is passed back to fiber B, it should go back to the invalidate the response and try again while waiting on the resolver as well.
-
ssl: on connection coalescing, do not merge the ssl sessions, as these are frozen post-initialization.
-
http2: all received GOAWAY frames emit goaway error and teardown the connection independent of the error code (it was only doing it for
:noerror
, but others may appear). -
do not check at require time whether the network is multi-homed; instead, defer it to first use and cache (this can break environments which block access to certain syscalls during boot time).
-
options: do not ignore when user sets
:ip_families
in name resolution.