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

Comparing AnyEvent/Changes (file contents):
Revision 1.269 by root, Wed Jul 8 04:49:18 2009 UTC vs.
Revision 1.352 by root, Tue Sep 29 10:10:44 2009 UTC

1Revision history for Perl extension AnyEvent. 1Revision history for Perl extension AnyEvent.
2 2
34.801 35.201 Tue Sep 29 12:09:25 CEST 2009
4 - AnyEvent:Handle::on_starttls/on_stoptls methods were broken
5 (reported by Torsten Foertsch).
6 - common::sense 2.0 could cause tcp_server to throw an exception
7 (analysed by elmex).
8
95.2 Mon Sep 14 07:04:49 CEST 2009
10 - INCOMPATIBLE CHANGE: do no longer support register_read_type
11 and register_write_type in AnyEvent::Handle, instead support
12 package names (the facility was mostly abused).
13 - implement "packagename-as-read/write type" support in
14 AnyEvent::Handle.
15 - AnyEvent::Handle: new options "keepalive" and "oobinline".
16 - oobinline set by default to avoid security issues.
17 - the pure-perl event loop backend wrongly detected times() fallback
18 support (spotted by Pavel Boldin).
19
205.12 Tue Sep 1 20:26:50 CEST 2009
21 - be more lenient when parsing resolv.conf files, as some people
22 use hashmarks as comment indicator inside directives (reported
23 by Michael S. Fischer).
24 - use same set of warnings as common::sense 2.0.
25 - fix a potential 32 bit overflow issue due to perl having problems
26 with large hex constants in the Perl backend.
27 - do not use the slower 5.6 version fo the enc_name code in AnyEvent::DNS
28 by default.
29 - fix some prototypes.
30 - (optionally) require Async::Interrupt 1.02.
31 - replace opendns fallbacks by verizon/level3 public dns servers.
32
335.112 Fri Aug 21 13:59:04 CEST 2009
34 - AnyEvent::Handle could cause hard crashes in Net::SSLeay when
35 using starttls with an illegal/uncreatable tls context.
36 - port to broken win32 perls.
37
385.111 Sun Aug 16 18:44:36 CEST 2009
39 - perl errornously requires sockaddr_un structures returned by the
40 kernel to have a specific length. work around this bug by padding
41 sockaddr_un structures (found to fail on OS X, as perl only uses
42 the correct code for GNU/Linux, but likely to fail on other
43 OSes as well).
44
455.11 Wed Aug 12 17:49:37 CEST 2009
46 - fixed a bug in run_cmd with input from filename.
47 - create a json coder object when none is given in write direction
48 to reduce dependency on JSON.
49
505.1 Tue Aug 11 03:17:32 CEST 2009
51 - tcp_connect now reports the correct error in $!, not an unrelated
52 one (was broken since 4.91).
53 - AE::Handle did not properly clear rtimeout/wtimeout watchers
54 when retrying a tcp_connect.
55 - new functions: AnyEvent::Util::run_cmd and close_all_fds_except.
56 - fixed wrong documentation in AE::Socket.
57
585.01 Mon Aug 10 03:16:32 CEST 2009
59 - last release broke EV child watchers :/.
60
615.0 Sun Aug 9 17:32:09 CEST 2009
62 - officially introduce and document the AE API.
63 - lowering the timeout at runtime did not have immediate effect
64 in AnyEvent::Handle.
65 - AE::Handle now has separate and independent read and write timeout
66 settings.
67 - probe for Guard module when AnyEvent::Util is loaded, not at
68 runtime (Event doesn't like eval "use" from callbacks, and it avoids
69 exporting the probe function).
70 - Impl::IOAsync's io watchers did not use the filehandle emulation
71 code to work around it's watcher limits.
72 - work around IO::Async's problems with overloaded objects.
73 - try to disable wearnings inside IO::Async, it's just too buggy.
74 - do no longer use Event by default, only EV or Perl, Event is too buggy.
75 - hackishly provide fast AE:: interface when EV or Perl is the backend.
76 - inherit VERSION from AnyEvent::VERSION in most modules.
77
784.91 Thu Aug 6 15:42:45 CEST 2009
79 - AE::Handle::starttls could get out of sync when the read buffer
80 already contains some TLS handshake.
81 - AE::Handle did not properly free the TLS session, causing bigger
82 memory leaks in Net::SSLeay than expected (reported by toaster).
83 - AE::Socket::tcp_connect will now artificially delay invoking
84 the callback to avoid returning after invoking the callback.
85 - convert many internal watcher uses to AE API.
86
874.9 Sat Aug 1 11:07:01 CEST 2009
88 - Glib silently fails when registering a timeout with
89 a negative value, so avoid that.
90 - call condvar callback immediately when it is set
91 after the condition is already signalled.
92 - check rbuf_max condition only after trying to consume
93 data.
94 - normalise signal numbers to names when using the ae's
95 signal handling, but do not document this (yet).
96 - pure perl signal emulation did not properly set nonblocking
97 mode on the signal pipe on win32 (this is unlikely to have caused
98 any issues).
99 - new module: AnyEvent::Debug.
100 - AnyEvent::Strict now checks that a signal was specified
101 by name (not name or number).
102 - reduce memory footprint in typical cases by ~50kb by
103 only compiling signal code when necessary.
104 - add AnyEvent::Handle->rbuf_max.
105 - grab the AE namespace for future new API, implement stubs for
106 said future/alternative API.
107 - new function: AnyEvent::Socket::format_hostport.
108
1094.881 Tue Jul 28 12:51:53 CEST 2009
110 - work around a bug in local in pre-5.10 perls, causing
111 AnyEvent::Handle to recurse when it should not
112 (analysed by elmex).
113
1144.88 Tue Jul 28 04:04:37 CEST 2009
115 - re-bless the handle into a dummy package after calling
116 AnyEvent::Handle::destroy, so the user does not need to check
117 for errors after every push_write etc.
118 - do not attempt to run t/02_signals.t on obviously broken
119 platforms.
120
1214.87 Sun Jul 26 02:06:16 CEST 2009
122 - do not attempt to linger when there is no longer a valid fh.
123 - enforce tls mode to be either accept or connect, do not simply
124 segfault in Net::SSLeay.
125 - AnyEvent::Handle can now call tcp_connect itself (new parameters
126 connect, on_prepare, on_connect and on_connect_error). Updated
127 tutorial accordingly.
128 - add AnyEvent::Impl::Irssi backend.
129
1304.86 Mon Jul 20 23:52:29 CEST 2009
131 - since the verbose warning is not enough, explicitly document
132 that versions before 1.33 of Net::SSLeay are not secure.
133 - work around signal handling races in Event and (...) Event::Lib.
134 - try to align signal-race timer to full-second boundaries.
135 - work around Tk not liking negative timeouts.
136 - don't complain of different grades of environmental unfriendlyness
137 in IO::Async.
138
1394.85 Sat Jul 18 06:16:14 CEST 2009
140 - nail the signal race problem in perl once and for all
141 (see $AnyEvent::MAX_SIGNAL_LATENCY).
142 - take advantage of Async::Interrupt if it is available.
143 - load Time::HiRes and Guard modules on demand only.
144 - add optional/recommended modules section to AnyEvent
145 documentation.
146 - reduce memory usage considerably (and reduce startup penalty)
147 by not using "strict", "warnings" and "overload" modules.
148 - work around buggy windows/openbsd perls and provide EBADMSG
149 and EPROTO ourselves when missing.
150 - improve perl 5.6 compatibility of the core event loop.
151 - made Net::SSLeay version 1.33 a soft requirement.
152
1534.83 Fri Jul 17 16:56:26 CEST 2009
154 - implement AnyEvent::Socket::getprotobyname.
155 - AnyEvent::CondVar's will now detect recursive blocking
156 waits and will croak, as too many people fall into
157 this trap.
158 - AnyEvent::Handle will now call ->destroy on itself after
159 executing the on_error callback, instead of doing some
160 half-baked internal shutdown, for fatal errors.
161 - clarify on_eof behaviour w.r.t. the read queue and
162 on_read callbacks.
163 - ignore some possible spurious wake-ups in tcp_connect.
164
1654.82 Sat Jul 11 00:34:55 CEST 2009
166 - POE and Event backends didn't accept some callable objects as
167 callbacks.
168 - use Config module instead of POSIX module to detect signal names
169 in AnyEvent::Strict and AnyEvent::Impl::EventLib, as the POSIX
170 module doesn't even have all POSIX signals :/.
171 - use more workarounds around the many refcnt/corruption bugs in
172 Event::Lib.
173 - work around a race condition in perl's select, causing t/03_child.t
174 to rarely fail.
175
1764.81 Thu Jul 9 10:30:30 CEST 2009
177 - AnyEvent::Handle didn't properly diagnose write errors
178 (it expected -1 from syswrite, how lame... :).
4 - support file descriptors in addition to file handles 179 - support file descriptors in addition to file handles
5 in AnyEvent->io. 180 in AnyEvent->io.
6 - new env variables: PERL_ANYEVENT_RESOLV_CONF, 181 - new env variables: PERL_ANYEVENT_RESOLV_CONF,
7 PERL_ANYEVENT_MAX_OUTSTANDING_DNS, PERL_ANYEVENT_CA_FILE 182 PERL_ANYEVENT_MAX_OUTSTANDING_DNS, PERL_ANYEVENT_CA_FILE
8 and PERL_ANYEVENT_CA_PATH. 183 and PERL_ANYEVENT_CA_PATH.
9 - provide a sensible synopsis section for AnyEvent::TLS. 184 - provide a sensible synopsis section for AnyEvent::TLS.
185 - add a "supported backends" section to the manpage.
186 - added simple io watcher test to testsuite, using a
187 portable_socketpair.
188 - tried to improve the stability of the Event::Lib backend,
189 YMMV.
10 190
114.8 Mon Jul 6 23:45:16 CEST 2009 1914.8 Mon Jul 6 23:45:16 CEST 2009
12 - AnyEvent::DNS did not properly follow CNAME records with 192 - AnyEvent::DNS did not properly follow CNAME records with
13 uppercase targets. 193 uppercase targets.
14 - AnyEvent::DNS would errornously return AAAA records 194 - AnyEvent::DNS would errornously return AAAA records
162 - warn about not loaidng AnyEvent::Impl::POE early enough 342 - warn about not loaidng AnyEvent::Impl::POE early enough
163 (patch by Adam Rosenstein). 343 (patch by Adam Rosenstein).
164 - fixed a great number of bugs and corner cases in AnyEvent::Handle: 344 - fixed a great number of bugs and corner cases in AnyEvent::Handle:
165 - fix a bug in where in SSL connect mode, the 345 - fix a bug in where in SSL connect mode, the
166 client would first wait for some data by the server and 346 client would first wait for some data by the server and
167 otherwise hang. (reported and analyzed in an absolutely 347 otherwise hang. (reported and analysed in an absolutely
168 exemplary manner by Adam Rosenstein). 348 exemplary manner by Adam Rosenstein).
169 - fix a bug in where SSL EOF would not be treated 349 - fix a bug in where SSL EOF would not be treated
170 as stream EOF, putting the connection into a hung state. 350 as stream EOF, putting the connection into a hung state.
171 (reported and analyzed in an absolutely exemplary manner by Adam 351 (reported and analysed in an absolutely exemplary manner by Adam
172 Rosenstein). 352 Rosenstein).
173 - fix a potential segfault when the TLS context 353 - fix a potential segfault when the TLS context
174 would go missing in a read callback (e.g. due to stoptls) - 354 would go missing in a read callback (e.g. due to stoptls) -
175 Net::SSLeay of course makes no type checking whatsoever. 355 Net::SSLeay of course makes no type checking whatsoever.
176 - AnyEvent::Handle will not stop the read watcher in TLS mode. 356 - AnyEvent::Handle will not stop the read watcher in TLS mode.

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines