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

Comparing AnyEvent/Changes (file contents):
Revision 1.491 by root, Thu Aug 25 05:39:47 2011 UTC vs.
Revision 1.522 by root, Tue Jan 10 13:43:22 2012 UTC

1Revision history for Perl extension AnyEvent. 1Revision history for Perl extension AnyEvent.
2 2
3TODO: document TCP_*** constants 3TODO: document TCP_*** constants
4TODO: add debug/trace logging to some modules
4 5
5TODO: ae::log examples 66.13
6TODO: trace-per-watcher AnyEvent::Debug 7 - AnyEvent::Handle::push_read (line => did pass $1 directly, so
7TODO: logging during AnyEvent::detect 8 regex-matching inside the callback would change the parameter, despite
8TODO: AnyEvent::Filesys::Notify 9 $1 being dynamically scoped per-block. this perl bug is now being
96.01 10 worked around (testcase by Cindy Wang).
11
126.12 Mon Dec 12 13:21:10 CET 2011
13 - $! was clobbered by subsequent calls in tcp_connect, due to
14 the postpone not saving/restoring it (analyzed by Richard Garnish).
15
166.11 Tue Nov 22 10:36:05 CET 2011
17 - Tk cannot create windows when tainted unless you set a title, so
18 set a dummy title for AnyEvent's dummy mainwindow. How dummy.
19 - escape any nonprintable/nonascii characters when stringifying
20 backtraces.
21 - log the reason loading an interface module fails to load at level debug.
22
236.1 Tue Oct 4 19:44:30 CEST 2011
24 - INCOMPATIBLE CHANGE: the default log level is now "4" (error
25 and above), and some messages inside AnyEvent have been elevated
26 to higher log levels to print by default.
27 - AnyEvent::log, unlike AnyEvent::Log::log, did not always exit on fatal.
28 - work around yet another signal race bug, newly introduced by POE. My
29 how that module sucks.
30 - add google public ipv6 dns as fallback servers, so AE::DNS can finally
31 support ipv6-only operation even with defaults (also use ::1 instead
32 of 127.0.0.1).
33 - give better guidelines on how to chose a logging level.
34 - AnyEvent::Log can now cap (limit) log message priority by context.
35 - AE::log will now save and restore $! and $@, so callers don't have to.
36 - AE::Strict now checks that registered fds are still valid at regular
37 intervals.
38 - skip frequently called 'require' calls if the module appears loaded.
39 - increase signal latency test timer considerably for poor little osx,
40 which can't be bothered with basic posix functionality such as signal
41 delivery.
42 - mention some debugging aids in the tutorial.
43 - new env variable PERL_ANYEVENT_MAX_SIGNAL_LATENCY.
44 - private (%namespace) log contexts in PERL_ANYEVENT_LOG now have the name
45 of the context as title.
46 - AnyEvent::Strict would not restore read-write access to $_ when a callback
47 died - this is a user bug, but since AE::Strict exists to help dbeugging...
48 - detect the extremely evil IO::Async::Loop::AnyEvent module and refuse
49 to work with it - the author is well aware of the issues but refuses
50 to fix them. This extreme step has been taken because the module actively
51 attacks the goals of AnyEvent and makes it harder for module authors to use
52 AnyEvent.
53
546.02 Fri Aug 26 20:08:31 CEST 2011
55 - log_to_syslog now accepts facility strings.
56 - log_to_syslog would not allow facilities - "$facility|$level"
57 *literally* means that string. sheesh.
58 - the CPAN parser got confused and thought we provide Sys::Syslog, try
59 to work around.
60 - renamed AnyEvent::Impl::FLTK2 to FLTK.
61
626.01 Fri Aug 26 07:04:11 CEST 2011
10 - INCOMPATIBLE CHANGE: AnyEvent::DNS resource records now include 63 - INCOMPATIBLE CHANGE: AnyEvent::DNS resource records now include
11 the TTL as fourth element - this affects ->resolve, ->request 64 the TTL as fourth element - this affects ->resolve, ->request
12 and ->dns_unpack indirectly. Convenience functions such as 65 and ->dns_unpack indirectly. Convenience functions such as
13 AnyEvent::DNS::{a,txt,mx,srv} are not affected, neither is 66 AnyEvent::DNS::{a,txt,mx,srv} are not affected, neither is
14 AnyEvent::Socket. 67 AnyEvent::Socket.
34 - new env variable, PERL_ANYEVENT_DEBUG_SHELL, to automatically start 87 - new env variable, PERL_ANYEVENT_DEBUG_SHELL, to automatically start
35 a debug shell. 88 a debug shell.
36 - new env variable, PERL_ANYEVENT_DEBUG_WRAP, to automatically enable 89 - new env variable, PERL_ANYEVENT_DEBUG_WRAP, to automatically enable
37 watcher instrumentation/wrapping (see AnyEvent::Debug::wrap). 90 watcher instrumentation/wrapping (see AnyEvent::Debug::wrap).
38 - new env variable, PERL_ANYEVENT_HOSTS, to override the place where 91 - new env variable, PERL_ANYEVENT_HOSTS, to override the place where
39 F</etc/hosts> can be found. 92 /etc/hosts can be found.
40 - an empty PERL_ANYEVENT_RESOLV_CONF now selects the default 93 - an empty PERL_ANYEVENT_RESOLV_CONF now selects the default
41 configuration. 94 configuration.
42 - env variables can now be specified using AE_xyz instead of 95 - env variables can now be specified using AE_xyz instead of
43 PERL_ANYEVENT_xyz, subject to some rules. 96 PERL_ANYEVENT_xyz, subject to some rules.
44 - lots of new AnyEvent::Debug functionality. 97 - lots of new AnyEvent::Debug functionality.
71 - no longer use AUTOLOAD for the initial loading (for no very good reason). 124 - no longer use AUTOLOAD for the initial loading (for no very good reason).
72 - tcp_server now tries to unlink unix domain sockets when it gets destroyed. 125 - tcp_server now tries to unlink unix domain sockets when it gets destroyed.
73 - do not run event loop detection multiple times when programs call their cached 126 - do not run event loop detection multiple times when programs call their cached
74 copies of AnyEvent::detect. 127 copies of AnyEvent::detect.
75 - parse_hostport now accepts absolute paths als unix domain sockets. 128 - parse_hostport now accepts absolute paths als unix domain sockets.
129 - suppress the idiotic warning inside POE by patching the POE::Kernel
130 run flags instead of asking the user to jump through contortions.
76 - add Task::Weaken as dependency (as recommends only at this time). 131 - add Task::Weaken as dependency (as recommends only at this time).
132 - replace PF_UNSPEC by 0, for good old minix.
77 133
786.0 (not officially released, but was on CPAN for about 15 minutes :/) 1346.0 (not officially released, but was on CPAN for about 15 minutes :/)
79 135
805.34 Thu May 12 09:59:41 CEST 2011 1365.34 Thu May 12 09:59:41 CEST 2011
81 - AE::TLS didn't support both cert_file and key at the same time, 137 - AE::TLS didn't support both cert_file and key at the same time,

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines