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

Comparing AnyEvent/Changes (file contents):
Revision 1.153 by root, Fri Jun 6 10:23:50 2008 UTC vs.
Revision 1.218 by root, Tue Feb 10 14:07:43 2009 UTC

1Revision history for Perl extension AnyEvent. 1Revision history for Perl extension AnyEvent.
2 2
3 - new "packstring" read and write type for AnyEvent::Handle. 3 - separately buffer TLS read data, as otherwise the read queue could
4 deadlock as receiving data is not expected while draining the
5 read queue (which cna only happen with TLS).
6 - raise EBADMSG error on JSON decoding errors.
7 - fix some minor manpage bugs (reported by Maximilian Gaß).
8 - speed up select bitmask parsing quite a bit in the pure perl
9 backend.
10 - use CORE::select instead of just select in AnyEvent::Impl::Perl.
11
124.331 Tue Jan 6 21:07:25 CET 2009
13 - socketpair fails on many vista machines because vista has
14 completely broken accept/getpeername and getsockname functions,
15 so we provide our own socketpair emulation that kind of works
16 (AnyEvent::Util::portable_pipe).
17 - new function: AnyEvent::Util::portable_socketpair.
18 - take advantage of the Guard module if it exists.
19
204.33 Fri Nov 21 02:35:40 CET 2008
21 - AnyEvent::Strict did errornously flag a fileno of 0 as
22 illegal.
23 - reduce memory usage and slightly speed up the pure perl backend
24 by only storing the file descriptor, not the file handle.
25 - add missing autocork method to AnyEvent::Handle (reported
26 by Adam Rosenstein).
27 - AnyEvent::DNS->resolve errornously documented an $rcode result
28 argument, but there isn't (spotted by Henrik Krohns).
29 - the naked truth about Tk - it's basically unmaintained.
30
314.32 Mon Nov 3 22:46:32 CET 2008
32 - fix AnyEvent::Socket::resolve_sockaddr to properly support
33 unix sockets again and choose a proper default for
34 the socket type.
35 - fix call to resolve_sockaddr in tcp_connect.
36
374.31 Thu Oct 30 04:41:48 CET 2008
38 - implemented AnyEvent::Handle->destroy method.
39 - hint about unexpected effects in TLS mode.
40 - speed up AnyEvent::Impl::Perl by using more arrays
41 instead of hashes without the slightest loss of readability :)
42 - work around a perl argument refcounting bug.
43 - with some perl patches applied, AnyEvent now seems leak-free.
44
454.3 Fri Oct 3 09:18:43 CEST 2008
46 - AnyEvent will now install a no-op signal handler for SIGPIPE,
47 unless one has been installed already.
48 - warn about not loaidng AnyEvent::Impl::POE early enough
49 (patch by Adam Rosenstein).
50 - fixed a great number of bugs and corner cases in AnyEvent::Handle:
51 - fix a bug in where in SSL connect mode, the
52 client would first wait for some data by the server and
53 otherwise hang. (reported and analyzed in an absolutely
54 exemplary manner by Adam Rosenstein).
55 - fix a bug in where SSL EOF would not be treated
56 as stream EOF, putting the connection into a hung state.
57 (reported and analyzed in an absolutely exemplary manner by Adam
58 Rosenstein).
59 - fix a potential segfault when the TLS context
60 would go missing in a read callback (e.g. due to stoptls) -
61 Net::SSLeay of course makes no type checking whatsoever.
62 - AnyEvent::Handle will not stop the read watcher in TLS mode.
63 - AnyEvent::Handle->stoptls will send a TLS close notify
64 instead of simply destroying the stream now.
65 - fix a bug where large blocks of data written in TLS mode
66 would not be sent unless triggered by receives.
67 - on_drain will now take the tls write buffer into account.
68 - SSL operations have been streamlined a bit and should be faster
69 now, more to come, though.
70 - added a FAQ section, will document nontrivial issues in there.
71
724.234 Mon Sep 29 04:08:13 CEST 2008
73 - fix child watcher documentation: only child exits will be reported,
74 no trace events.
75 - mention SIGPIPE in AnyEvent::Handle.
76 - perl backend will now use POSIX::times as monotonic clock
77 when available and the monotonic clock option is not.
78 - run even without Time::HiRes in some cases now, but do not
79 provide sub-second accuracy (all *supported* perl versions have
80 Time::HiRes).
81
824.233 Fri Aug 22 01:48:05 CEST 2008
83 - fix a bug in the testsuite, causing a hang.
84 - clarified lots of AnyEvent::Handle constructor arguments.
85
864.232 Thu Aug 21 20:44:25 CEST 2008
87 - fix a bug in AnyEvent::Handle that could cause two fatal error
88 callbacks on EOF, which caused AnyEvent::HTTP to signal success twice
89 (testcase by Leon Brocard).
90 - clarified on_eof/on_error documentation a bit.
91
924.231 Tue Jul 29 13:12:15 CEST 2008
93 - remove some debugging code left in AnyEvent::Util::fork_call
94 (and no, it's impossible to implement with the broken windows
95 perls without resource leaks or worse).
96
974.23 Tue Jul 29 12:19:59 CEST 2008
98 - document the first parameter passed to condvar callbacks to be
99 the callback.
100 - add AnyEvent::Socket::{ntoa,aton} aliases.
101 - optimize the AE::Handle->push_read (line) for the default
102 eol marker.
103 - optimize push_read (packstring|storable) for small packets.
104 - invoke on_error callback when no on_eof callback is set.
105 - fix a bug in push_read (storable) of unknown impact.
106
1074.22 Sun Jul 20 16:34:13 CEST 2008
108 - new function AnyEvent::Socket::parse_hostport.
109 - as the bulkheads at microsoft can't even get getprotobyname reliably
110 working on their shitty fucking broken os we need to hardcode
111 some common protocol numbers in AnyEvent::Socket. How can
112 people even bother with such a pile of shit as windows.
113
1144.21 Thu Jul 17 14:40:05 CEST 2008
115 - INCOMPATIBLE CHANGE: AnyEvent::Util::fork_call now has a prototype
116 which is incompatible to previous invocation syntax.
117 - work around more windows perl bugs in fork_call. I cannot imagine
118 why anybody would bother implementing fork in such an obviously
119 unusable way.
120 - avoid calling $do_retry if the request has already finished in
121 AnyEvent::DNS, thus avoiding an exception (reported by Anatoly
122 K. Sharifulin).
123
1244.2 Sat Jul 12 22:42:11 CEST 2008
125 - support an "interval" argument for repeating timers.
126 - fix a bug in the pure perl event loop that caused timers to
127 be delayed under some circumstances.
128 - implement optional argument checking via PERL_ANYEVENT_STRICT.
129 - not importing anything from Event causes it to malfunction
130 and not use Time::HiRes, work around this bug.
131 - more bug workarounds against the endlessly broken Tk module,
132 seems to work now on 32 bit machines, but less so on 64 bit.
133 - minor optimisations applied to most backends.
134
1354.161 Fri Jul 4 14:24:48 CEST 2008
136 - fixed the t/handle/02_write.t, it read after write, with the
137 assumption that all data could be written before read
138 (reported by Jim Razmus).
139
1404.160 Thu Jul 3 04:02:21 CEST 2008
141 - re-registering signal watchers after unregistering one did
142 not work if a backend falls back on AnyEvent's default
143 implementation (also affected child watchers).
144 - new AnyEvent::Handle options: autocork and no_delay.
145
1464.152 Sun Jun 22 14:15:44 CEST 2008
147 - allow for 32-bit perls that implement shifts differently
148 on different architectures in parse_ipv4 (reported and
149 analysed by Keiichi DAIBA).
150
1514.151 Fri Jun 6 17:34:24 CEST 2008
152 - make sure specifying _only_ on_read and never pushing reads
153 works.
154
1554.15 Fri Jun 6 13:00:46 CEST 2008
156 - the pure perl backend would keep some watchers alive when more than
157 one watcher was registered for the same fd.
158 - new "packstring" and "storable" read and write types
159 for AnyEvent::Handle.
4 - allow on_eof handler to be called after on_errro with EPIPE returns. 160 - allow on_eof handler to be called after on_error with EPIPE returns.
5 - do not immediately call on_read callback in handle constructor. 161 - do not immediately call on_read callback in handle constructor.
6 162
74.14 Thu Jun 5 20:29:31 CEST 2008 1634.14 Thu Jun 5 20:29:31 CEST 2008
8 - Fixed a bug in DNS SRV priority sorting. 164 - Fixed a bug in DNS SRV priority sorting.
9 - AnyEvent::Util::guard now reports runtime errors while 165 - AnyEvent::Util::guard now reports runtime errors while
135 - support service names in tcp_connect and tcp_server. 291 - support service names in tcp_connect and tcp_server.
136 - work around netbsd/openbsd bug causing unix sockets not to 292 - work around netbsd/openbsd bug causing unix sockets not to
137 become writable until empty. 293 become writable until empty.
138 - only make a dummy read for error detection when getpeername 294 - only make a dummy read for error detection when getpeername
139 returns ENOTCONN. 295 returns ENOTCONN.
140 - defend AnyEvent::Util::inet_aton against Coro::LWP brutal 296 - defend AnyEvent::Util::inet_aton against Coro::LWP's brutal
141 override. 297 override.
142 - new AnyEvent::Guard::cancel. 298 - new AnyEvent::Guard::cancel.
143 299
1443.5 Sat May 17 23:17:14 CEST 2008 3003.5 Sat May 17 23:17:14 CEST 2008
145 - gracefully deal with systems not defining CLOCK_MONOTONIC 301 - gracefully deal with systems not defining CLOCK_MONOTONIC
159 315
1603.41 Sun May 11 19:53:13 CEST 2008 3163.41 Sun May 11 19:53:13 CEST 2008
161 - work around a bug in perl 5.8.8's local. Reported by Yi Ma Mao. 317 - work around a bug in perl 5.8.8's local. Reported by Yi Ma Mao.
162 318
1633.4 Sun May 11 00:29:25 CEST 2008 3193.4 Sun May 11 00:29:25 CEST 2008
164 - complete re-implementation of condvars with a hopefully much mroe useful 320 - complete re-implementation of condvars with a hopefully much more useful
165 API (backward compatible functions exist but are undocumented). 321 API (backward compatible functions exist but are undocumented).
166 - AnyEvent::Handle fully rewritten with a hopefully more powerful API 322 - AnyEvent::Handle fully rewritten with a hopefully more powerful API
167 (still subject to change). 323 (still subject to change).
168 - take advantage of CLOCK_MONOTONIC, if available, in AnyEvent::Impl::Perl. 324 - take advantage of CLOCK_MONOTONIC, if available, in AnyEvent::Impl::Perl.
169 - provide AnyEvent::post_detect and @AnyEvent::post_detect, which 325 - provide AnyEvent::post_detect and @AnyEvent::post_detect, which

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines