1 Revision history for IPC-MorseSignals
3 0.09 2008-02-03 18:25 UTC
4 + Tst : Fix a race in child creation : the parent could send the message
5 before the child was ready to receive it.
6 + Tst : Turn autoflush on onto the reader end of the pipe.
7 + Tst : Renamed IPCMTest to IPC::MorseSignals::TestSuite
8 + Tst : Prefix author tests by 9*-.
9 + Tst : New optional author test : 95-portability-files.t, that uses
10 Test::Portability::Files when it's present.
12 0.08 2007-09-05 09:40 UTC
13 + Chg : The sender detects now automatically if the message is encoded
14 in UTF-8, thanks to Encode::is_utf8. You no longer need to pass
15 the utf8 option to msend. The Encode module is a prerequisite.
16 + Chg : Tests that used to die now report correct failure.
17 + Fix : Tests are now strict.
18 + Fix : Miscount in t/13-speed.t
20 0.07 2007-08-28 11:30 UTC
21 + Chg : Common test code was factored into a module.
22 + Chg : Tests were lightened again.
25 0.06 2007-08-21 08:15 UTC
26 + Add : The protocol now carries the UTF-8 flag (hence you no longer
27 need to specify it to mrecv()) and the sender's PID (but you can
29 + Add : New functions : mreset(), mlastmsg(), mlastsender().
30 + Chg : msend() accepts now the sign option, to specify is the sender
31 can put its PID into the message packet or not (default is yes).
32 + Chg : mrecv() now returns a hash reference that holds the receiver's
33 state. %SIG has to be passed as the first argument. The callback
34 is no longer mandatory and should be passed with the cb key. The
36 + Chg : The tests call fork() only one time.
38 0.05 2007-08-18 16:50 UTC
39 + Add : m{send,recv} will croak() if any of their arguments is invalid.
40 + Chg : The requirements to pass the speed test were lowered.
42 + Fix : You can now send "0" as a valid message.
43 + Fix : I lied, t/02-sigusr.t wasn't really gone.
44 + Fix : while ($speed > 1) { $speed /= 2 } ok($speed >= 1); never fails.
46 0.04 2007-08-17 14:45 UTC
47 + Add : Test for SUGUSR{1,2} in Makefile.PL.
48 + Add : Unicode support. Enabled by passing utf8 => 1 to m{send,recv}.
49 + Chg : The speed must now be passed to msend() by speed => $speed.
50 + Chg : Tests no longer pass their result with pipes.
51 + Doc : <apeiron> Prof_Vince, 'truely' isn't a word.
52 + Fix : t/11-speed.t didn't fail properly (as if those tests don't fail
54 + Fix : t/02-sigusr.t didn't check properly the returned value.
56 0.03 2007-08-16 16:20 UTC
57 + Chg : Better t/10-base.t... Or at least, I hope so.
59 0.02 2007-08-16 15:55 UTC
60 + Add : samples/bench.pl, a transfer speed benchmark script.
61 + Add : New tests : t/02-sigusr.t, t/11-speed.t
62 + Fix : Warnings when the transfer fails.
63 + Doc : The protocol was documented.
65 0.01 2007-08-15 21:20 UTC
66 First version, released on an unsuspecting world.