You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There have been some reports of errors that could potentially be related to
per-thread malloc or DNS lookups. In caution, the per-thread malloc has been
disabled and will be brought back in a safe way once we've been able to test
it much more thoroughly.
Integer division by zero now results in exception ZeroDivisionError
the JSON encode and decode functions were implemented as methods on an actor
due to an earlier actonc bug
bug is fixed, so encode() and decode() are now moved to free functions
in the json module
the old Json actor remains and simply wraps the free functions
Fixed
Fix error handling in net.TCPConnection for single family use [#1546]
original error handling presumed a dual stack socket and so would wait for
both IPv4 and IPv6 to report an error before propagating the error to the
caller
now if only a single address family is used, errors are immediately sent to
the caller
Fix error handling in net.TCPConnection for dual stack use [#1527]
while the original design focused on this use case, there was a bug
Honor --root
the automatic detection of root actors based on the name main would
previously override a manually provided one
Fix time difference calculation when underflowing
Fix add / sub duration & comparison for time.Instant [#1545]
Fix premature conversion of input to close converter [#1553]