blob: 98d60cb1c6166f4fa9eadeaaf84184362aa4309f [file] [log] [blame]
Vince Lehmanb722b102014-08-24 16:33:49 -05001Release Notes
Alexander Afanasyev7decbbf2014-08-24 21:29:01 -07002=============
Vince Lehmanb722b102014-08-24 16:33:49 -05003
Vince Lehman0ff5d452016-01-04 17:20:19 -06004NLSR version 0.2.2 (changes since version 0.2.1)
5++++++++++++++++++++++++++++++++++++++++++++++++
6
7Release date: January 5, 2016
8
9**Code changes**:
10
11- Adapt code to changes in NFD/ndn-cxx version 0.4.0 release
12
Vince Lehman5363c792015-06-26 15:25:38 -050013NLSR version 0.2.1 (changes since version 0.2.0)
14++++++++++++++++++++++++++++++++++++++++++++++++
15
16Release date: June 30, 2015
17
18**Code changes**:
19
20- Using a configuration file without ``prefix-update-validator`` disables runtime advertise/withdraw instead of exiting (:issue:`2814`)
21
22**Bug fixes**:
23
24- Prevent incomplete removal of NPT entry (:issue:`2785`)
25
26- Correct bidirectional links with differing costs (:issue:`2801`)
27
28- Fix non-incrementing Adjacency number in AdjLsa::writeLog (:issue:`2594`)
29
30- Remove FaceDestroyEvent test's reliance on nlsrSeqNo.txt (:issue:`2881`)
31
32- Test ACTIVE/INACTIVE Adjacencies in LSA construction (:issue:`2735`)
33
Vince Lehmande5560c2015-04-29 17:18:51 -050034NLSR version 0.2.0 (changes since version 0.1.0)
35++++++++++++++++++++++++++++++++++++++++++++++++
36
37Release date: April 30, 2015
38
39**Build**:
40
41- The code now requires C++11. The minimum supported gcc version is 4.6, as earlier versions do not have proper support for C++11 features. (:issue:`1930`)
42
43- Require OpenSSL (:issue:`2375`)
44
45**New features**:
46
47- Add nlsrc command-line tool (:issue:`1834`)
48
49- Advertise/Withdraw name prefixes at runtime (:issue:`1834`)
50
51- Assign zero cost to hyperbolic direct neighbors (:issue:`1975`)
52
53- Only hyperbolic costs are adjusted before registering (:issue:`1974`)
54
55- Add ability to specify different logging levels (:issue:`1935`)
56
57- Add LSDB dataset publishers (:issue:`2280`)
58
59- Add LSDB dataset tlv abstractions (:issue:`2280`)
60
61- Allow zero cost neighbors for hyperbolic routing table calculation (:issue:`1982`)
62
63- Faces are now created with canonical Face URI (:issue:`1911`)
64
65- Add configurable router event intervals (:issue:`2071`)
66
67- Add router-dead-interval configuration setting (:issue:`1878`)
68
69- Add log formatting specified by log4cxx configuration file (:issue:`1950`)
70
71- Face URIs in configuration file are checked for validity on load (:issue:`2070`)
72
73- Configuration variables with default values are now optional (:issue:`1949`)
74
75- Recalculate routing table after face destroy event (:issue:`2635`)
76
77- Add Travis-CI build script
78
79**Code changes**:
80
81- Change adjacency status from uint32_t to enum (:issue:`1946`)
82
83- Remove scheduler from NLSR class (:issue:`1981`)
84
85- Change hyperbolic cost adjustment factor from 100 to 1000 (:issue:`1974`)
86
87- Remove use of outdated namespace ``ndn::Tlv`` (:issue:`2079`)
88
89- Remove use of deprecated ``ndn::nfd::Controller(Face&)`` constructor (:issue:`2133`)
90
91- Routing update publishing is abstracted to SyncLogicHandler (:issue:`2289`)
92
93- Make ConfParameter variable types consistent with min and max values (:issue:`2084`)
94
95- Replace LSA string literals with constants (:issue:`2310`)
96
97- Subscribe to FaceMonitor notifications using connect (:issue:`2350`)
98
99- Log exceptions thrown in event loop
100
101- Change ``ndn::ptr_lib::shared_ptr`` to ``std::shared_ptr`` (:issue:`2110`)
102
103- Avoid deprecated ``ndn::Name::set`` method (:issue:`2505`)
104
105- Update waf to version 1.8.8-dev
106
107- Add sorting tiebreaker to NexthopList (:issue:`2715`)
108
109- Update Jenkins-CI build scripts
110
111**Bug fixes**:
112
113- Fix python3 build error (:issue:`1956`)
114
115- Fix typos in nlsr.conf security section (:issue:`1985`)
116
117- Stop SyncLogicHandler from fetching a router’s own LSAs (:issue:`2005`)
118
119- Fix Name LSA comparison which could cause incorrect advertised names to be removed (:issue:`2029`)
120
121- Fix issue where more faces than max-faces-per-prefix could be applied to a prefix (:issue:`2018`)
122
123- Stop LSDB from retrieving and out of date LSA when a new one is detected (:issue:`1987`)
124
125- Correct mistakes in documentation
126
127- Correct bitmask used to copy Name LSA sequence number (:issue:`2323`)
128
Alexander Afanasyev7decbbf2014-08-24 21:29:01 -0700129NLSR version 0.1.0 (initial release)
130++++++++++++++++++++++++++++++++++++
Vince Lehmanb722b102014-08-24 16:33:49 -0500131
Alexander Afanasyev7decbbf2014-08-24 21:29:01 -0700132Release date: August 25, 2014
Vince Lehmanb722b102014-08-24 16:33:49 -0500133
Alexander Afanasyev7decbbf2014-08-24 21:29:01 -0700134The main design goal of NLSR is to provide a routing protocol to populate `NFD's
135<http://named-data.net/doc/NFD/current/>`_ RIB. NLSR calculates the routing table using
136link-state or hyperbolic routing and produces multiple faces for each reachable name
137prefix in a single authoritative domain.
Vince Lehmanb722b102014-08-24 16:33:49 -0500138
Alexander Afanasyev7decbbf2014-08-24 21:29:01 -0700139**Included features**:
Vince Lehmanb722b102014-08-24 16:33:49 -0500140
Junxiao Shif09e2632015-01-02 18:15:01 -0700141- Advertise availability of content through the configured router
Vince Lehmanb722b102014-08-24 16:33:49 -0500142
Alexander Afanasyev7decbbf2014-08-24 21:29:01 -0700143- Use `ChronoSync <https://github.com/named-data/ChronoSync>`_ to synchronize routers' LSA sequence numbers and Interest/Data to retrieve LSAs
Vince Lehmanb722b102014-08-24 16:33:49 -0500144
Junxiao Shif09e2632015-01-02 18:15:01 -0700145- Produce a list of ranked forwarding options for each name prefix to facilitate NDN's adaptive forwarding strategies
Vince Lehmanb722b102014-08-24 16:33:49 -0500146
Junxiao Shif09e2632015-01-02 18:15:01 -0700147- Configure maximum number of faces per prefix in NFD’s RIB
Vince Lehmanb722b102014-08-24 16:33:49 -0500148
Junxiao Shif09e2632015-01-02 18:15:01 -0700149- Set up NFD tunnels to neighbors automatically and maintain the tunnels to neighbors
Vince Lehmanb722b102014-08-24 16:33:49 -0500150
Junxiao Shif09e2632015-01-02 18:15:01 -0700151- Provide two routing protocols:
Vince Lehmanb722b102014-08-24 16:33:49 -0500152
Junxiao Shif09e2632015-01-02 18:15:01 -0700153 + Link State routing: calculate route cost based on link costs
154 + Hyperbolic routing: calculate route cost based on hyperbolic coordinates
Vince Lehmanb722b102014-08-24 16:33:49 -0500155
Alexander Afanasyev7decbbf2014-08-24 21:29:01 -0700156- Use a hierarchical trust model for routing within a single administrative domain
Vince Lehmanb722b102014-08-24 16:33:49 -0500157
Junxiao Shif09e2632015-01-02 18:15:01 -0700158- Keep NFD’s RIB updated on failure and recovery