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