Collage  1.6.0
High-performance C++ library for developing object-oriented distributed applications.
 All Pages
Changelog.md
1 # Changelog {#Changelog}
2 
3 # git master
4 
5 # Release 1.6 (09-12-2016)
6 
7 * [192](https://github.com/Eyescale/Collage/pull/192)
8  Add remote launch capability
9 
10 # Release 1.5 (30-Jul-2016)
11 
12 * [188](https://github.com/Eyescale/Collage/pull/188)
13  Improved robustness in RDMA connection estalishment to account for variations
14  of behaviour in librdmacm.
15 * [186](https://github.com/Eyescale/Collage/pull/186)
16  Obsolete SDP connection removed.
17 
18 * [192](https://github.com/Eyescale/Collage/pull/192):
19  Add remote node launch API and implementation
20 
21 # Release 1.4 (11-Mar-2016)
22 
23 * [172](https://github.com/Eyescale/Collage/pull/172):
24  Add support to distribute servus::Serializable (ZeroBuf) objects
25 
26 # Release 1.3 (3-Nov-2015)
27 
28 * [164](https://github.com/Eyescale/Collage/pull/164): Implement
29  OS-chosen port number for RSP
30 * [160](https://github.com/Eyescale/Collage/pull/160): Replace command
31  queue and barrier timeout exceptions with return values
32 
33 # Release 1.2 (7-Jul-2015)
34 
35 * [142](https://github.com/Eyescale/Collage/pull/142): Expose addConnection()
36  for local server connections in Equalizer
37 * [143](https://github.com/Eyescale/Collage/pull/143),
38  [144](https://github.com/Eyescale/Collage/pull/144),
39  [152](https://github.com/Eyescale/Collage/pull/152): Denoise log output
40 * [147](https://github.com/Eyescale/Collage/pull/147): Adapt to
41  Lunchbox/Pression refactoring
42 
43 # Release 1.1 (7-Aug-2014)
44 
45 * [69](https://github.com/Eyescale/Collage/pull/69): Refactor Barrier API for
46  robustness, deprecate old API
47 * [71](https://github.com/Eyescale/Collage/issues/71): BufferCache race may lead
48  to segmentation fault
49 * [79](https://github.com/Eyescale/Collage/issues/79): Node::connect race
50  condition
51 * [82](https://github.com/Eyescale/Collage/issues/82): Barrier races and
52  deadlocks with sync()
53 * [88](https://github.com/Eyescale/Collage/issues/88): LocalNode::handleData()
54  asserts handling non-pending receive
55 * [112](https://github.com/Eyescale/Collage/pull/112): Fix racy connection
56  handshake
57 * [113](https://github.com/Eyescale/Collage/pull/113): De-race
58  EventConnection::close to fix Travis
59 
60 # Release 1.0 (24-Jun-2013)
61 
62 * 07/Mar/2013: PluginRegistry, Plugin and compressors are moved to
63  Lunchbox. co::Global still maintains the global Collage plugin
64  registry.
65 
66 * 11/Feb/2013: Node::useMulticast has been renamed to getMulticast. This
67  method, and the previous getMulticast have been made protected.
68  Node::getConnection has a flag to prefer a multicast connection.
69 
70 * 28/Jan/2013: The program name and working directory have been moved
71  from co::Global to eq::Global.
72 
73 * 06/Sep/2012: New stream-based commands supersedes packet-based
74  messaging. New send() methods in co::Node & co::Object replaces old
75  API. All packets are superseded by NodeOCommand & ObjectOOCommand for
76  sending commands, and by Command & ObjectCommand for receiving
77  commands.
78 
79 * 09/Aug/2012: Made co::DataOStream::write private. Use 'os <<
80  co::Array< T >( ptr, num )' instead.
81 
82 * 27/Jul/2012: Made co::DataIStream::read private. Use 'is >> co::Array<
83  T >( ptr, num )' instead.