|
| 1 | +--- |
| 2 | +layout: changelog |
| 3 | +title: distributed-process-0.5.0 |
| 4 | +status: Released |
| 5 | +date: Wen May 28 12:15:02 UTC 2014 |
| 6 | +version: 0.5.0 |
| 7 | +commits: distributed-process-0.4.2...master |
| 8 | +hackage: https://hackage.haskell.org/package/distributed-process |
| 9 | +release: https://cloud-haskell.atlassian.net/browse/DP/fixforversion/10008 |
| 10 | +feed_url: https://cloud-haskell.atlassian.net/sr/jira.issueviews:searchrequest-rss/temp/SearchRequest.xml?jqlQuery=project+%3D+DP+AND+status+%3D+Closed+AND+fixVersion+%3D+0.5.0&tempMax=1000 |
| 11 | +--- |
| 12 | +--------- |
| 13 | +<h4>Notes</h4> |
| 14 | + |
| 15 | +This is a full feature release containing important enhancements to inter-process messaging, |
| 16 | +process and node management, debugging and tracing. Various bug-fixes have also been made. |
| 17 | + |
| 18 | +<h5><b>Highlights</b></h5> |
| 19 | + |
| 20 | +New advanced messaging APIs provide broader polymorphic primitives for receiving and processing message |
| 21 | +regardless of the underlying (when decoded) types. Extended exit handling capabilities have been added, |
| 22 | +to facilitate processing *exit signals* when the *exit reason* could be represented by a variety of |
| 23 | +underlying types. |
| 24 | + |
| 25 | +The performance of inter-process messaging has been optimised for intra-node use cases. Messages are no |
| 26 | +longer sent over the network-transport infrastructure when the receiving process resides on the same node |
| 27 | +as the sender. New `unsafe` APIs have been made available to allow code that uses intra-node messaging to |
| 28 | +skip the serialization of messages, facilitating further performance benefits at the risk of altered |
| 29 | +error handling semantics. More details are available in the [`UnsafePrimitives` documentation][1]. |
| 30 | + |
| 31 | +A new [*Management API*][2] has been added, giving user code the ability to receive and respond to a running |
| 32 | +node's internal system events. The tracing and debugging support added in 0.4.2 has been [upgraded][3] to use |
| 33 | +this API, which is more efficient and flexible. |
| 34 | + |
| 35 | +--------- |
| 36 | + |
| 37 | +<h4>Bugs</h4> |
| 38 | +<ul> |
| 39 | +<li>[<a href='https://cloud-haskell.atlassian.net/browse/DP-68'>DP-68</a>] - Dependency on STM implicitly changed from 1.3 to 1.4, but was not reflected in the .cabal file</li> |
| 40 | +<li>[<a href='https://cloud-haskell.atlassian.net/browse/DP-79'>DP-79</a>] - Race condition in local monitoring when using `call`</li> |
| 41 | +<li>[<a href='https://cloud-haskell.atlassian.net/browse/DP-94'>DP-94</a>] - mask does not work correctly if unmask is called by another process</li> |
| 42 | +</ul> |
| 43 | + |
| 44 | +<h4>Improvements</h4> |
| 45 | +<ul> |
| 46 | +<li>[<a href='https://cloud-haskell.atlassian.net/browse/DP-20'>DP-20</a>] - Improve efficiency of local message passing</li> |
| 47 | +<li>[<a href='https://cloud-haskell.atlassian.net/browse/DP-77'>DP-77</a>] - nsend should use local communication channels</li> |
| 48 | +<li>[<a href='https://cloud-haskell.atlassian.net/browse/DP-39'>DP-39</a>] - Link Node Controller and Network Listener</li> |
| 49 | +<li>[<a href='https://cloud-haskell.atlassian.net/browse/DP-62'>DP-62</a>] - Label spawned processes using labelThread</li> |
| 50 | +<li>[<a href='https://cloud-haskell.atlassian.net/browse/DP-85'>DP-85</a>] - Relax upper bound on syb in the cabal manifest</li> |
| 51 | +<li>[<a href='https://cloud-haskell.atlassian.net/browse/DP-78'>DP-78</a>] - Bump binary version to include 0.7.*</li> |
| 52 | +<li>[<a href='https://cloud-haskell.atlassian.net/browse/DP-91'>DP-91</a>] - Move tests to https://github.com/haskell-distributed/distributed-process-tests</li> |
| 53 | +<li>[<a href='https://cloud-haskell.atlassian.net/browse/DP-92'>DP-92</a>] - Expose process info</li> |
| 54 | +<li>[<a href='https://cloud-haskell.atlassian.net/browse/DP-92'>DP-92</a>] - Expose node statistics</li> |
| 55 | +</ul> |
| 56 | + |
| 57 | +<h4>New Features</h4> |
| 58 | +<ul> |
| 59 | +<li>[<a href='https://cloud-haskell.atlassian.net/browse/DP-7'>DP-7</a>] - Polymorphic expect (see details <a href='https://hackage.haskell.org/package/distributed-process-0.5.0/docs/Control-Distributed-Process.html#g:5'>here</a>)</li> |
| 60 | +<li>[<a href='https://cloud-haskell.atlassian.net/browse/DP-57'>DP-57</a>] - Expose Message and broaden the scope of polymorphic expect</li> |
| 61 | +<li>[<a href='https://cloud-haskell.atlassian.net/browse/DP-84'>DP-84</a>] - Provide an API for working with internal (system) events</li> |
| 62 | +<li>[<a href='https://cloud-haskell.atlassian.net/browse/DP-83'>DP-83</a>] - Report node statistics for monitoring/management</li> |
| 63 | +</ul> |
| 64 | + |
| 65 | + |
| 66 | +[1]: https://hackage.haskell.org/package/distributed-process-0.5.0/docs/Control-Distributed-Process-UnsafePrimitives.html |
| 67 | +[2]: https://hackage.haskell.org/package/distributed-process-0.5.0/docs/Control-Distributed-Process-Management.html |
| 68 | +[3]: https://hackage.haskell.org/package/distributed-process-0.5.0/docs/Control-Distributed-Process-Debug.html |
0 commit comments