--- AnyEvent/Changes 2008/10/02 15:11:01 1.196 +++ AnyEvent/Changes 2009/02/12 17:33:37 1.219 @@ -1,16 +1,61 @@ Revision history for Perl extension AnyEvent. -4.3 +4.34 Thu Feb 12 18:32:45 CET 2009 + - separately buffer TLS read data, as otherwise the read queue could + deadlock as receiving data is not expected while draining the + read queue (which cna only happen with TLS). + - raise EBADMSG error on JSON decoding errors. + - fix some minor manpage bugs (reported by Maximilian Gaß). + - speed up select bitmask parsing quite a bit in the pure perl + backend. + - use CORE::select instead of just select in AnyEvent::Impl::Perl. + +4.331 Tue Jan 6 21:07:25 CET 2009 + - socketpair fails on many vista machines because vista has + completely broken accept/getpeername and getsockname functions, + so we provide our own socketpair emulation that kind of works + (AnyEvent::Util::portable_pipe). + - new function: AnyEvent::Util::portable_socketpair. + - take advantage of the Guard module if it exists. + +4.33 Fri Nov 21 02:35:40 CET 2008 + - AnyEvent::Strict did errornously flag a fileno of 0 as + illegal. + - reduce memory usage and slightly speed up the pure perl backend + by only storing the file descriptor, not the file handle. + - add missing autocork method to AnyEvent::Handle (reported + by Adam Rosenstein). + - AnyEvent::DNS->resolve errornously documented an $rcode result + argument, but there isn't (spotted by Henrik Krohns). + - the naked truth about Tk - it's basically unmaintained. + +4.32 Mon Nov 3 22:46:32 CET 2008 + - fix AnyEvent::Socket::resolve_sockaddr to properly support + unix sockets again and choose a proper default for + the socket type. + - fix call to resolve_sockaddr in tcp_connect. + +4.31 Thu Oct 30 04:41:48 CET 2008 + - implemented AnyEvent::Handle->destroy method. + - hint about unexpected effects in TLS mode. + - speed up AnyEvent::Impl::Perl by using more arrays + instead of hashes without the slightest loss of readability :) + - work around a perl argument refcounting bug. + - with some perl patches applied, AnyEvent now seems leak-free. + +4.3 Fri Oct 3 09:18:43 CEST 2008 - AnyEvent will now install a no-op signal handler for SIGPIPE, unless one has been installed already. + - warn about not loaidng AnyEvent::Impl::POE early enough + (patch by Adam Rosenstein). - fixed a great number of bugs and corner cases in AnyEvent::Handle: - fix a bug in where in SSL connect mode, the client would first wait for some data by the server and - otherwise hang. (Reported and analyzed in an absolutely + otherwise hang. (reported and analyzed in an absolutely exemplary manner by Adam Rosenstein). - fix a bug in where SSL EOF would not be treated as stream EOF, putting the connection into a hung state. - (Reported and analyzed in an absolutely exemplary manner by Adam + (reported and analyzed in an absolutely exemplary manner by Adam Rosenstein). - fix a potential segfault when the TLS context would go missing in a read callback (e.g. due to stoptls) -