ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/AnyEvent/Changes
(Generate patch)

Comparing AnyEvent/Changes (file contents):
Revision 1.100 by root, Sun May 25 01:05:27 2008 UTC vs.
Revision 1.154 by root, Fri Jun 6 10:49:20 2008 UTC

1Revision history for Perl extension AnyEvent. 1Revision history for Perl extension AnyEvent.
2 2
3 - the pure perl backend would keep some watchers alive when more than
4 one watcher was registered for the same fd.
5 - new "packstring" read and write type for AnyEvent::Handle.
6 - allow on_eof handler to be called after on_errro with EPIPE returns.
7 - do not immediately call on_read callback in handle constructor.
8
94.14 Thu Jun 5 20:29:31 CEST 2008
10 - Fixed a bug in DNS SRV priority sorting.
11 - AnyEvent::Util::guard now reports runtime errors while
12 executing the guard block as warnings.
13 - handle 0-byte-reads just before EOF correctly in AnyEvent::Handle.
14
154.13 Thu Jun 5 00:47:59 CEST 2008
16 - AnyEvent::DNS only followed cname chains with length 2,
17 contrary to documentation. bumped it up to 10, thanks to
18 microsoft, the current broken-dns-config-king.
19 - AnyEvent::DNS didn't check for socket return status
20 but instead relied on perl not creating filehandles in that
21 case - too bad it gives you a bogus file handle (reported
22 and analysed by Vladimir Timofeev).
23 - fix queue management logic in AnyEvent::Handle:
24 when on_read was registered, the queue was empty
25 and no progress could be made AnyEvent::Handle would
26 enter an endless loop.
27 - correctly start reading again when the handle became
28 busy again after idling.
29 - correctly treat tls shut-downs as EOF condition
30 (for the time being, would be nice to have a callback for that).
31 - correctly call eof callback under all conditions
32 (hopefully).
33 - the timeout callback did not expect that $self can go
34 away any time.
35
364.12 Tue Jun 3 10:58:04 CEST 2008
37 - include AnyEvent::Intro, a tutorial for anyevent,
38 anyevent::socket and anyevent::handle.
39 - allow more options in on_error.
40
414.11 Fri May 30 23:42:25 CEST 2008
42 - INCOMPATIBLE CHANGE: replace ptr by real PTR lookup, provide
43 reverse_lookup and reverse_verify to replace it, support
44 v4mapped and v4compat addresses.
45 - provide more documentation for the resolver class.
46 - really replace longest run of :0: by :: in format_address,
47 also properly convert :: and ::1 again.
48 - support NAPTR record name and decode it.
49 - implement random weight sampling for SRV records, as per
50 rfc 2782.
51 - correctly abort on srv-record targets of ".".
52 - added AnyEvent::DNS::wait_for_slot.
53 - in the unlikely event of a virtual circuit connection
54 being invalidated by a delayed udp reply, AnyEvent::DNS
55 could die. this has been fixed.
56 - plug a probable memleak in the DNS vc code.
57 - use configured timeout also for VC request phase.
58 - implement timeout and max_outstanding methods
59 for resolver class.
60 - update version numbers in all modules.
61
624.1 Thu May 29 05:45:40 CEST 2008
63 - INCOMPATIBLE CHANGE: renamed xxx_ip functions to xxx_address
64 which mirrors their purpose better (old names still available
65 for a while). Also moved AnyEvent::DNS::addr to
66 AnyEvent::Socket::resolve_sockaddr.
67 - implement AnyEvent->time and AnyEvent->now.
68 - fix IPv6 support in pack_sockaddr.
69 - officially un-experimentalise all newly introduced code.
70 - support unix domain sockets everywhere by specifying
71 a host of "unix/" and the pathname as service.
72 - implement an activity timeout in AnyEvent::Handle.
73 - added a regex read type to AnyEvent::Handle.
74 - added a json read/write type to AnyEvent::Handle.
75 - always croak in on_error in AnyEvent::Handle.
76 - document how to subclass AnyEvent::Handle.
77 - implement AnyEvent::Util::fork_call.
78 - add support for IPv6 nameservers and nameserver statements.
79 - work around _yet_ _another_ windows perl bug in where empty
80 select masks cause errors in the pure perl backend (this
81 workaround cannot be implemented for the other event loops,
82 but EV also works around this).
83 - supply AnyEvent::Socket::address_type and make good use of it.
84 - clarify and fix the Handle documentation w.r.t $self vs. $handle
85 vs. callback arguments.
86 - add some recommends to the META.yml.
87
884.05 Mon May 26 19:44:06 CEST 2008
89 - some platforms ignore the rfc and prepend an extra sa_len member to
90 the sockaddr structure, cater for those. also use sockaddr_family,
91 didn't know it was there, but comes in handy for the workaround.
92 - undo the import WIN32 hack.
93
944.04 Mon May 26 08:03:31 CEST 2008
95 - try to work around yet another windows bug: failed connects are reported
96 as if it were out-of-band data. windows users: you suck. Only
97 EV, Glib, Event and the pure perl backend can handle this condition.
98 - optimize write algorithm in AnyEvent::Handle.
99 - properly parse PERL_ANYEVENT_PROTOCOLS and use the info correctly.
100 - tcp_connect now properly iterates through all targets.
101 - check wether IPv6 sockets can actually be created, otherwise, disable ipv6
102 support entirely. also hardcode some AF_INET6 constants for the
103 sake of perl 5.8.
104 - vastly improved nameserver/suffix detection algorithm for windows
105 (still a hack...)
106 - try to use a fallback dns server if no dns servers could be found.
107 - splatter around some local $SIG{__DIE__}'s to work around bad
108 die handlers.
109
1104.03 Sun May 25 05:05:57 CEST 2008
3 - work around perl bugs on windows, where perl returns undocumented 111 - work around perl bugs on windows, where perl returns undocumented
4 error codes for sysread, syswrite etc. 112 error codes for sysread, syswrite etc.
5 - fix AnyEvent::Handle::unshift_read to really unshift and not push. 113 - fix AnyEvent::Handle::unshift_read to really unshift and not push.
6 - AnyEvent::Handle could sometimes stumble over 0-byte writes. 114 - AnyEvent::Handle could sometimes stumble over 0-byte writes.
115 - fix unpack_sockaddr, now works for AF_INET6 sockaddr's.
7 - updated documentation. 116 - updated documentation.
117 - lots of workarounds for perl 5.8 quirks.
8 - implement a more flexible type system for both reads and writes 118 - implement a more flexible type system for both reads and writes
9 in AnyEvent::Handle. 119 in AnyEvent::Handle.
120 - support IPv6 in tcp_server.
121 - pass local hostname and port to the prepare callback in tcp_server.
10 - make types extendable in AnyEvent::Handle. 122 - make types extendable in AnyEvent::Handle.
11 - croak, not die, in AnyEvent::Handle; 123 - croak, not die, in AnyEvent::Handle;
12 124
134.0 Sat May 24 19:58:08 CEST 2008 1254.0 Sat May 24 19:58:08 CEST 2008
14 - added (experimental) AnyEvent::DNS module. 126 - added (experimental) AnyEvent::DNS module.
22 - AnyEvent::Socket::inet_aton will use AnyEvent::DNS now and not fork anymore. 134 - AnyEvent::Socket::inet_aton will use AnyEvent::DNS now and not fork anymore.
23 - try very hard not to freeze on broken windows perls. 135 - try very hard not to freeze on broken windows perls.
24 - make on_eof optional in AnyEvent::Handle. 136 - make on_eof optional in AnyEvent::Handle.
25 - support service names in tcp_connect and tcp_server. 137 - support service names in tcp_connect and tcp_server.
26 - work around netbsd/openbsd bug causing unix sockets not to 138 - work around netbsd/openbsd bug causing unix sockets not to
27 become writable untill empty. 139 become writable until empty.
28 - only make a dummy read for error detection when getpeername 140 - only make a dummy read for error detection when getpeername
29 returns ENOTCONN. 141 returns ENOTCONN.
30 - defend AnyEvent::Util::inet_aton against Coro::LWP brutal 142 - defend AnyEvent::Util::inet_aton against Coro::LWP brutal
31 override. 143 override.
32 - new AnyEvent::Guard::cancel. 144 - new AnyEvent::Guard::cancel.

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines