Ashlesh Gawande | 9e955bc | 2017-11-30 17:33:03 -0600 | [diff] [blame] | 1 | NLSR version 0.2.0 (changes since version 0.1.0) |
| 2 | ++++++++++++++++++++++++++++++++++++++++++++++++ |
| 3 | |
| 4 | Release date: April 30, 2015 |
| 5 | |
| 6 | **Build**: |
| 7 | |
| 8 | - 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`) |
| 9 | |
| 10 | - Require OpenSSL (:issue:`2375`) |
| 11 | |
| 12 | **New features**: |
| 13 | |
| 14 | - Add nlsrc command-line tool (:issue:`1834`) |
| 15 | |
| 16 | - Advertise/Withdraw name prefixes at runtime (:issue:`1834`) |
| 17 | |
| 18 | - Assign zero cost to hyperbolic direct neighbors (:issue:`1975`) |
| 19 | |
| 20 | - Only hyperbolic costs are adjusted before registering (:issue:`1974`) |
| 21 | |
| 22 | - Add ability to specify different logging levels (:issue:`1935`) |
| 23 | |
| 24 | - Add LSDB dataset publishers (:issue:`2280`) |
| 25 | |
| 26 | - Add LSDB dataset tlv abstractions (:issue:`2280`) |
| 27 | |
| 28 | - Allow zero cost neighbors for hyperbolic routing table calculation (:issue:`1982`) |
| 29 | |
| 30 | - Faces are now created with canonical Face URI (:issue:`1911`) |
| 31 | |
| 32 | - Add configurable router event intervals (:issue:`2071`) |
| 33 | |
| 34 | - Add router-dead-interval configuration setting (:issue:`1878`) |
| 35 | |
| 36 | - Add log formatting specified by log4cxx configuration file (:issue:`1950`) |
| 37 | |
| 38 | - Face URIs in configuration file are checked for validity on load (:issue:`2070`) |
| 39 | |
| 40 | - Configuration variables with default values are now optional (:issue:`1949`) |
| 41 | |
| 42 | - Recalculate routing table after face destroy event (:issue:`2635`) |
| 43 | |
| 44 | - Add Travis-CI build script |
| 45 | |
| 46 | **Code changes**: |
| 47 | |
| 48 | - Change adjacency status from uint32_t to enum (:issue:`1946`) |
| 49 | |
| 50 | - Remove scheduler from NLSR class (:issue:`1981`) |
| 51 | |
| 52 | - Change hyperbolic cost adjustment factor from 100 to 1000 (:issue:`1974`) |
| 53 | |
| 54 | - Remove use of outdated namespace ``ndn::Tlv`` (:issue:`2079`) |
| 55 | |
| 56 | - Remove use of deprecated ``ndn::nfd::Controller(Face&)`` constructor (:issue:`2133`) |
| 57 | |
| 58 | - Routing update publishing is abstracted to SyncLogicHandler (:issue:`2289`) |
| 59 | |
| 60 | - Make ConfParameter variable types consistent with min and max values (:issue:`2084`) |
| 61 | |
| 62 | - Replace LSA string literals with constants (:issue:`2310`) |
| 63 | |
| 64 | - Subscribe to FaceMonitor notifications using connect (:issue:`2350`) |
| 65 | |
| 66 | - Log exceptions thrown in event loop |
| 67 | |
| 68 | - Change ``ndn::ptr_lib::shared_ptr`` to ``std::shared_ptr`` (:issue:`2110`) |
| 69 | |
| 70 | - Avoid deprecated ``ndn::Name::set`` method (:issue:`2505`) |
| 71 | |
| 72 | - Update waf to version 1.8.8-dev |
| 73 | |
| 74 | - Add sorting tiebreaker to NexthopList (:issue:`2715`) |
| 75 | |
| 76 | - Update Jenkins-CI build scripts |
| 77 | |
| 78 | **Bug fixes**: |
| 79 | |
| 80 | - Fix python3 build error (:issue:`1956`) |
| 81 | |
| 82 | - Fix typos in nlsr.conf security section (:issue:`1985`) |
| 83 | |
| 84 | - Stop SyncLogicHandler from fetching a router’s own LSAs (:issue:`2005`) |
| 85 | |
| 86 | - Fix Name LSA comparison which could cause incorrect advertised names to be removed (:issue:`2029`) |
| 87 | |
| 88 | - Fix issue where more faces than max-faces-per-prefix could be applied to a prefix (:issue:`2018`) |
| 89 | |
| 90 | - Stop LSDB from retrieving and out of date LSA when a new one is detected (:issue:`1987`) |
| 91 | |
| 92 | - Correct mistakes in documentation |
| 93 | |
| 94 | - Correct bitmask used to copy Name LSA sequence number (:issue:`2323`) |