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

Comparing AnyEvent/Changes (file contents):
Revision 1.485 by root, Sat Aug 20 22:27:07 2011 UTC vs.
Revision 1.525 by root, Wed Feb 1 17:53:47 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: AnyEvent::Log 6 - updates uts46data.pl for unicode 6.1.0.
6TODO: ae::log examples 7
7TODO: consolide slogging, e.g AnyEvent::Debug 86.14 Tue Jan 31 20:00:24 CET 2012
8TODO: log_to_xyz 9 - AnyEvent::Impl::Tk was broken due to a mysterious "die" inside,
96.01 10 probably an editing mistake (reported by Darin McBride).
11
126.13 Thu Jan 12 07:27:01 CET 2012
13 - AnyEvent::Util::fork_call checked for POSIX availability in the wrong way,
14 causing it to fail if POSIX wasn't loaded already (analysed by Rock Power).
15 - AnyEvent::Handle::push_read (line => did pass $1 directly, so
16 regex-matching inside the callback would change the parameter, despite
17 $1 being dynamically scoped per-block. this perl bug is now being
18 worked around (testcase by Cindy Wang).
19
206.12 Mon Dec 12 13:21:10 CET 2011
21 - $! was clobbered by subsequent calls in tcp_connect, due to
22 the postpone not saving/restoring it (analyzed by Richard Garnish).
23
246.11 Tue Nov 22 10:36:05 CET 2011
25 - Tk cannot create windows when tainted unless you set a title, so
26 set a dummy title for AnyEvent's dummy mainwindow. How dummy.
27 - escape any nonprintable/nonascii characters when stringifying
28 backtraces.
29 - log the reason loading an interface module fails to load at level debug.
30
316.1 Tue Oct 4 19:44:30 CEST 2011
32 - INCOMPATIBLE CHANGE: the default log level is now "4" (error
33 and above), and some messages inside AnyEvent have been elevated
34 to higher log levels to print by default.
35 - AnyEvent::log, unlike AnyEvent::Log::log, did not always exit on fatal.
36 - work around yet another signal race bug, newly introduced by POE. My
37 how that module sucks.
38 - add google public ipv6 dns as fallback servers, so AE::DNS can finally
39 support ipv6-only operation even with defaults (also use ::1 instead
40 of 127.0.0.1).
41 - give better guidelines on how to chose a logging level.
42 - AnyEvent::Log can now cap (limit) log message priority by context.
43 - AE::log will now save and restore $! and $@, so callers don't have to.
44 - AE::Strict now checks that registered fds are still valid at regular
45 intervals.
46 - skip frequently called 'require' calls if the module appears loaded.
47 - increase signal latency test timer considerably for poor little osx,
48 which can't be bothered with basic posix functionality such as signal
49 delivery.
50 - mention some debugging aids in the tutorial.
51 - new env variable PERL_ANYEVENT_MAX_SIGNAL_LATENCY.
52 - private (%namespace) log contexts in PERL_ANYEVENT_LOG now have the name
53 of the context as title.
54 - AnyEvent::Strict would not restore read-write access to $_ when a callback
55 died - this is a user bug, but since AE::Strict exists to help dbeugging...
56 - detect the extremely evil IO::Async::Loop::AnyEvent module and refuse
57 to work with it - the author is well aware of the issues but refuses
58 to fix them. This extreme step has been taken because the module actively
59 attacks the goals of AnyEvent and makes it harder for module authors to use
60 AnyEvent.
61
626.02 Fri Aug 26 20:08:31 CEST 2011
63 - log_to_syslog now accepts facility strings.
64 - log_to_syslog would not allow facilities - "$facility|$level"
65 *literally* means that string. sheesh.
66 - the CPAN parser got confused and thought we provide Sys::Syslog, try
67 to work around.
68 - renamed AnyEvent::Impl::FLTK2 to FLTK.
69
706.01 Fri Aug 26 07:04:11 CEST 2011
10 - INCOMPATIBLE CHANGE: AnyEvent::DNS resource records now include 71 - INCOMPATIBLE CHANGE: AnyEvent::DNS resource records now include
11 the TTL as fourth element - this affects ->resolve, ->request 72 the TTL as fourth element - this affects ->resolve, ->request
12 and ->dns_unpack indirectly. Convenience functions such as 73 and ->dns_unpack indirectly. Convenience functions such as
13 AnyEvent::DNS::{a,txt,mx,srv} are not affected, neither is 74 AnyEvent::DNS::{a,txt,mx,srv} are not affected, neither is
14 AnyEvent::Socket. 75 AnyEvent::Socket.
28 for too long domain names explicitly and passes an undef to the callback 89 for too long domain names explicitly and passes an undef to the callback
29 instead (reported by James Bromberger). 90 instead (reported by James Bromberger).
30 - make AnyEvent::Util more robust against EINTR (analyzed by Andrew Suffield). 91 - make AnyEvent::Util more robust against EINTR (analyzed by Andrew Suffield).
31 - new functions: AnyEvent::postpone, AnyEvent::log. 92 - new functions: AnyEvent::postpone, AnyEvent::log.
32 - new module: AnyEvent::Log, for simple logging needs. 93 - new module: AnyEvent::Log, for simple logging needs.
94 - new env variable, PERL_ANYEVENT_LOG, for fine-grained logging config.
33 - new env variable, PERL_ANYEVENT_DEBUG_SHELL, to automatically start 95 - new env variable, PERL_ANYEVENT_DEBUG_SHELL, to automatically start
34 a debug shell. 96 a debug shell.
35 - new env variable, PERL_ANYEVENT_DEBUG_WRAP, to automatically enable 97 - new env variable, PERL_ANYEVENT_DEBUG_WRAP, to automatically enable
36 watcher instrumentation/wrapping (see AnyEvent::Debug::wrap). 98 watcher instrumentation/wrapping (see AnyEvent::Debug::wrap).
99 - new env variable, PERL_ANYEVENT_HOSTS, to override the place where
100 /etc/hosts can be found.
101 - an empty PERL_ANYEVENT_RESOLV_CONF now selects the default
102 configuration.
103 - env variables can now be specified using AE_xyz instead of
104 PERL_ANYEVENT_xyz, subject to some rules.
37 - lots of new AnyEvent::Debug functionality. 105 - lots of new AnyEvent::Debug functionality.
38 - AnyEvent::Strict now checks for modifications $_ by the callback 106 - AnyEvent::Strict now checks for modifications $_ by the callback
39 (by setting it to readonly while executing the callback, if possible). 107 (by setting it to readonly while executing the callback, if possible).
40 - IO::Async sometimes cancels the wrong timer when you call cancel_timer. 108 - IO::Async sometimes cancels the wrong timer when you call cancel_timer.
41 Invest extra overhead to work around this peculiar behaviour. 109 Invest extra overhead to work around this peculiar behaviour.
42 - split the pure perl backend into a loop module and an impl 110 - split the pure perl backend into a loop module and an impl
43 module (AnyEvent::Loop and AnyEvent::Impl::Perl). 111 module (AnyEvent::Loop and AnyEvent::Impl::Perl).
44 - some read types (regex, netstring, json, storable) could 112 - some read types (regex, netstring, json, storable) could
45 errornously keep an AE::Handle object alive on their own 113 errornously keep an AE::Handle object alive on their own
46 (reported by Mohammad Toossi). 114 (reported by Mohammad Toossi).
115 - AnyEvent::Socket::resolve_sockaddr and all functions using it now
116 supports /etc/hosts overrides.
47 - add more workarounds around child watcher bugs in IO::Async 117 - add more workarounds around child watcher bugs in IO::Async
48 and (newly introduced) in POE. 118 and (newly introduced) in POE.
49 - use glib child watchers and try to work around its limitations, 119 - use glib child watchers and try to work around its limitations,
50 if possible (based on a patch by Kevin Ryde). 120 if possible (based on a patch by Kevin Ryde).
51 - add support for FLTK (fltk2), via AnyEvent::Impl::FLTK2. 121 - add support for FLTK (fltk2), via AnyEvent::Impl::FLTK2.
62 - no longer use AUTOLOAD for the initial loading (for no very good reason). 132 - no longer use AUTOLOAD for the initial loading (for no very good reason).
63 - tcp_server now tries to unlink unix domain sockets when it gets destroyed. 133 - tcp_server now tries to unlink unix domain sockets when it gets destroyed.
64 - do not run event loop detection multiple times when programs call their cached 134 - do not run event loop detection multiple times when programs call their cached
65 copies of AnyEvent::detect. 135 copies of AnyEvent::detect.
66 - parse_hostport now accepts absolute paths als unix domain sockets. 136 - parse_hostport now accepts absolute paths als unix domain sockets.
137 - suppress the idiotic warning inside POE by patching the POE::Kernel
138 run flags instead of asking the user to jump through contortions.
67 - add Task::Weaken as dependency (as recommends only at this time). 139 - add Task::Weaken as dependency (as recommends only at this time).
140 - replace PF_UNSPEC by 0, for good old minix.
68 141
696.0 (not officially released, but was on CPAN for about 15 minutes :/) 1426.0 (not officially released, but was on CPAN for about 15 minutes :/)
70 143
715.34 Thu May 12 09:59:41 CEST 2011 1445.34 Thu May 12 09:59:41 CEST 2011
72 - AE::TLS didn't support both cert_file and key at the same time, 145 - AE::TLS didn't support both cert_file and key at the same time,

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines