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
"Unhandled" Exceptions are no longer printed in actor methods called by
another actor that awaits the return value
It used to be that when an actor B raised an exception in a method called by
actor A, presuming no try/except handling at all, an Unhandled exception
message would be printed in both actor A and B.
Now we inspect waiting actors and in case there are any, the exception will
be considered "handled" in the actor method that raised the exception
Cleanup old cruft from Makefile [#]
Now using zig v0.12.0-dev.1536
Improved CPU feature detection for Apple silicon
Some smaller zig build system changes, but it seems to be stabilizing as
there are now docs!
Improve DNS error handling in net.TCPConnection [#1573]
Ignore DNS resolution errors if we're already in connected state
Given happy eyeball support, we could get a A record and establish a working
IPv4 connection while IPv6 would give an error and be retried continuously,
which is completely pointless when IPv4 is already established.
Type error now separate error from identifier with : [#1583]
Testing / CI
Now also testing build / test and running on Ubuntu 23.10
There are now golden tests for the compilers type errors [#1571]