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

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines