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

Comparing AnyEvent/Changes (file contents):
Revision 1.147 by root, Wed Jun 4 22:47:27 2008 UTC vs.
Revision 1.358 by root, Thu Nov 26 10:30:24 2009 UTC

1Revision history for Perl extension AnyEvent. 1Revision history for Perl extension AnyEvent.
2 2
3 - downgrade-or-fail in AnyEvent::Handle::push_write, to
4 diagnose encoding failures earlier and more succinctly.
5
65.21 Thu Nov 19 02:48:47 CET 2009
7 - fix a problem where socket constants were called with parameters
8 (spotted by David Friedland).
9 - fork_call never use'd POSIX (reported by Daisuke Maki).
10 - improve perl 5.6 compatibility further (but it still won't work
11 unless you rip out everything but the core).
12 - prefer Net::DNS::Resolver over ipconfig, if installed, on win32.
13 uses 10MB of RAM, but doesn't open a console window. *sigh*.
14
155.202 Wed Oct 14 22:35:44 CEST 2009
16 - AnyEvent::DNS would unexpectedly clobber $_ under windows
17 (analysed by Matthias Waldorf).
18 - AnyEvent::Handle::run_cmd can now pass the PID of the
19 newly-created process, which is much less useful than it might
20 sound (based on patch by Yann Kerherve).
21
225.201 Tue Sep 29 12:09:25 CEST 2009
23 - AnyEvent:Handle::on_starttls/on_stoptls methods were broken
24 (reported by Torsten Foertsch).
25 - common::sense 2.0 could cause tcp_server to throw an exception
26 (analysed by elmex).
27
285.2 Mon Sep 14 07:04:49 CEST 2009
29 - INCOMPATIBLE CHANGE: do no longer support register_read_type
30 and register_write_type in AnyEvent::Handle, instead support
31 package names (the facility was mostly abused).
32 - implement "packagename-as-read/write type" support in
33 AnyEvent::Handle.
34 - AnyEvent::Handle: new options "keepalive" and "oobinline".
35 - oobinline set by default to avoid security issues.
36 - the pure-perl event loop backend wrongly detected times() fallback
37 support (spotted by Pavel Boldin).
38
395.12 Tue Sep 1 20:26:50 CEST 2009
40 - be more lenient when parsing resolv.conf files, as some people
41 use hashmarks as comment indicator inside directives (reported
42 by Michael S. Fischer).
43 - use same set of warnings as common::sense 2.0.
44 - fix a potential 32 bit overflow issue due to perl having problems
45 with large hex constants in the Perl backend.
46 - do not use the slower 5.6 version fo the enc_name code in AnyEvent::DNS
47 by default.
48 - fix some prototypes.
49 - (optionally) require Async::Interrupt 1.02.
50 - replace opendns fallbacks by verizon/level3 public dns servers.
51
525.112 Fri Aug 21 13:59:04 CEST 2009
53 - AnyEvent::Handle could cause hard crashes in Net::SSLeay when
54 using starttls with an illegal/uncreatable tls context.
55 - port to broken win32 perls.
56
575.111 Sun Aug 16 18:44:36 CEST 2009
58 - perl errornously requires sockaddr_un structures returned by the
59 kernel to have a specific length. work around this bug by padding
60 sockaddr_un structures (found to fail on OS X, as perl only uses
61 the correct code for GNU/Linux, but likely to fail on other
62 OSes as well).
63
645.11 Wed Aug 12 17:49:37 CEST 2009
65 - fixed a bug in run_cmd with input from filename.
66 - create a json coder object when none is given in write direction
67 to reduce dependency on JSON.
68
695.1 Tue Aug 11 03:17:32 CEST 2009
70 - tcp_connect now reports the correct error in $!, not an unrelated
71 one (was broken since 4.91).
72 - AE::Handle did not properly clear rtimeout/wtimeout watchers
73 when retrying a tcp_connect.
74 - new functions: AnyEvent::Util::run_cmd and close_all_fds_except.
75 - fixed wrong documentation in AE::Socket.
76
775.01 Mon Aug 10 03:16:32 CEST 2009
78 - last release broke EV child watchers :/.
79
805.0 Sun Aug 9 17:32:09 CEST 2009
81 - officially introduce and document the AE API.
82 - lowering the timeout at runtime did not have immediate effect
83 in AnyEvent::Handle.
84 - AE::Handle now has separate and independent read and write timeout
85 settings.
86 - probe for Guard module when AnyEvent::Util is loaded, not at
87 runtime (Event doesn't like eval "use" from callbacks, and it avoids
88 exporting the probe function).
89 - Impl::IOAsync's io watchers did not use the filehandle emulation
90 code to work around it's watcher limits.
91 - work around IO::Async's problems with overloaded objects.
92 - try to disable wearnings inside IO::Async, it's just too buggy.
93 - do no longer use Event by default, only EV or Perl, Event is too buggy.
94 - hackishly provide fast AE:: interface when EV or Perl is the backend.
95 - inherit VERSION from AnyEvent::VERSION in most modules.
96
974.91 Thu Aug 6 15:42:45 CEST 2009
98 - AE::Handle::starttls could get out of sync when the read buffer
99 already contains some TLS handshake.
100 - AE::Handle did not properly free the TLS session, causing bigger
101 memory leaks in Net::SSLeay than expected (reported by toaster).
102 - AE::Socket::tcp_connect will now artificially delay invoking
103 the callback to avoid returning after invoking the callback.
104 - convert many internal watcher uses to AE API.
105
1064.9 Sat Aug 1 11:07:01 CEST 2009
107 - Glib silently fails when registering a timeout with
108 a negative value, so avoid that.
109 - call condvar callback immediately when it is set
110 after the condition is already signalled.
111 - check rbuf_max condition only after trying to consume
112 data.
113 - normalise signal numbers to names when using the ae's
114 signal handling, but do not document this (yet).
115 - pure perl signal emulation did not properly set nonblocking
116 mode on the signal pipe on win32 (this is unlikely to have caused
117 any issues).
118 - new module: AnyEvent::Debug.
119 - AnyEvent::Strict now checks that a signal was specified
120 by name (not name or number).
121 - reduce memory footprint in typical cases by ~50kb by
122 only compiling signal code when necessary.
123 - add AnyEvent::Handle->rbuf_max.
124 - grab the AE namespace for future new API, implement stubs for
125 said future/alternative API.
126 - new function: AnyEvent::Socket::format_hostport.
127
1284.881 Tue Jul 28 12:51:53 CEST 2009
129 - work around a bug in local in pre-5.10 perls, causing
130 AnyEvent::Handle to recurse when it should not
131 (analysed by elmex).
132
1334.88 Tue Jul 28 04:04:37 CEST 2009
134 - re-bless the handle into a dummy package after calling
135 AnyEvent::Handle::destroy, so the user does not need to check
136 for errors after every push_write etc.
137 - do not attempt to run t/02_signals.t on obviously broken
138 platforms.
139
1404.87 Sun Jul 26 02:06:16 CEST 2009
141 - do not attempt to linger when there is no longer a valid fh.
142 - enforce tls mode to be either accept or connect, do not simply
143 segfault in Net::SSLeay.
144 - AnyEvent::Handle can now call tcp_connect itself (new parameters
145 connect, on_prepare, on_connect and on_connect_error). Updated
146 tutorial accordingly.
147 - add AnyEvent::Impl::Irssi backend.
148
1494.86 Mon Jul 20 23:52:29 CEST 2009
150 - since the verbose warning is not enough, explicitly document
151 that versions before 1.33 of Net::SSLeay are not secure.
152 - work around signal handling races in Event and (...) Event::Lib.
153 - try to align signal-race timer to full-second boundaries.
154 - work around Tk not liking negative timeouts.
155 - don't complain of different grades of environmental unfriendlyness
156 in IO::Async.
157
1584.85 Sat Jul 18 06:16:14 CEST 2009
159 - nail the signal race problem in perl once and for all
160 (see $AnyEvent::MAX_SIGNAL_LATENCY).
161 - take advantage of Async::Interrupt if it is available.
162 - load Time::HiRes and Guard modules on demand only.
163 - add optional/recommended modules section to AnyEvent
164 documentation.
165 - reduce memory usage considerably (and reduce startup penalty)
166 by not using "strict", "warnings" and "overload" modules.
167 - work around buggy windows/openbsd perls and provide EBADMSG
168 and EPROTO ourselves when missing.
169 - improve perl 5.6 compatibility of the core event loop.
170 - made Net::SSLeay version 1.33 a soft requirement.
171
1724.83 Fri Jul 17 16:56:26 CEST 2009
173 - implement AnyEvent::Socket::getprotobyname.
174 - AnyEvent::CondVar's will now detect recursive blocking
175 waits and will croak, as too many people fall into
176 this trap.
177 - AnyEvent::Handle will now call ->destroy on itself after
178 executing the on_error callback, instead of doing some
179 half-baked internal shutdown, for fatal errors.
180 - clarify on_eof behaviour w.r.t. the read queue and
181 on_read callbacks.
182 - ignore some possible spurious wake-ups in tcp_connect.
183
1844.82 Sat Jul 11 00:34:55 CEST 2009
185 - POE and Event backends didn't accept some callable objects as
186 callbacks.
187 - use Config module instead of POSIX module to detect signal names
188 in AnyEvent::Strict and AnyEvent::Impl::EventLib, as the POSIX
189 module doesn't even have all POSIX signals :/.
190 - use more workarounds around the many refcnt/corruption bugs in
191 Event::Lib.
192 - work around a race condition in perl's select, causing t/03_child.t
193 to rarely fail.
194
1954.81 Thu Jul 9 10:30:30 CEST 2009
196 - AnyEvent::Handle didn't properly diagnose write errors
197 (it expected -1 from syswrite, how lame... :).
198 - support file descriptors in addition to file handles
199 in AnyEvent->io.
200 - new env variables: PERL_ANYEVENT_RESOLV_CONF,
201 PERL_ANYEVENT_MAX_OUTSTANDING_DNS, PERL_ANYEVENT_CA_FILE
202 and PERL_ANYEVENT_CA_PATH.
203 - provide a sensible synopsis section for AnyEvent::TLS.
204 - add a "supported backends" section to the manpage.
205 - added simple io watcher test to testsuite, using a
206 portable_socketpair.
207 - tried to improve the stability of the Event::Lib backend,
208 YMMV.
209
2104.8 Mon Jul 6 23:45:16 CEST 2009
211 - AnyEvent::DNS did not properly follow CNAME records with
212 uppercase targets.
213 - AnyEvent::DNS would errornously return AAAA records
214 with v4 mapped addresses (a faulty record) as ipv4 addresses,
215 causing AnyEvent::Socket to throw an exception.
216 - added new module AnyEvent::TLS for easier SSL/TLS context
217 creation, with many options including hostname verification,
218 secure default configuration, lots of documentation and,
219 predefined diffie-hellman keys for perfect forward security
220 and much more. get it while it's still fresh!
221 - use AnyEvent::TLS in AnyEvent::Handle for context management.
222 - load AnyEvent::Handle only on demand in AnyEvent::DNS,
223 so AnyEvent::Socket users have smaller memory footprint
224 in the common case.
225 - add AnyEvent::Handle->push_shutdown method.
226 - add an additional error message parameter to AnyEvent::Handle's
227 on_error callback (for TLS, $! is still available).
228 - add AnyEvent::Handle on_starttls/on_stoptls callbacks.
229 - make AnyEvent::Handle more robust against early conenction
230 failures (during new), and return C<undef> in that case
231 from the constructor.
232 - AnyEvent::Handle will now try to load only JSON::XS first,
233 then fall back to JSON.
234 - format_ipv4/format_ipv6 are now exported by default, for symmetry,
235 and because it was documented that way.
236
2374.451 Fri Jul 3 00:28:58 CEST 2009
238 - do not clear rbuf when shutting down an AnyEvent::Handle
239 object - doing so breaks AnyEvent::HTTP.
240
2414.45 Mon Jun 29 22:59:26 CEST 2009
242 - a write error could cause AnyEvent::Handle to create
243 an I/O watcher with an undefined $fh.
244 - special-case mapped ipv4 addresses in both
245 AnyEvent::Socket::format_address and parse_address,
246 to treat them just like ipv4 addresses.
247 - updated and overhauled the AnyEvent::Intro doc.
248 - implement AnyEvent::Socket::format_ipv4/ipv6.
249 - slightly speed up portable_pipe/socketpair.
250 - expand condvar begin/end documentation.
251
2524.42 Fri Jun 26 08:32:18 CEST 2009
253 - preliminary and neccesarily incomplete support for IO::Async.
254 - reset SIGCHLD to DEFAULT when AnyEvent is loaded, in
255 case it was set to IGNORE, to ensure we can catch child statuses
256 even when the calling env acts stupidly.
257 - updated benchmarks with IO::Async, which performs very well.
258
2594.412 Wed Jun 24 01:35:57 CEST 2009
260 - support an "untaint" attribute for AnyEvent::DNS
261 and set it on the default resolver.
262 - implement and document AnyEvent::Impl::Perl::loop.
263 - remove all anyevent-env variables from %ENV
264 when running in tainted mode.
265 - mention and extend the IO::Lambda benchmark.
266
2674.411 Sun Jun 7 18:48:02 CEST 2009
268 - do not try to use F_SETFD on windows.
269
2704.41 Thu May 14 06:40:11 CEST 2009
271 - work around issues in older perls (5.8.0?) when
272 a signal handler is deleted from the %SIG hash.
273 - use POSIX::_exit in child test, to avoid running
274 destructors.
275 - speed up CHLD handling by relying on SIGCHLD being
276 synchronously delivered, even when we roll our own
277 implementation.
278 - AnyEvent::DNS: add the "dname" resource record name
279 for cosmetic reasons.
280
2814.4 Sun Apr 26 20:12:33 CEST 2009
282 - implemented idle watchers, where applicable.
283 - AnyEvent->time died when Event backend was in use.
284 - fix a memleak in the Tk backend.
285 - sped up Tk timer handling.
286 - clip negative "after" values to 0 in AnyEvent::Impl::Event
287 to avoid spamming out warning messages.
288 - fix Qt timers without interval.
289 - avoid Qt zero-timeout special case, in old libqt's.
290
2914.352 Mon Apr 20 16:31:11 CEST 2009
292 - fix AnyEvent::Strict error messages for child watchers.
293 - fix/update Makefile.PL "recommends" versions.
294 - add AnyEvent->now_update.
295
2964.351 Sat Apr 11 07:56:14 CEST 2009
297 - actually make the signal pipe work under win32.
298 - localise $! in signal handler to avoid changing $!, although
299 perl itself does not seem to save/restore errno either.
300 - set the cloexec flag on the signal pipe (normally set by perl too).
301
3024.35 Fri Mar 27 11:48:20 CET 2009
303 - event models relying on AnyEvent's signal watcher emulation did
304 invoke the callback asynchronously, contradicting documentation
305 and causing signals to get lost (this includes AnyEvent's own
306 event loop). AnyEvent now uses the standard pipe trick to make
307 callback execution synchronous to the event loop.
308 - AnyEvent::Handle didn't free TLS context data on DESTROY
309 (patch by Pavel Shaydo).
310 - work around the ever-incompatibly-changing API of MakeMaker.
311 - document that changing global variables without restoring them
312 is a bad idea in Perl (noted by Adam Rosenstein).
313 - AnyEvent::Strict now barfs if ->io is passed a file.
314
3154.34 Thu Feb 12 18:32:45 CET 2009
316 - separately buffer TLS read data, as otherwise the read queue could
317 deadlock as receiving data is not expected while draining the
318 read queue (which cna only happen with TLS).
319 - raise EBADMSG error on JSON decoding errors.
320 - fix some minor manpage bugs (reported by Maximilian Gaß).
321 - speed up select bitmask parsing quite a bit in the pure perl
322 backend.
323 - use CORE::select instead of just select in AnyEvent::Impl::Perl.
324
3254.331 Tue Jan 6 21:07:25 CET 2009
326 - socketpair fails on many vista machines because vista has
327 completely broken accept/getpeername and getsockname functions,
328 so we provide our own socketpair emulation that kind of works
329 (AnyEvent::Util::portable_pipe).
330 - new function: AnyEvent::Util::portable_socketpair.
331 - take advantage of the Guard module if it exists.
332
3334.33 Fri Nov 21 02:35:40 CET 2008
334 - AnyEvent::Strict did errornously flag a fileno of 0 as
335 illegal.
336 - reduce memory usage and slightly speed up the pure perl backend
337 by only storing the file descriptor, not the file handle.
338 - add missing autocork method to AnyEvent::Handle (reported
339 by Adam Rosenstein).
340 - AnyEvent::DNS->resolve errornously documented an $rcode result
341 argument, but there isn't (spotted by Henrik Krohns).
342 - the naked truth about Tk - it's basically unmaintained.
343
3444.32 Mon Nov 3 22:46:32 CET 2008
345 - fix AnyEvent::Socket::resolve_sockaddr to properly support
346 unix sockets again and choose a proper default for
347 the socket type.
348 - fix call to resolve_sockaddr in tcp_connect.
349
3504.31 Thu Oct 30 04:41:48 CET 2008
351 - implemented AnyEvent::Handle->destroy method.
352 - hint about unexpected effects in TLS mode.
353 - speed up AnyEvent::Impl::Perl by using more arrays
354 instead of hashes without the slightest loss of readability :)
355 - work around a perl argument refcounting bug.
356 - with some perl patches applied, AnyEvent now seems leak-free.
357
3584.3 Fri Oct 3 09:18:43 CEST 2008
359 - AnyEvent will now install a no-op signal handler for SIGPIPE,
360 unless one has been installed already.
361 - warn about not loaidng AnyEvent::Impl::POE early enough
362 (patch by Adam Rosenstein).
363 - fixed a great number of bugs and corner cases in AnyEvent::Handle:
364 - fix a bug in where in SSL connect mode, the
365 client would first wait for some data by the server and
366 otherwise hang. (reported and analysed in an absolutely
367 exemplary manner by Adam Rosenstein).
368 - fix a bug in where SSL EOF would not be treated
369 as stream EOF, putting the connection into a hung state.
370 (reported and analysed in an absolutely exemplary manner by Adam
371 Rosenstein).
372 - fix a potential segfault when the TLS context
373 would go missing in a read callback (e.g. due to stoptls) -
374 Net::SSLeay of course makes no type checking whatsoever.
375 - AnyEvent::Handle will not stop the read watcher in TLS mode.
376 - AnyEvent::Handle->stoptls will send a TLS close notify
377 instead of simply destroying the stream now.
378 - fix a bug where large blocks of data written in TLS mode
379 would not be sent unless triggered by receives.
380 - on_drain will now take the tls write buffer into account.
381 - SSL operations have been streamlined a bit and should be faster
382 now, more to come, though.
383 - added a FAQ section, will document nontrivial issues in there.
384
3854.234 Mon Sep 29 04:08:13 CEST 2008
386 - fix child watcher documentation: only child exits will be reported,
387 no trace events.
388 - mention SIGPIPE in AnyEvent::Handle.
389 - perl backend will now use POSIX::times as monotonic clock
390 when available and the monotonic clock option is not.
391 - run even without Time::HiRes in some cases now, but do not
392 provide sub-second accuracy (all *supported* perl versions have
393 Time::HiRes).
394
3954.233 Fri Aug 22 01:48:05 CEST 2008
396 - fix a bug in the testsuite, causing a hang.
397 - clarified lots of AnyEvent::Handle constructor arguments.
398
3994.232 Thu Aug 21 20:44:25 CEST 2008
400 - fix a bug in AnyEvent::Handle that could cause two fatal error
401 callbacks on EOF, which caused AnyEvent::HTTP to signal success twice
402 (testcase by Leon Brocard).
403 - clarified on_eof/on_error documentation a bit.
404
4054.231 Tue Jul 29 13:12:15 CEST 2008
406 - remove some debugging code left in AnyEvent::Util::fork_call
407 (and no, it's impossible to implement with the broken windows
408 perls without resource leaks or worse).
409
4104.23 Tue Jul 29 12:19:59 CEST 2008
411 - document the first parameter passed to condvar callbacks to be
412 the callback.
413 - add AnyEvent::Socket::{ntoa,aton} aliases.
414 - optimize the AE::Handle->push_read (line) for the default
415 eol marker.
416 - optimize push_read (packstring|storable) for small packets.
417 - invoke on_error callback when no on_eof callback is set.
418 - fix a bug in push_read (storable) of unknown impact.
419
4204.22 Sun Jul 20 16:34:13 CEST 2008
421 - new function AnyEvent::Socket::parse_hostport.
422 - as the bulkheads at microsoft can't even get getprotobyname reliably
423 working on their shitty fucking broken os we need to hardcode
424 some common protocol numbers in AnyEvent::Socket. How can
425 people even bother with such a pile of shit as windows.
426
4274.21 Thu Jul 17 14:40:05 CEST 2008
428 - INCOMPATIBLE CHANGE: AnyEvent::Util::fork_call now has a prototype
429 which is incompatible to previous invocation syntax.
430 - work around more windows perl bugs in fork_call. I cannot imagine
431 why anybody would bother implementing fork in such an obviously
432 unusable way.
433 - avoid calling $do_retry if the request has already finished in
434 AnyEvent::DNS, thus avoiding an exception (reported by Anatoly
435 K. Sharifulin).
436
4374.2 Sat Jul 12 22:42:11 CEST 2008
438 - support an "interval" argument for repeating timers.
439 - fix a bug in the pure perl event loop that caused timers to
440 be delayed under some circumstances.
441 - implement optional argument checking via PERL_ANYEVENT_STRICT.
442 - not importing anything from Event causes it to malfunction
443 and not use Time::HiRes, work around this bug.
444 - more bug workarounds against the endlessly broken Tk module,
445 seems to work now on 32 bit machines, but less so on 64 bit.
446 - minor optimisations applied to most backends.
447
4484.161 Fri Jul 4 14:24:48 CEST 2008
449 - fixed the t/handle/02_write.t, it read after write, with the
450 assumption that all data could be written before read
451 (reported by Jim Razmus).
452
4534.160 Thu Jul 3 04:02:21 CEST 2008
454 - re-registering signal watchers after unregistering one did
455 not work if a backend falls back on AnyEvent's default
456 implementation (also affected child watchers).
457 - new AnyEvent::Handle options: autocork and no_delay.
458
4594.152 Sun Jun 22 14:15:44 CEST 2008
460 - allow for 32-bit perls that implement shifts differently
461 on different architectures in parse_ipv4 (reported and
462 analysed by Keiichi DAIBA).
463
4644.151 Fri Jun 6 17:34:24 CEST 2008
465 - make sure specifying _only_ on_read and never pushing reads
466 works.
467
4684.15 Fri Jun 6 13:00:46 CEST 2008
469 - the pure perl backend would keep some watchers alive when more than
470 one watcher was registered for the same fd.
471 - new "packstring" and "storable" read and write types
472 for AnyEvent::Handle.
473 - allow on_eof handler to be called after on_error with EPIPE returns.
474 - do not immediately call on_read callback in handle constructor.
475
4764.14 Thu Jun 5 20:29:31 CEST 2008
477 - Fixed a bug in DNS SRV priority sorting.
478 - AnyEvent::Util::guard now reports runtime errors while
479 executing the guard block as warnings.
480 - handle 0-byte-reads just before EOF correctly in AnyEvent::Handle.
481
4824.13 Thu Jun 5 00:47:59 CEST 2008
3 - AnyEvent::DNS only followed cname chains with length 2, 483 - AnyEvent::DNS only followed cname chains with length 2,
4 contrary to documentation. bumped it up to 10, thanks to 484 contrary to documentation. bumped it up to 10, thanks to
5 microsoft, the current broken-dns-config-king. 485 microsoft, the current broken-dns-config-king.
6 - AnyEvent::DNS didn't check for socket return status 486 - AnyEvent::DNS didn't check for socket return status
7 but instead relied on perl not creating filehandles in that 487 but instead relied on perl not creating filehandles in that
124 - support service names in tcp_connect and tcp_server. 604 - support service names in tcp_connect and tcp_server.
125 - work around netbsd/openbsd bug causing unix sockets not to 605 - work around netbsd/openbsd bug causing unix sockets not to
126 become writable until empty. 606 become writable until empty.
127 - only make a dummy read for error detection when getpeername 607 - only make a dummy read for error detection when getpeername
128 returns ENOTCONN. 608 returns ENOTCONN.
129 - defend AnyEvent::Util::inet_aton against Coro::LWP brutal 609 - defend AnyEvent::Util::inet_aton against Coro::LWP's brutal
130 override. 610 override.
131 - new AnyEvent::Guard::cancel. 611 - new AnyEvent::Guard::cancel.
132 612
1333.5 Sat May 17 23:17:14 CEST 2008 6133.5 Sat May 17 23:17:14 CEST 2008
134 - gracefully deal with systems not defining CLOCK_MONOTONIC 614 - gracefully deal with systems not defining CLOCK_MONOTONIC
148 628
1493.41 Sun May 11 19:53:13 CEST 2008 6293.41 Sun May 11 19:53:13 CEST 2008
150 - work around a bug in perl 5.8.8's local. Reported by Yi Ma Mao. 630 - work around a bug in perl 5.8.8's local. Reported by Yi Ma Mao.
151 631
1523.4 Sun May 11 00:29:25 CEST 2008 6323.4 Sun May 11 00:29:25 CEST 2008
153 - complete re-implementation of condvars with a hopefully much mroe useful 633 - complete re-implementation of condvars with a hopefully much more useful
154 API (backward compatible functions exist but are undocumented). 634 API (backward compatible functions exist but are undocumented).
155 - AnyEvent::Handle fully rewritten with a hopefully more powerful API 635 - AnyEvent::Handle fully rewritten with a hopefully more powerful API
156 (still subject to change). 636 (still subject to change).
157 - take advantage of CLOCK_MONOTONIC, if available, in AnyEvent::Impl::Perl. 637 - take advantage of CLOCK_MONOTONIC, if available, in AnyEvent::Impl::Perl.
158 - provide AnyEvent::post_detect and @AnyEvent::post_detect, which 638 - provide AnyEvent::post_detect and @AnyEvent::post_detect, which

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines