Changes since version 0.3.4

  **NOTE**

  Version 0.4.0 introduces several breaking changes to API and wire
  format of management protocols

New features:

- (BREAKING CHANGE) LocalControlHeader for special signaling between
  application and NFD has been replaced with NDNLPv2 signaling
  (Issues 2879, 2930)
- NDNLPv2 Network NACK support in Face abstraction (Issue 2930)
- (BREAKING CHANGE) FacePersistency field added to API and wire format
  of ControlParameters abstraction (Issue 2991)
- (BREAKING CHANGE) NACK counters added to ForwarderStatus and
  FaceStatus datasets (Issue 3174)
- Backport C++14 std::make_unique (Issue 3093)
- Emulate std::to_string on platforms that do not provide it (Issue 2743)

Improvements and bug fixes:

- Fix bug causing failure of Face if there is a large delay between
  construction of Face and calling processEvents (Issues 2742, 2526)
- Cache Link object after the first call to getLink (Issue 3158)
- Minor documentation updates (Issues 3207, 3210, 3221)

Deprecated:

- Overloads of Face::registerPrefix and Face::setInterestFilter that
  do not accept SigningInfo parameter (Issue 2932)

Removed:

- Deprecated EventEmitter class (Issue 2351)

Planned features for future releases:

- Introduce new API to simplify security transformations (Issue 3009)
- NDN trust schema as a description of application trust model, which
  can help automate data and interest packet signing and
  authentication (Issue 2829)
- Refactored KeyChain abstraction (Issue 2926)
  1. 8f5cbdc Fix int vs. ssize_t type confusion by Davide Pesavento · 9 years ago
  2. f2a4622 docs: API documentation fixes by Alexander Afanasyev · 9 years ago
  3. 18cf81b docs: fix several doxygen errors by Davide Pesavento · 9 years ago
  4. 73e3004 docs: Correct copyright statements by Alexander Afanasyev · 9 years ago
  5. 95bd96a management: NACK counters by Eric Newberry · 9 years ago
  6. 4448d29 block: Add constructor to create sub-blocks using the underlying buffer by Alexander Afanasyev · 9 years ago
  7. 0d2ed2e Enhance exception throwing with Boost Exception library by Spyridon Mastorakis · 9 years ago
  8. ea38294 security: Add AdditionalInfo into SignatureInfo by Yingdi Yu · 9 years ago
  9. 7a81389 security: Add ValidityPeriod abstraction by Yingdi Yu · 9 years ago
  10. a3d9fc0 encoding: Block::remove now removes all subelements of type by Eric Newberry · 9 years ago
  11. 7476ebf encoding: Block::insert by Joao Pereira · 9 years ago
  12. 9c2a9a8 encoding: move Block methods to .cpp by Joao Pereira · 9 years ago
  13. 8868140 Add `noexcept` to move constructors and move assignment operators by Junxiao Shi · 9 years ago
  14. d5c48e0 encoding: Improving structure and documentation of block helpers by Alexander Afanasyev · 9 years ago
  15. 117f5ef encoding: Remove SCOPE from Interests and all references to it in the related code by Alexander Afanasyev · 9 years ago
  16. 3b54e85 link: add Link abstraction by Spyridon Mastorakis · 9 years ago
  17. f0da789 encoding: Block::fromStream TLV-LENGTH bugfix by Junxiao Shi · 9 years ago
  18. 1a750b4 encoding: mark DEPRECATED on Block::fromBuffer overloads with output parameter by Junxiao Shi · 10 years ago
  19. 02a4bf3 encoding: change Block::fromBuffer return type by Junxiao Shi · 10 years ago
  20. df5927e encoding/meta-info: Delete deprecated MetaInfo::TYPE_* by Spyridon Mastorakis · 10 years ago
  21. c759a20 management: add CachingPolicy to LocalControlHeader by Jiewen Tan · 10 years ago
  22. 7463389 encoding: Refactoring EncodingBuffer by Alexander Afanasyev · 10 years ago
  23. 2398911 encoding: delete deprecated Block(std::istream&) constructor by Junxiao Shi · 10 years ago
  24. af99f46 src: Update copyright notices for files modified in 2015 by Alexander Afanasyev · 10 years ago
  25. 81a6c5d encoding: ensure Block is move constructible and assignable by Junxiao Shi · 10 years ago
  26. c97d5d4 encoding: ensure Buffer is move constructible and assignable by Junxiao Shi · 10 years ago
  27. 65f1a71 management: ensure Element::Error inherits from tlv::Error by Junxiao Shi · 10 years ago
  28. a464b92 meta-info: deprecate MetaInfo::TYPE_* constants by Junxiao Shi · 10 years ago
  29. 6486d52 name: Add support for ImplicitSha256DigestComponent by Alexander Afanasyev · 10 years ago
  30. eb6ddc7 encoding: delete deprecated tlv::ConentType by Junxiao Shi · 10 years ago
  31. 468abc3 encoding: move MAX_NDN_PACKET_SIZE constant by Junxiao Shi · 10 years ago
  32. dfe9c6b Always build in C++11 mode. by Davide Pesavento · 10 years ago
  33. 4c53b0f encoding: add missing include in nfd-constants.hpp by Junxiao Shi · 10 years ago
  34. be54451 encoding: delete deprecated namespace ndn::Tlv by Junxiao Shi · 10 years ago
  35. fc8aebb management: add FaceQueryFilter type by Chengyu Fan · 10 years ago
  36. 36dca99 management: replace FaceFlags with individual fields by Chengyu Fan · 10 years ago
  37. bc5030d key-locator: KeyDigest by Junxiao Shi · 10 years ago
  38. d1de397 encoding: Adding missing include by Alexander Afanasyev · 10 years ago
  39. 0866f51 face: Add ability to specify RIB flags for setInterestFilter and registerPrefix by Alexander Afanasyev · 10 years ago
  40. 54ce668 all: rename Tlv namespace to tlv for consistency by Steve DiBenedetto · 10 years ago
  41. 6a05b4b transport: Serialize socket write operations by Alexander Afanasyev · 10 years ago
  42. dbf3f70 management: Add RibEntry and Route data structures by Vince Lehman · 10 years ago
  43. 13e637f management: link-layer byte counts in FaceStatus by Junxiao Shi · 10 years ago
  44. 9d9d599 security: Enable exporting/importing ECDSA key by Yingdi Yu · 10 years ago
  45. ebfa4cb security: Add SignatureSha256WithEcdsa by Yingdi Yu · 10 years ago
  46. 197e565 data: Optimize Data signing by Alexander Afanasyev · 10 years ago
  47. e881e93 interest: Correcting encoding/decoding of Nonce field by Alexander Afanasyev · 10 years ago
  48. c169a81 src: Switching to LGPL 3.0 license by Alexander Afanasyev · 10 years ago
  49. 4671bf7 management: Implementing ChannelStatus and StrategyChoice dataset abstractions by Alexander Afanasyev · 10 years ago
  50. 9c57818 src: Making use of DEPRECATED macro and updating library code not to use deprecated methods by Alexander Afanasyev · 10 years ago
  51. 258ec2b src: Refactoring common.hpp and minimizing exposed includes by Alexander Afanasyev · 10 years ago
  52. 770827c docs: Updating doxygen comments and minor update to normalize API by Alexander Afanasyev · 10 years ago
  53. f73f063 src: Removing unnecessary use of cref() in concert with make_shared by Alexander Afanasyev · 10 years ago
  54. b67090a build+tests: Fixing c++11 mode compilation and correcting integrated test with faces by Alexander Afanasyev · 10 years ago
  55. dfa52c4 docs: Updating documentation and license boilerplates in all files by Alexander Afanasyev · 10 years ago
  56. 2a7f720 exceptions: Make Tlv::Error a base class for all packet-processing exceptions by Alexander Afanasyev · 10 years ago
  57. 632e057 encoding: Initialized uninitialized variables to resolve the build issue referenced by Mickey Sweatt · 10 years ago
  58. 5f6c74f management: NFD RIB Management by Junxiao Shi · 10 years ago
  59. e52f4ef encoding: Deriving Block::Error from Tlv::Error by Yingdi Yu · 10 years ago
  60. fdbfc6d src: Improving consistency and correcting code style by Alexander Afanasyev · 10 years ago
  61. 07ffe0d encoding: silence gcc-4.8 overflow warnings. by Davide Pesavento · 10 years ago
  62. b78bc4d build: add -std=c++03 (in non C++11 mode) and -pedantic to the default CXXFLAGS by Alexander Afanasyev · 10 years ago
  63. af8eeea interest: Interest::matchesData function by Junxiao Shi · 10 years ago
  64. 482ccc5 build: suppress CryptoPP warnings by Junxiao Shi · 10 years ago
  65. 7b1ba1a management: add LocalUri field to nfd::FaceStatus and nfd::FaceEventNotification by Junxiao Shi · 10 years ago
  66. 5109dee management: nfd::ForwarderStatus by Junxiao Shi · 10 years ago
  67. 21ef239 encoding: fix strict-aliasing warning and extending TLV test cases by Alexander Afanasyev · 10 years ago
  68. 1dd95c5 src: Enabling -Werror in debug mode and some style updates by Alexander Afanasyev · 10 years ago
  69. a465e97 src: Code style corrections in Block and Buffer by Alexander Afanasyev · 10 years ago
  70. bc19b37 management: nfd::ControlParameters by Junxiao Shi · 10 years ago
  71. 937aa78 decoding+transport: Exception-safe Block parsing by Alexander Afanasyev · 10 years ago
  72. 2c75331 management: Adding FaceFlags into nfd::FaceEventNotification by Alexander Afanasyev · 10 years ago
  73. 63ab084 encoding: Fixing bug in one of the Block constructors by Alexander Afanasyev · 10 years ago
  74. 44b438a management: Adding nfd::FaceEventNotification data structure by Alexander Afanasyev · 10 years ago
  75. aa0e7da all: Refactoring work with time using boost::chrono by Alexander Afanasyev · 10 years ago
  76. 28908b7 management: NFD Status by Junxiao Shi · 10 years ago
  77. f8cf188 tlv: added FIB enumeration protocol TLVs by Steve DiBenedetto · 10 years ago
  78. 7d160f2 nfdc: strategy-choice, Adding StrategyChoiceManagementOptions by hilata · 10 years ago
  79. c145d49 tlv, name: add missing FaceEventKind TLV, deprecate Name::appendVersion/Segment by Steve DiBenedetto · 10 years ago
  80. 7dedbf4 tlv: added FaceStatus event TLV types by Steve DiBenedetto · 11 years ago
  81. 2d0b457 encoding: Ensuring minimal-length encoding for nonNegativeInteger by Alexander Afanasyev · 11 years ago
  82. 8dceb1d security: Export/Import Identity from/into KeyChain by Yingdi Yu · 11 years ago
  83. a99e37e management: nfdc support and link error fix by hilata · 11 years ago
  84. 5964fb7 management: Making LocalControlHeader encoding independent of Interest/Data wire by Alexander Afanasyev · 11 years ago
  85. 0553cd5 management: Implementing nrd::PrefixRegOptions for NRD Face management protocol by Alexander Afanasyev · 11 years ago
  86. 6d48bc1 management: Finalizing LocalControlHeader implementation by Alexander Afanasyev · 11 years ago
  87. f9fa52f management: Add support to local control header. by Yingdi Yu · 11 years ago
  88. 809805d encoding: Optimized Data packet encoding, preparation for memory-efficient signing operation by Alexander Afanasyev · 11 years ago
  89. c348f83 encoding: Optimized encoding of Interest and related data structures by Alexander Afanasyev · 11 years ago
  90. 1515131 encoding: Extending Block and EncodingBuffer interfaces by Alexander Afanasyev · 11 years ago
  91. 233750e encoding: Fixing bugs in EncodingBlock and Block by Alexander Afanasyev · 11 years ago
  92. 4b45628 tlv: Another set of changes to update TLV type re-assignment by Alexander Afanasyev · 11 years ago
  93. 95b0e34 data: Implementing FinalBlockId in Data packet's MetaInfo section by Alexander Afanasyev · 11 years ago
  94. d337049 management: Add FaceManagementOptions by Yingdi Yu · 11 years ago
  95. 6835ad8 tlv: !!! MAJOR CHANGE !!! Changed TLV codes by Alexander Afanasyev · 11 years ago
  96. 29e5c3d encoding: Fixing Block (and as a result Name) encoding bugs by Alexander Afanasyev · 11 years ago
  97. 380420b name: Converting name to use EncodingBuffer by Alexander Afanasyev · 11 years ago
  98. c8823bc face: Refactored code to set interest filter by Alexander Afanasyev · 11 years ago
  99. e2dcdfd build: Experimental support to build using precompiled headers by Alexander Afanasyev · 11 years ago
  100. 9c7ed11 src: Fixing signed/unsigned comparison warnings and removing all warning-suppressing pragmas by Alexander Afanasyev · 11 years ago