forked from haskell-distributed/distributed-process
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
98 lines (66 loc) · 3.14 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
2013-01-27 Tim Watson <[email protected]> 0.4.2
* Improved exception handling for deferred type checked exit reasons
* Add matchChan primitive (thanks Simon Marlow)
* Expose deferred message handling/checking for AbstractMessage
* Add `getProcessInfo' API
* Add `trace' API backed by the GHC eventlog
2012-11-22 Edsko de Vries <[email protected]> 0.4.1
* Make behaviour of 'register' more Erlang-like (register will now fail if the
name is already registered). Patch by Jeff Epstein.
* Functor, Applicative, Alternative and Monad instances for ReceivePort
* Add support for receiveChanTimeout
* Improved documentation
* Avoid name clashes in the TH generation for closures
* Relax package bounds to allow for Binary 0.6
2012-10-23 Edsko de Vries <[email protected]> 0.4.0.2
* Fix race condition in spawn
2012-10-04 Edsko de Vries <[email protected]> 0.4.0.1
* Relax package boundaries
2012-10-03 Edsko de Vries <[email protected]> 0.4.0
* Improved treatment of network failure, using new failure semantics of
Network.Transport.
* Make NodeId Typeable
* Extend Template Haskell support with "remotableDec" so that you can refer to
$(mkClosure 'f) within the body of "f".
* Fix bug in spawnChannelLocal
* Numerous memory leaks plugged
* Relax upper bound on dependency on 'network'
* New primitive 'matchAny'
* Remove 'whereisRemote' (see comment of 'whereisRemoteAsync')
2012-08-16 Edsko de Vries <[email protected]> 0.3.1
* Fix memory leaks
* Make Template Haskell support optional
* Relax dependency constraints
2012-08-07 Edsko de Vries <[email protected]> 0.3.0
* Extract 'static' into a separate package (C.D.Static)
* Use new package rank1dynamic to proper runtime checks for polymorphic values
2012-08-02 Edsko de Vries <[email protected]> 0.2.3.0
* Expose the constructors of Closure
* Add instance (Typeable a => Serializable (Static a)) and make sure we only
use the internal representation of Static where really necessary
* Improved docs
2012-07-31 Edsko de Vries <[email protected]> 0.2.2.0
* Add exception handling primitives
* Fix runProcess: if the process threw an exception, a 'waiting indefinitely on
MVar' exception would be thrown.
2012-07-21 Edsko de Vries <[email protected]> 0.2.1.4
* Bugfix in the node controller
(one way this bug materialized: when using the SimpleLocalnet backend,
slave nodes could not be reused)
* Improved documentation in Control.Distributed.Process.Closure
2012-07-20 Edsko de Vries <[email protected]> 0.2.1.3
* Improve docs
* Local versions of spawn
2012-07-16 Edsko de Vries <[email protected]> 0.2.1.2
* Base 4.6 compatibility
* Relax constraints on bytestring and containers
2012-07-16 Edsko de Vries <[email protected]> 0.2.1.1
* Relax upper bound on 'time' dependency
2012-07-11 Edsko de Vries <[email protected]> 0.2.1
* Complete redesign of the underlying implementation of static values and
closures.
* Add support for 'spawnChannel'
2012-07-09 Edsko de Vries <[email protected]> 0.2.0.1
* Bugfix: Continue processing messages when a connection breaks.
2012-07-07 Edsko de Vries <[email protected]> 0.2.0
* Initial release.