forked from haskell-distributed/distributed-process
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
136 lines (98 loc) · 4.71 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
2014-12-09 Tim Watson <[email protected]> 0.5.2
* Fix docstring for `register`
* Added Data instance to ProcessId, LocalProcessId and NodeId
* Add static serialiation dictionary for 'Static', for completeness
* Add Closure static serialization dictionary
* Replacement for modifyMVarMasked for GHC <= 7.4
* Document the use of built-in trace flags
* Make forkProcess exception-safe
* Make -Wall clean
2014-08-13 Tim Watson <[email protected]> 0.5.1
* Fix cabal docs (thanks Markus Barenhoff)
* Expose lifted version of Control.Exception.mask_ (thanks Alexander Vershilov)
2014-05-30 Tim Watson <[email protected]> 0.5.0
* Dependency on STM implicitly changed from 1.3 to 1.4, but was not reflected in the cabal file
* Race condition in local monitoring when using call
* mask now works correctly if unmask is called by another process
* Improve efficiency of local message passing
* nsend uses local communication channels
* Link Node Controller and Network Listener
* Label spawned processes using labelThread
* Relaxed upper bound on syb in the cabal manifest
* Bump binary version to include 0.7.*
* Exposed process info
* Exposed node statistics
* Moved tests to https://github.com/haskell-distributed/distributed-process-tests
* Added "polymorphic expect"
* Exposed Message type and broaden scope of polymorphic expect
* Added Management API (for working with internal/system events)
* Tracing can no longer be disabled
* We now report node statistics for monitoring/management
* Node.runProcess now propagates exceptions to its caller
* Added simple micro benchmarks
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.