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

Comparing AnyEvent/Changes (file contents):
Revision 1.190 by root, Mon Sep 29 02:08:57 2008 UTC vs.
Revision 1.260 by root, Fri Jul 3 21:44:14 2009 UTC

1Revision history for Perl extension AnyEvent. 1Revision history for Perl extension AnyEvent.
2
3ZERO_RETURN - stoptls?
4 - added new module AnyEvent::TLS for easier SSL/TLS context
5 creation, with many options including hostname verification,
6 secure default configuration, lots of documentation and,
7 predefined diffie-hellman keys for perfect forward security
8 and much more. get it while it's still fresh!
9 - use AnyEvent::TLS in AnyEvent::Handle for context management.
10 - load AnyEvent::Handle only on demand in AnyEvent::DNS,
11 so AnyEvent::Socket users have smaller memory footprint
12 in the common case.
13 - add AnyEvent::Handle->push_shutdown method.
14 - add an additional error message parameter to AnyEvent::Handle's
15 on_error callback (for TLS, $! is still available).
16 - make AnyEvent::Handle more robust against early conenction
17 failures (during new), and return C<undef> in that case
18 from the constructor.
19 - AnyEvent::Handle will now try to load only JSON::XS first,
20 then fall back to JSON.
21
224.451 Fri Jul 3 00:28:58 CEST 2009
23 - do not clear rbuf when shutting down an AnyEvent::Handle
24 object - doing so breaks AnyEvent::HTTP.
25
264.45 Mon Jun 29 22:59:26 CEST 2009
27 - a write error could cause AnyEvent::Handle to create
28 an I/O watcher with an undefined $fh.
29 - special-case mapped ipv4 addresses in both
30 AnyEvent::Socket::format_address and parse_address,
31 to treat them just like ipv4 addresses.
32 - updated and overhauled the AnyEvent::Intro doc.
33 - implement AnyEvent::Socket::format_ipv4/ipv6.
34 - slightly speed up portable_pipe/socketpair.
35 - expand condvar begin/end documentation.
36
374.42 Fri Jun 26 08:32:18 CEST 2009
38 - preliminary and neccesarily incomplete support for IO::Async.
39 - reset SIGCHLD to DEFAULT when AnyEvent is loaded, in
40 case it was set to IGNORE, to ensure we can catch child statuses
41 even when the calling env acts stupidly.
42 - updated benchmarks with IO::Async, which performs very well.
43
444.412 Wed Jun 24 01:35:57 CEST 2009
45 - support an "untaint" attribute for AnyEvent::DNS
46 and set it on the default resolver.
47 - implement and document AnyEvent::Impl::Perl::loop.
48 - remove all anyevent-env variables from %ENV
49 when running in tainted mode.
50 - mention and extend the IO::Lambda benchmark.
51
524.411 Sun Jun 7 18:48:02 CEST 2009
53 - do not try to use F_SETFD on windows.
54
554.41 Thu May 14 06:40:11 CEST 2009
56 - work around issues in older perls (5.8.0?) when
57 a signal handler is deleted from the %SIG hash.
58 - use POSIX::_exit in child test, to avoid running
59 destructors.
60 - speed up CHLD handling by relying on SIGCHLD being
61 synchronously delivered, even when we roll our own
62 implementation.
63 - AnyEvent::DNS: add the "dname" resource record name
64 for cosmetic reasons.
65
664.4 Sun Apr 26 20:12:33 CEST 2009
67 - implemented idle watchers, where applicable.
68 - AnyEvent->time died when Event backend was in use.
69 - fix a memleak in the Tk backend.
70 - sped up Tk timer handling.
71 - clip negative "after" values to 0 in AnyEvent::Impl::Event
72 to avoid spamming out warning messages.
73 - fix Qt timers without interval.
74 - avoid Qt zero-timeout special case, in old libqt's.
75
764.352 Mon Apr 20 16:31:11 CEST 2009
77 - fix AnyEvent::Strict error messages for child watchers.
78 - fix/update Makefile.PL "recommends" versions.
79 - add AnyEvent->now_update.
80
814.351 Sat Apr 11 07:56:14 CEST 2009
82 - actually make the signal pipe work under win32.
83 - localise $! in signal handler to avoid changing $!, although
84 perl itself does not seem to save/restore errno either.
85 - set the cloexec flag on the signal pipe (normally set by perl too).
86
874.35 Fri Mar 27 11:48:20 CET 2009
88 - event models relying on AnyEvent's signal watcher emulation did
89 invoke the callback asynchronously, contradicting documentation
90 and causing signals to get lost (this includes AnyEvent's own
91 event loop). AnyEvent now uses the standard pipe trick to make
92 callback execution synchronous to the event loop.
93 - AnyEvent::Handle didn't free TLS context data on DESTROY
94 (patch by Pavel Shaydo).
95 - work around the ever-incompatibly-changing API of MakeMaker.
96 - document that changing global variables without restoring them
97 is a bad idea in Perl (noted by Adam Rosenstein).
98 - AnyEvent::Strict now barfs if ->io is passed a file.
99
1004.34 Thu Feb 12 18:32:45 CET 2009
101 - separately buffer TLS read data, as otherwise the read queue could
102 deadlock as receiving data is not expected while draining the
103 read queue (which cna only happen with TLS).
104 - raise EBADMSG error on JSON decoding errors.
105 - fix some minor manpage bugs (reported by Maximilian Gaß).
106 - speed up select bitmask parsing quite a bit in the pure perl
107 backend.
108 - use CORE::select instead of just select in AnyEvent::Impl::Perl.
109
1104.331 Tue Jan 6 21:07:25 CET 2009
111 - socketpair fails on many vista machines because vista has
112 completely broken accept/getpeername and getsockname functions,
113 so we provide our own socketpair emulation that kind of works
114 (AnyEvent::Util::portable_pipe).
115 - new function: AnyEvent::Util::portable_socketpair.
116 - take advantage of the Guard module if it exists.
117
1184.33 Fri Nov 21 02:35:40 CET 2008
119 - AnyEvent::Strict did errornously flag a fileno of 0 as
120 illegal.
121 - reduce memory usage and slightly speed up the pure perl backend
122 by only storing the file descriptor, not the file handle.
123 - add missing autocork method to AnyEvent::Handle (reported
124 by Adam Rosenstein).
125 - AnyEvent::DNS->resolve errornously documented an $rcode result
126 argument, but there isn't (spotted by Henrik Krohns).
127 - the naked truth about Tk - it's basically unmaintained.
128
1294.32 Mon Nov 3 22:46:32 CET 2008
130 - fix AnyEvent::Socket::resolve_sockaddr to properly support
131 unix sockets again and choose a proper default for
132 the socket type.
133 - fix call to resolve_sockaddr in tcp_connect.
134
1354.31 Thu Oct 30 04:41:48 CET 2008
136 - implemented AnyEvent::Handle->destroy method.
137 - hint about unexpected effects in TLS mode.
138 - speed up AnyEvent::Impl::Perl by using more arrays
139 instead of hashes without the slightest loss of readability :)
140 - work around a perl argument refcounting bug.
141 - with some perl patches applied, AnyEvent now seems leak-free.
142
1434.3 Fri Oct 3 09:18:43 CEST 2008
144 - AnyEvent will now install a no-op signal handler for SIGPIPE,
145 unless one has been installed already.
146 - warn about not loaidng AnyEvent::Impl::POE early enough
147 (patch by Adam Rosenstein).
148 - fixed a great number of bugs and corner cases in AnyEvent::Handle:
149 - fix a bug in where in SSL connect mode, the
150 client would first wait for some data by the server and
151 otherwise hang. (reported and analyzed in an absolutely
152 exemplary manner by Adam Rosenstein).
153 - fix a bug in where SSL EOF would not be treated
154 as stream EOF, putting the connection into a hung state.
155 (reported and analyzed in an absolutely exemplary manner by Adam
156 Rosenstein).
157 - fix a potential segfault when the TLS context
158 would go missing in a read callback (e.g. due to stoptls) -
159 Net::SSLeay of course makes no type checking whatsoever.
160 - AnyEvent::Handle will not stop the read watcher in TLS mode.
161 - AnyEvent::Handle->stoptls will send a TLS close notify
162 instead of simply destroying the stream now.
163 - fix a bug where large blocks of data written in TLS mode
164 would not be sent unless triggered by receives.
165 - on_drain will now take the tls write buffer into account.
166 - SSL operations have been streamlined a bit and should be faster
167 now, more to come, though.
168 - added a FAQ section, will document nontrivial issues in there.
2 169
34.234 Mon Sep 29 04:08:13 CEST 2008 1704.234 Mon Sep 29 04:08:13 CEST 2008
4 - fix child watcher documentation: only child exits will be reported, 171 - fix child watcher documentation: only child exits will be reported,
5 no trace events. 172 no trace events.
6 - mention SIGPIPE in AnyEvent::Handle. 173 - mention SIGPIPE in AnyEvent::Handle.

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines