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

Comparing AnyEvent/Changes (file contents):
Revision 1.455 by root, Thu Aug 4 09:14:01 2011 UTC vs.
Revision 1.498 by root, Fri Aug 26 18:08:07 2011 UTC

1Revision history for Perl extension AnyEvent. 1Revision history for Perl extension AnyEvent.
2 2
3TODO: document TCP_*** constants 3TODO: document TCP_*** constants
4TODO: catch AE::xxx for anyevent strict and anyevent debug
5TODO: anyevent::trace? or debug tracing all watchers?
6TODO: anyevent strict checking for $_ changes?
7 4
5 - log_to_syslog now accepts facility strings.
6 - log_to_syslog would not allow facilities - "$facility|$level"
7 *literally* means that string. sheesh.
8 - the CPAN parser got confused and thought we provide Sys::Syslog, try
9 to work around.
10 - renamed AnyEvent::Impl::FLTK2 to FLTK.
11
126.01 Fri Aug 26 07:04:11 CEST 2011
8 - INCOMPATIBLE CHANGE: AnyEvent::DNS resource records now include 13 - INCOMPATIBLE CHANGE: AnyEvent::DNS resource records now include
9 the TTL as fourth element - this affects ->resolve directly, 14 the TTL as fourth element - this affects ->resolve, ->request
10 and ->request and ->dns_unpack indirectly. Convenience functions 15 and ->dns_unpack indirectly. Convenience functions such as
11 such as AnyEvent::DNS::{a,txt,mx,srv} are not affected. 16 AnyEvent::DNS::{a,txt,mx,srv} are not affected, neither is
17 AnyEvent::Socket.
12 - INCOMPATIBLE CHANGE: backend authors now should not implement 18 - INCOMPATIBLE CHANGE: backend authors now should not implement
13 one_event or loop, but instead the AnyEvent::CondVar::_wait and _poll 19 one_event or loop, but instead the AnyEvent::CondVar::_wait and _poll
14 methods. 20 methods.
21 - INCOMPATIBLE CHANGE: verbosity levels have been redefined, see
22 AnyEvent (PERL_ANYEVENT_VERBOSE) and AnyEvent::Log for details.
15 - DEPRECIATION: please change 23 - DEPRECIATION: please change
16 "use AnyEvent::Impl::Perl" to "use AnyEvent::Loop" and 24 "use AnyEvent::Impl::Perl" to "use AnyEvent::Loop" and
17 "AnyEvent::Impl::Perl::loop" to "AnyEvent::Loop::run" 25 "AnyEvent::Impl::Perl::loop" to "AnyEvent::Loop::run"
18 in your programs, for future compatibility. 26 in your programs, for future compatibility.
27 - *blush* idle watcher emulation was borked.
28 - AnyEvent::Strict now checks the AE::xxx functions as well.
29 - querying too long domain names would barf deep inside AnyEvent::DNS - since
30 this is hard to avoid for applications, AnyEvent:.DNS::request now checks for
31 for too long domain names explicitly and passes an undef to the callback
32 instead (reported by James Bromberger).
33 - make AnyEvent::Util more robust against EINTR (analyzed by Andrew Suffield).
34 - new functions: AnyEvent::postpone, AnyEvent::log.
35 - new module: AnyEvent::Log, for simple logging needs.
36 - new env variable, PERL_ANYEVENT_LOG, for fine-grained logging config.
37 - new env variable, PERL_ANYEVENT_DEBUG_SHELL, to automatically start
38 a debug shell.
39 - new env variable, PERL_ANYEVENT_DEBUG_WRAP, to automatically enable
40 watcher instrumentation/wrapping (see AnyEvent::Debug::wrap).
41 - new env variable, PERL_ANYEVENT_HOSTS, to override the place where
42 F</etc/hosts> can be found.
43 - an empty PERL_ANYEVENT_RESOLV_CONF now selects the default
44 configuration.
45 - env variables can now be specified using AE_xyz instead of
46 PERL_ANYEVENT_xyz, subject to some rules.
47 - lots of new AnyEvent::Debug functionality.
48 - AnyEvent::Strict now checks for modifications $_ by the callback
49 (by setting it to readonly while executing the callback, if possible).
50 - IO::Async sometimes cancels the wrong timer when you call cancel_timer.
51 Invest extra overhead to work around this peculiar behaviour.
19 - split the pure perl backend into a loop module and an impl 52 - split the pure perl backend into a loop module and an impl
20 module (AnyEvent::Loop and AnyEvent::Impl::Perl). 53 module (AnyEvent::Loop and AnyEvent::Impl::Perl).
21 - some read types (regex, netstring, json, storable) could 54 - some read types (regex, netstring, json, storable) could
22 errornously keep an AE::Handle object alive on their own 55 errornously keep an AE::Handle object alive on their own
23 (reported by Mohammad Toossi). 56 (reported by Mohammad Toossi).
57 - AnyEvent::Socket::resolve_sockaddr and all functions using it now
58 supports /etc/hosts overrides.
24 - add more workarounds around child watcher bugs in IO::Async 59 - add more workarounds around child watcher bugs in IO::Async
25 and (newly introduced) in POE. 60 and (newly introduced) in POE.
26 - use glib child watchers and try to work around its limitations, 61 - use glib child watchers and try to work around its limitations,
27 if possible (based on a patch by Kevin Ryde). 62 if possible (based on a patch by Kevin Ryde).
28 - add support for (currently third-party) AnyEvent::Impl::FLTK. 63 - add support for FLTK (fltk2), via AnyEvent::Impl::FLTK2.
29 - many read types in AnyEvent::Handle would malfunction during 64 - many read types in AnyEvent::Handle would malfunction during
30 transitions to TLS because of a "delete $self->{rbuf}". 65 transitions to TLS because of a "delete $self->{rbuf}".
31 (reported by Gerald Galster). 66 (reported by Gerald Galster).
32 - resolve AnyEvent::Util::guard at first-use-time, not at load time,
33 for further speed and memory savings when not used.
34 - improve condvar blocking wait performance (probably only noticable 67 - improve condvar blocking wait performance (probably only noticable
35 with faster backends), also make it easier for event loops that 68 with faster backends), also make it easier for event loops that
36 do not support blocking waits. 69 do not support blocking waits.
70 - PERL_ANYEVENT_MODEL now also allows full module names, although
71 the usefulness of this feature is not yet clear.
72 - add tests for all supported event loops, conditional on PERL_ANYEVENT_LOOP_TESTS.
73 - add t/80_ssltext.t.
74 - no longer use AUTOLOAD for the initial loading (for no very good reason).
75 - tcp_server now tries to unlink unix domain sockets when it gets destroyed.
76 - do not run event loop detection multiple times when programs call their cached
77 copies of AnyEvent::detect.
78 - parse_hostport now accepts absolute paths als unix domain sockets.
79 - suppress the idiotic warning inside POE by patching the POE::Kernel
80 run flags instead of asking the user to jump through contortions.
81 - add Task::Weaken as dependency (as recommends only at this time).
82 - replace PF_UNSPEC by 0, for good old minix.
83
846.0 (not officially released, but was on CPAN for about 15 minutes :/)
37 85
385.34 Thu May 12 09:59:41 CEST 2011 865.34 Thu May 12 09:59:41 CEST 2011
39 - AE::TLS didn't support both cert_file and key at the same time, 87 - AE::TLS didn't support both cert_file and key at the same time,
40 due to some copy&paste bug (reported and analyzed by vti). 88 due to some copy&paste bug (reported and analyzed by vti).
41 - improve AE::Handle timeout documentation slightly. 89 - improve AE::Handle timeout documentation slightly.

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines