forked from eresh03/MaidSafe-DHT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog.txt
78 lines (68 loc) · 3.12 KB
/
ChangeLog.txt
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
v0.33.00 (WIP)
--------------
v0.32.00
--------
* Fix for demo ignoring --bootstrap parameter.
* Porting ReadContactsFromFile fix.
* OSX compatibility.
* Updated Contact serialise/parse methods to use ios::binary.
* Updated logging macro.
* Contact serialisation and other changes for rudp.
* Bugfix to RPcs test.
* Added install_fast target to maidsafe-dht.
* Various changes to match updated Common functions and to make use of C++11 features.
v0.31.07
--------
* Matching the new AlternativeStore API.
* Updated Contact serialization to encode PublicKey to Base32.
* Fix for a couple of for loop conditions.
* Updated ctest config file in sync with project name change.
v0.31.06
--------
* Changed to match updated CMake modules.
* Fixed ambiguous namespace alias.
* Added setters for RSA functors.
* KademliaDemo fixed to be able to start on given port range.
* Updated to use RSA instead of Securifier
v0.31.05 (2011-11-02)
--------------
* RPCs changed to use the credentials passed in the securifier instead of
always using the default one.
* Fix for StoreRefreshMultipleRequests and DeleteRefreshMultipleRequests
test failures.
* Fixes bug in HandleDeleteToSelf that occasionally caused boost assertion
failure.
* Additional NodeImpl unit tests and fixes for RemoveDownlistedContacts,
AssessLookupState & InsertCloseContacts.
* Using Random in place of SRandom.
v0.31.03
--------
* Bootstrap changed to accept empty bootstrap list, or a list containing only
joining node's details. These cause the node to create a new network.
* Most Node methods now call back with kNotJoined if node not joined.
* If node not joined, it now doesn't responds to incoming requests.
* Significant rework of iterative lookup process.
* Implemented Downlist functionality.
* Implemented StoreRefresh and DeleteRefresh functionality.
* FindValue now returns kSuccess only if the value was found. If an alternative
store holder was found, returns kFoundAlternativeStoreHolder. If closest
contacts are returned, kFailedToFindValue is returned. These codes are >= 0.
Any other return code will be negative and will indicate failure.
* Own contact is now considered during lookups. This means that it can be
returned by FindNodes, FindValue, GetContact and that Store, Delete and Update
will operate on the node initiating the request.
* Own contact can also be returned as the "needs_cache_copy" Contact.
* FindValue and FindNodes can look for > k contacts if required.
* Created OrderedContacts typedef (set of Contacts ordered by closeness to a
target ID).
* Added methods for constructing an OrderedContacts instance.
* Devolved some of the signature validation from DataStore to Service.
* Changed Transport MessageHandler to handle uninitialised messages.
* Changed Kademlia MessageHandler to handle uninitialised messages.
* Added error logging to NodeImpl, SenderTask, and Kad Service.
* Switched off reuse_address for TCP connections.
* Removed DataStore for client-only nodes.
* Routing Table now updates contacts' details if they change.
* Better handling of second node joining existing network of one.
* Various work on NodeContainer.
* Various test fixes.