ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/AnyEvent-MP/Changes
Revision: 1.68
Committed: Tue Sep 22 09:54:42 2009 UTC (14 years, 7 months ago) by root
Branch: MAIN
Changes since 1.67: +1 -0 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 Revision history for AnyEvent::MP
2
3 TODO: testsuite
4 TODO: intro: maybe simple job pool example?
5 TODO: intro: mention watchdog...
6
7 TODO: use gvpe method of making contact, if possible.
8 - grp_mon could not return a guard due to a typo.
9 - implement primitive aemp shell.
10 - do not use bound address as listen length (reported by
11 Felix Antonius Wilhelm Ostman).
12 - no longer export an undefined "reg" function from AE::MP.
13
14 1.1 Fri Sep 11 04:34:03 CEST 2009
15 - bumped the transport protocol to version 1 - sorry, but there
16 were too many bugfixes/changes.
17 - new function AnyEvent::MP::cal for simple rpc.
18 - renamed AnyEvent::MP::Global functions to grp_reg|get|mon.
19 - implemented monitoring for Global groups.
20 - removed all userspace time-outs from the transport, instead
21 rely on tcp retransmit timeouts and tcp keepalive.
22 - spawn now delays spawns on the local node artificially, so
23 it can return before invoking the init function.
24 - break endless recursion between ping-pong ports on the local
25 node after ~50 iterations.
26 - support JSON-encoded aemp arguments.
27 - added aemp restart.
28 - support for starting init functions with parameters added.
29 - data_format, auth_offer and auth_accept are now configurable, albeit
30 not documented.
31 - new service: AnyEvent::MP::LogCatcher.
32 - rely on perl srand'ing better than we could.
33 - try to backport to 5.8.2, unfortunately, recursive dependencies
34 rely on Module::Build, which fails at 5.8.7, so YMMV.
35 - use a vastly different reseeding strategy.
36 - use seed nodes to notify nodes about new nodes.
37 - in the case where a ndoe learns new addresses after it tried
38 connecting, prefer the new addrseses over the old ones.
39
40 1.0 Wed Sep 2 20:40:43 CEST 2009
41 - randomise more connection times, but reduce delay to 0.2s (seeds)
42 and 0.05s (normal connects).
43 - upgrade to and require AnyEvent::Watchdog 1.0.
44
45 0.95 Mon Aug 31 22:03:55 CEST 2009
46 - tutorial finally covers all the basics, maybe not optimally, but it
47 is covered.
48 - rename initialise_node to configure and accepts key => value
49 pairs for configuration.
50 - give aemp a full manpage.
51 - bin/aemp now expects comma-separated lists and supports multiple
52 subcommands.
53 - new aemp eval subcommand.
54 - new aemp parent subcommand.
55 - nodes get freed when no longer needed.
56 - support "*" hostname to specify all local interface addresses
57 (without localhost etc.).
58 - support "*" port to specify a dynamically-assigned port (which
59 is the default now).
60 - fix per-transport memory leak.
61
62 0.9 Sat Aug 29 18:47:45 CEST 2009
63 - tutorial was updated to reflect the current API, but
64 does not touch monitoring yet.
65 - got rid of noderefs and slave nodes entirely, introduce
66 free-text node identifiers and anonymous nodes.
67 - document security issues with tls_anon method and introduce
68 optional tls_md6_64_256 method.
69
70 0.8 Wed Aug 19 07:54:50 CEST 2009
71 - added AnyEvent::MP::Global service.
72 - support "package::" names as service names.
73 - many, many, many bugfixes and tweaks.
74
75 0.7 Sat Aug 15 01:18:51 CEST 2009
76 - sorry, another major API simplification.
77 - greatly improved aemp configuration abilities.
78 - introduced profile management.
79 - updated exmaples in eg/.
80 - added Kernel::snd_to_func.
81
82 0.6 Thu Aug 13 03:15:05 CEST 2009
83 - do away with .aemp-secret and use .perl-anyevent-mp as json config
84 file.
85 - introduce bin/aemp to configure nodes.
86 - too many changes to describe.
87
88 0.4 Sun Aug 9 18:05:49 CEST 2009
89 - API should now be really stable :)
90 - distinguish between resolved and unresolved noderefs.
91 - certificates in .aemp-secret are now supported.
92 - change port creation semantics.
93 - replace become_xxx by initialise_node.
94 - implement AE::MP::spawn.
95 - implement transport timeouts, monitoring, reconnecting.
96 - simplify and partially document the transport protocol.
97
98 0.1 Tue Aug 4 23:07:11 CEST 2009
99 - AnyEvent::MP API should be mostly stable by now.
100
101 0.02 Sun Aug 2 17:46:43 CEST 2009
102 - design has stabilised a bit, sitll unusable.
103
104 0.01 Sat Aug 1 11:43:31 CEST 2009
105 - dummy upload to reserve namespace on CPAN.
106
107 0.0 Thu Jul 30 06:10:15 CEST 2009
108 - original version, an AnyEvent::AIO clone.