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

Comparing AnyEvent/Changes (file contents):
Revision 1.111 by root, Mon May 26 05:46:35 2008 UTC vs.
Revision 1.191 by root, Wed Oct 1 07:40:39 2008 UTC

1Revision history for Perl extension AnyEvent. 1Revision history for Perl extension AnyEvent.
2 2
34.3
4 - fix a bug in AnyEvent::Handle where in SSL connect mode, the
5 client would first wait for some data by the server and
6 otherwise hang. (Reported and analyzed in an absolutely
7 exemplary manner by Adam Rosenstein).
8 - fix a bug in AnyEvent::Handle where SSL EOF would not be treated
9 as stream EOF, putting the connection into a hung state.
10 (Reported and analyzed in an absolutely exemplary manner by Adam
11 Rosenstein).
12 - fix a potential segfault in AnyEvent::Handle when the TLS context
13 would go missing in a read callback (e.g. due to stoptls) -
14 Net::SSLeay of course makes no type checking whatsoever.
15
164.234 Mon Sep 29 04:08:13 CEST 2008
17 - fix child watcher documentation: only child exits will be reported,
18 no trace events.
19 - mention SIGPIPE in AnyEvent::Handle.
20 - perl backend will now use POSIX::times as monotonic clock
21 when available and the monotonic clock option is not.
22 - run even without Time::HiRes in some cases now, but do not
23 provide sub-second accuracy (all *supported* perl versions have
24 Time::HiRes).
25
264.233 Fri Aug 22 01:48:05 CEST 2008
27 - fix a bug in the testsuite, causing a hang.
28 - clarified lots of AnyEvent::Handle constructor arguments.
29
304.232 Thu Aug 21 20:44:25 CEST 2008
31 - fix a bug in AnyEvent::Handle that could cause two fatal error
32 callbacks on EOF, which caused AnyEvent::HTTP to signal success twice
33 (testcase by Leon Brocard).
34 - clarified on_eof/on_error documentation a bit.
35
364.231 Tue Jul 29 13:12:15 CEST 2008
37 - remove some debugging code left in AnyEvent::Util::fork_call
38 (and no, it's impossible to implement with the broken windows
39 perls without resource leaks or worse).
40
414.23 Tue Jul 29 12:19:59 CEST 2008
42 - document the first parameter passed to condvar callbacks to be
43 the callback.
44 - add AnyEvent::Socket::{ntoa,aton} aliases.
45 - optimize the AE::Handle->push_read (line) for the default
46 eol marker.
47 - optimize push_read (packstring|storable) for small packets.
48 - invoke on_error callback when no on_eof callback is set.
49 - fix a bug in push_read (storable) of unknown impact.
50
514.22 Sun Jul 20 16:34:13 CEST 2008
52 - new function AnyEvent::Socket::parse_hostport.
53 - as the bulkheads at microsoft can't even get getprotobyname reliably
54 working on their shitty fucking broken os we need to hardcode
55 some common protocol numbers in AnyEvent::Socket. How can
56 people even bother with such a pile of shit as windows.
57
584.21 Thu Jul 17 14:40:05 CEST 2008
59 - INCOMPATIBLE CHANGE: AnyEvent::Util::fork_call now has a prototype
60 which is incompatible to previous invocation syntax.
61 - work around more windows perl bugs in fork_call. I cannot imagine
62 why anybody would bother implementing fork in such an obviously
63 unusable way.
64 - avoid calling $do_retry if the request has already finished in
65 AnyEvent::DNS, thus avoiding an exception (reported by Anatoly
66 K. Sharifulin).
67
684.2 Sat Jul 12 22:42:11 CEST 2008
69 - support an "interval" argument for repeating timers.
70 - fix a bug in the pure perl event loop that caused timers to
71 be delayed under some circumstances.
72 - implement optional argument checking via PERL_ANYEVENT_STRICT.
73 - not importing anything from Event causes it to malfunction
74 and not use Time::HiRes, work around this bug.
75 - more bug workarounds against the endlessly broken Tk module,
76 seems to work now on 32 bit machines, but less so on 64 bit.
77 - minor optimisations applied to most backends.
78
794.161 Fri Jul 4 14:24:48 CEST 2008
80 - fixed the t/handle/02_write.t, it read after write, with the
81 assumption that all data could be written before read
82 (reported by Jim Razmus).
83
844.160 Thu Jul 3 04:02:21 CEST 2008
85 - re-registering signal watchers after unregistering one did
86 not work if a backend falls back on AnyEvent's default
87 implementation (also affected child watchers).
88 - new AnyEvent::Handle options: autocork and no_delay.
89
904.152 Sun Jun 22 14:15:44 CEST 2008
91 - allow for 32-bit perls that implement shifts differently
92 on different architectures in parse_ipv4 (reported and
93 analysed by Keiichi DAIBA).
94
954.151 Fri Jun 6 17:34:24 CEST 2008
96 - make sure specifying _only_ on_read and never pushing reads
97 works.
98
994.15 Fri Jun 6 13:00:46 CEST 2008
100 - the pure perl backend would keep some watchers alive when more than
101 one watcher was registered for the same fd.
102 - new "packstring" and "storable" read and write types
103 for AnyEvent::Handle.
104 - allow on_eof handler to be called after on_error with EPIPE returns.
105 - do not immediately call on_read callback in handle constructor.
106
1074.14 Thu Jun 5 20:29:31 CEST 2008
108 - Fixed a bug in DNS SRV priority sorting.
109 - AnyEvent::Util::guard now reports runtime errors while
110 executing the guard block as warnings.
111 - handle 0-byte-reads just before EOF correctly in AnyEvent::Handle.
112
1134.13 Thu Jun 5 00:47:59 CEST 2008
114 - AnyEvent::DNS only followed cname chains with length 2,
115 contrary to documentation. bumped it up to 10, thanks to
116 microsoft, the current broken-dns-config-king.
117 - AnyEvent::DNS didn't check for socket return status
118 but instead relied on perl not creating filehandles in that
119 case - too bad it gives you a bogus file handle (reported
120 and analysed by Vladimir Timofeev).
121 - fix queue management logic in AnyEvent::Handle:
122 when on_read was registered, the queue was empty
123 and no progress could be made AnyEvent::Handle would
124 enter an endless loop.
125 - correctly start reading again when the handle became
126 busy again after idling.
127 - correctly treat tls shut-downs as EOF condition
128 (for the time being, would be nice to have a callback for that).
129 - correctly call eof callback under all conditions
130 (hopefully).
131 - the timeout callback did not expect that $self can go
132 away any time.
133
1344.12 Tue Jun 3 10:58:04 CEST 2008
135 - include AnyEvent::Intro, a tutorial for anyevent,
136 anyevent::socket and anyevent::handle.
137 - allow more options in on_error.
138
1394.11 Fri May 30 23:42:25 CEST 2008
140 - INCOMPATIBLE CHANGE: replace ptr by real PTR lookup, provide
141 reverse_lookup and reverse_verify to replace it, support
142 v4mapped and v4compat addresses.
143 - provide more documentation for the resolver class.
144 - really replace longest run of :0: by :: in format_address,
145 also properly convert :: and ::1 again.
146 - support NAPTR record name and decode it.
147 - implement random weight sampling for SRV records, as per
148 rfc 2782.
149 - correctly abort on srv-record targets of ".".
150 - added AnyEvent::DNS::wait_for_slot.
151 - in the unlikely event of a virtual circuit connection
152 being invalidated by a delayed udp reply, AnyEvent::DNS
153 could die. this has been fixed.
154 - plug a probable memleak in the DNS vc code.
155 - use configured timeout also for VC request phase.
156 - implement timeout and max_outstanding methods
157 for resolver class.
158 - update version numbers in all modules.
159
1604.1 Thu May 29 05:45:40 CEST 2008
161 - INCOMPATIBLE CHANGE: renamed xxx_ip functions to xxx_address
162 which mirrors their purpose better (old names still available
163 for a while). Also moved AnyEvent::DNS::addr to
164 AnyEvent::Socket::resolve_sockaddr.
165 - implement AnyEvent->time and AnyEvent->now.
166 - fix IPv6 support in pack_sockaddr.
167 - officially un-experimentalise all newly introduced code.
168 - support unix domain sockets everywhere by specifying
169 a host of "unix/" and the pathname as service.
170 - implement an activity timeout in AnyEvent::Handle.
171 - added a regex read type to AnyEvent::Handle.
172 - added a json read/write type to AnyEvent::Handle.
173 - always croak in on_error in AnyEvent::Handle.
174 - document how to subclass AnyEvent::Handle.
175 - implement AnyEvent::Util::fork_call.
176 - add support for IPv6 nameservers and nameserver statements.
177 - work around _yet_ _another_ windows perl bug in where empty
178 select masks cause errors in the pure perl backend (this
179 workaround cannot be implemented for the other event loops,
180 but EV also works around this).
181 - supply AnyEvent::Socket::address_type and make good use of it.
182 - clarify and fix the Handle documentation w.r.t $self vs. $handle
183 vs. callback arguments.
184 - add some recommends to the META.yml.
185
1864.05 Mon May 26 19:44:06 CEST 2008
187 - some platforms ignore the rfc and prepend an extra sa_len member to
188 the sockaddr structure, cater for those. also use sockaddr_family,
189 didn't know it was there, but comes in handy for the workaround.
190 - undo the import WIN32 hack.
191
1924.04 Mon May 26 08:03:31 CEST 2008
3 - try to work around yet another windows bug: failed connects are reported 193 - try to work around yet another windows bug: failed connects are reported
4 as if it were out-of-band data. windows users: you suck. Only 194 as if it were out-of-band data. windows users: you suck. Only
5 EV, Glib, Event and the pure perl backend can handle this condition. 195 EV, Glib, Event and the pure perl backend can handle this condition.
6 - optimize write algorithm in AnyEvent::Handle. 196 - optimize write algorithm in AnyEvent::Handle.
7 - properly parse PERL_ANYEVENT_PROTOCOLS and use the info correctly. 197 - properly parse PERL_ANYEVENT_PROTOCOLS and use the info correctly.
198 - tcp_connect now properly iterates through all targets.
8 - check wether IPv6 sockets can actually be created, otherwise, disable ipv6 199 - check wether IPv6 sockets can actually be created, otherwise, disable ipv6
9 support entirely. also hardcode some AF_INEt6 constants for the 200 support entirely. also hardcode some AF_INET6 constants for the
10 sake of perl 5.8. 201 sake of perl 5.8.
11 - vastly improved nameserver/suffix detection algorithm for windows 202 - vastly improved nameserver/suffix detection algorithm for windows
12 (still a hack...) 203 (still a hack...)
13 - try to use a fallback dns server if no dns servers could be found. 204 - try to use a fallback dns server if no dns servers could be found.
14 - splatter around some local $SIG{__DIE__}'s to work around bad 205 - splatter around some local $SIG{__DIE__}'s to work around bad
41 - AnyEvent::Socket::inet_aton will use AnyEvent::DNS now and not fork anymore. 232 - AnyEvent::Socket::inet_aton will use AnyEvent::DNS now and not fork anymore.
42 - try very hard not to freeze on broken windows perls. 233 - try very hard not to freeze on broken windows perls.
43 - make on_eof optional in AnyEvent::Handle. 234 - make on_eof optional in AnyEvent::Handle.
44 - support service names in tcp_connect and tcp_server. 235 - support service names in tcp_connect and tcp_server.
45 - work around netbsd/openbsd bug causing unix sockets not to 236 - work around netbsd/openbsd bug causing unix sockets not to
46 become writable untill empty. 237 become writable until empty.
47 - only make a dummy read for error detection when getpeername 238 - only make a dummy read for error detection when getpeername
48 returns ENOTCONN. 239 returns ENOTCONN.
49 - defend AnyEvent::Util::inet_aton against Coro::LWP brutal 240 - defend AnyEvent::Util::inet_aton against Coro::LWP's brutal
50 override. 241 override.
51 - new AnyEvent::Guard::cancel. 242 - new AnyEvent::Guard::cancel.
52 243
533.5 Sat May 17 23:17:14 CEST 2008 2443.5 Sat May 17 23:17:14 CEST 2008
54 - gracefully deal with systems not defining CLOCK_MONOTONIC 245 - gracefully deal with systems not defining CLOCK_MONOTONIC
68 259
693.41 Sun May 11 19:53:13 CEST 2008 2603.41 Sun May 11 19:53:13 CEST 2008
70 - work around a bug in perl 5.8.8's local. Reported by Yi Ma Mao. 261 - work around a bug in perl 5.8.8's local. Reported by Yi Ma Mao.
71 262
723.4 Sun May 11 00:29:25 CEST 2008 2633.4 Sun May 11 00:29:25 CEST 2008
73 - complete re-implementation of condvars with a hopefully much mroe useful 264 - complete re-implementation of condvars with a hopefully much more useful
74 API (backward compatible functions exist but are undocumented). 265 API (backward compatible functions exist but are undocumented).
75 - AnyEvent::Handle fully rewritten with a hopefully more powerful API 266 - AnyEvent::Handle fully rewritten with a hopefully more powerful API
76 (still subject to change). 267 (still subject to change).
77 - take advantage of CLOCK_MONOTONIC, if available, in AnyEvent::Impl::Perl. 268 - take advantage of CLOCK_MONOTONIC, if available, in AnyEvent::Impl::Perl.
78 - provide AnyEvent::post_detect and @AnyEvent::post_detect, which 269 - provide AnyEvent::post_detect and @AnyEvent::post_detect, which

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines