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

Comparing AnyEvent/Changes (file contents):
Revision 1.212 by root, Fri Jan 2 22:09:12 2009 UTC vs.
Revision 1.304 by root, Tue Jul 28 11:59:35 2009 UTC

1Revision history for Perl extension AnyEvent. 1Revision history for Perl extension AnyEvent.
2 2
34.881 Tue Jul 28 12:51:53 CEST 2009
4 - work around a bug in local in pre-5.10 perls, causing
5 AnyEvent::Handle to recurse when it should not
6 (analyzed by elmex).
7
84.88 Tue Jul 28 04:04:37 CEST 2009
9 - re-bless the handle into a dummy package after calling
10 AnyEvent::Handle::destroy, so the user does not need to check
11 for errors after every push_write etc.
12 - do not attempt to run t/02_signals.t on obviously broken
13 platforms.
14
154.87 Sun Jul 26 02:06:16 CEST 2009
16 - do not attempt to linger when there is no longer a valid fh.
17 - enforce tls mode to be either accept or connect, do not simply
18 segfault in Net::SSLeay.
19 - AnyEvent::Handle can now call tcp_connect itself (new parameters
20 connect, on_prepare, on_connect and on_connect_error). Updated
21 tutorial accordingly.
22 - add AnyEvent::Impl::Irssi backend.
23
244.86 Mon Jul 20 23:52:29 CEST 2009
25 - since the verbose warning is not enough, explicitly document
26 that versions before 1.33 of Net::SSLeay are not secure.
27 - work around signal handling races in Event and (...) Event::Lib.
28 - try to align signal-race timer to full-second boundaries.
29 - work around Tk not liking negative timeouts.
30 - don't complain of different grades of environmental unfriendlyness
31 in IO::Async.
32
334.85 Sat Jul 18 06:16:14 CEST 2009
34 - nail the signal race problem in perl once and for all
35 (see $AnyEvent::MAX_SIGNAL_LATENCY).
36 - take advantage of Async::Interrupt if it is available.
37 - load Time::HiRes and Guard modules on demand only.
38 - add optional/recommended modules section to AnyEvent
39 documentation.
40 - reduce memory usage considerably (and reduce startup penalty)
41 by not using "strict", "warnings" and "overload" modules.
42 - work around buggy windows/openbsd perls and provide EBADMSG
43 and EPROTO ourselves when missing.
44 - improve perl 5.6 compatibility of the core event loop.
45 - made Net::SSLeay version 1.33 a soft requirement.
46
474.83 Fri Jul 17 16:56:26 CEST 2009
48 - implement AnyEvent::Socket::getprotobyname.
49 - AnyEvent::CondVar's will now detect recursive blocking
50 waits and will croak, as too many people fall into
51 this trap.
52 - AnyEvent::Handle will now call ->destroy on itself after
53 executing the on_error callback, instead of doing some
54 half-baked internal shutdown, for fatal errors.
55 - clarify on_eof behaviour w.r.t. the read queue and
56 on_read callbacks.
57 - ignore some possible spurious wake-ups in tcp_connect.
58
594.82 Sat Jul 11 00:34:55 CEST 2009
60 - POE and Event backends didn't accept some callable objects as
61 callbacks.
62 - use Config module instead of POSIX module to detect signal names
63 in AnyEvent::Strict and AnyEvent::Impl::EventLib, as the POSIX
64 module doesn't even have all POSIX signals :/.
65 - use more workarounds around the many refcnt/corruption bugs in
66 Event::Lib.
67 - work around a race condition in perl's select, causing t/03_child.t
68 to rarely fail.
69
704.81 Thu Jul 9 10:30:30 CEST 2009
71 - AnyEvent::Handle didn't properly diagnose write errors
72 (it expected -1 from syswrite, how lame... :).
73 - support file descriptors in addition to file handles
74 in AnyEvent->io.
75 - new env variables: PERL_ANYEVENT_RESOLV_CONF,
76 PERL_ANYEVENT_MAX_OUTSTANDING_DNS, PERL_ANYEVENT_CA_FILE
77 and PERL_ANYEVENT_CA_PATH.
78 - provide a sensible synopsis section for AnyEvent::TLS.
79 - add a "supported backends" section to the manpage.
80 - added simple io watcher test to testsuite, using a
81 portable_socketpair.
82 - tried to improve the stability of the Event::Lib backend,
83 YMMV.
84
854.8 Mon Jul 6 23:45:16 CEST 2009
86 - AnyEvent::DNS did not properly follow CNAME records with
87 uppercase targets.
88 - AnyEvent::DNS would errornously return AAAA records
89 with v4 mapped addresses (a faulty record) as ipv4 addresses,
90 causing AnyEvent::Socket to throw an exception.
91 - added new module AnyEvent::TLS for easier SSL/TLS context
92 creation, with many options including hostname verification,
93 secure default configuration, lots of documentation and,
94 predefined diffie-hellman keys for perfect forward security
95 and much more. get it while it's still fresh!
96 - use AnyEvent::TLS in AnyEvent::Handle for context management.
97 - load AnyEvent::Handle only on demand in AnyEvent::DNS,
98 so AnyEvent::Socket users have smaller memory footprint
99 in the common case.
100 - add AnyEvent::Handle->push_shutdown method.
101 - add an additional error message parameter to AnyEvent::Handle's
102 on_error callback (for TLS, $! is still available).
103 - add AnyEvent::Handle on_starttls/on_stoptls callbacks.
104 - make AnyEvent::Handle more robust against early conenction
105 failures (during new), and return C<undef> in that case
106 from the constructor.
107 - AnyEvent::Handle will now try to load only JSON::XS first,
108 then fall back to JSON.
109 - format_ipv4/format_ipv6 are now exported by default, for symmetry,
110 and because it was documented that way.
111
1124.451 Fri Jul 3 00:28:58 CEST 2009
113 - do not clear rbuf when shutting down an AnyEvent::Handle
114 object - doing so breaks AnyEvent::HTTP.
115
1164.45 Mon Jun 29 22:59:26 CEST 2009
117 - a write error could cause AnyEvent::Handle to create
118 an I/O watcher with an undefined $fh.
119 - special-case mapped ipv4 addresses in both
120 AnyEvent::Socket::format_address and parse_address,
121 to treat them just like ipv4 addresses.
122 - updated and overhauled the AnyEvent::Intro doc.
123 - implement AnyEvent::Socket::format_ipv4/ipv6.
124 - slightly speed up portable_pipe/socketpair.
125 - expand condvar begin/end documentation.
126
1274.42 Fri Jun 26 08:32:18 CEST 2009
128 - preliminary and neccesarily incomplete support for IO::Async.
129 - reset SIGCHLD to DEFAULT when AnyEvent is loaded, in
130 case it was set to IGNORE, to ensure we can catch child statuses
131 even when the calling env acts stupidly.
132 - updated benchmarks with IO::Async, which performs very well.
133
1344.412 Wed Jun 24 01:35:57 CEST 2009
135 - support an "untaint" attribute for AnyEvent::DNS
136 and set it on the default resolver.
137 - implement and document AnyEvent::Impl::Perl::loop.
138 - remove all anyevent-env variables from %ENV
139 when running in tainted mode.
140 - mention and extend the IO::Lambda benchmark.
141
1424.411 Sun Jun 7 18:48:02 CEST 2009
143 - do not try to use F_SETFD on windows.
144
1454.41 Thu May 14 06:40:11 CEST 2009
146 - work around issues in older perls (5.8.0?) when
147 a signal handler is deleted from the %SIG hash.
148 - use POSIX::_exit in child test, to avoid running
149 destructors.
150 - speed up CHLD handling by relying on SIGCHLD being
151 synchronously delivered, even when we roll our own
152 implementation.
153 - AnyEvent::DNS: add the "dname" resource record name
154 for cosmetic reasons.
155
1564.4 Sun Apr 26 20:12:33 CEST 2009
157 - implemented idle watchers, where applicable.
158 - AnyEvent->time died when Event backend was in use.
159 - fix a memleak in the Tk backend.
160 - sped up Tk timer handling.
161 - clip negative "after" values to 0 in AnyEvent::Impl::Event
162 to avoid spamming out warning messages.
163 - fix Qt timers without interval.
164 - avoid Qt zero-timeout special case, in old libqt's.
165
1664.352 Mon Apr 20 16:31:11 CEST 2009
167 - fix AnyEvent::Strict error messages for child watchers.
168 - fix/update Makefile.PL "recommends" versions.
169 - add AnyEvent->now_update.
170
1714.351 Sat Apr 11 07:56:14 CEST 2009
172 - actually make the signal pipe work under win32.
173 - localise $! in signal handler to avoid changing $!, although
174 perl itself does not seem to save/restore errno either.
175 - set the cloexec flag on the signal pipe (normally set by perl too).
176
1774.35 Fri Mar 27 11:48:20 CET 2009
178 - event models relying on AnyEvent's signal watcher emulation did
179 invoke the callback asynchronously, contradicting documentation
180 and causing signals to get lost (this includes AnyEvent's own
181 event loop). AnyEvent now uses the standard pipe trick to make
182 callback execution synchronous to the event loop.
183 - AnyEvent::Handle didn't free TLS context data on DESTROY
184 (patch by Pavel Shaydo).
185 - work around the ever-incompatibly-changing API of MakeMaker.
186 - document that changing global variables without restoring them
187 is a bad idea in Perl (noted by Adam Rosenstein).
188 - AnyEvent::Strict now barfs if ->io is passed a file.
189
1904.34 Thu Feb 12 18:32:45 CET 2009
191 - separately buffer TLS read data, as otherwise the read queue could
192 deadlock as receiving data is not expected while draining the
193 read queue (which cna only happen with TLS).
194 - raise EBADMSG error on JSON decoding errors.
195 - fix some minor manpage bugs (reported by Maximilian Gaß).
196 - speed up select bitmask parsing quite a bit in the pure perl
197 backend.
198 - use CORE::select instead of just select in AnyEvent::Impl::Perl.
199
2004.331 Tue Jan 6 21:07:25 CET 2009
3 - socketpair fails on many vista machines because vista has 201 - socketpair fails on many vista machines because vista has
4 completely broken accept/getpeername and getsockname functions, 202 completely broken accept/getpeername and getsockname functions,
5 so we provide our own socketpair emulation that kind of works 203 so we provide our own socketpair emulation that kind of works
6 (AnyEvent::Util::portable_pipe). 204 (AnyEvent::Util::portable_pipe).
7 - new function: AnyEvent::Util::portable_socketpair. 205 - new function: AnyEvent::Util::portable_socketpair.

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines