ndn-cxx version 0.6.5

Note that this is the last release that encodes to NDN packet format
version 0.2.1. A future release will continue to decode v0.2.1 format,
but will encode to v0.3 format.

New features
============

- More support for NDN packet format version 0.3 (4527)
  - Stop using ChildSelector in NotificationSubscriber (4664)
  - Stop using ChildSelector in CertificateBundleFetcher (4665)
- Support floating point numbers in TLV-VALUE (4612)
- Scoped prefix registration, scoped Interest filter, and scoped pending
  Interest (3919, 4316)
- Counters for satisfied and unsatisfied Interests in ForwarderStatus
  (4720)
- random::getRandomNumberEngine() in the public API
- MetadataObject class to encode/decode RDR-style metadata (4707)
- SegmentFetcher::stop() (4692)

Improvements and bug fixes
==========================

- Use openssl-based routines for the PKCS#8 decoding/decryption when
  exporting key from macOS Keychain (4450)
- Switch to AES-256 for private key encryption in PKCS #8 export
- Add exponential backoff in CertificateFetcherFromNetwork (4718, 4712)
- Throw exception when loading an orphaned ValidationPolicyConfig (API
  violation) (4758)
- Forbid unrecognized TLVs before Name (4667)
- Prevent memory pool size from becoming zero in InMemoryStorage (4769)
- Clean up fetchers when destructing nfd::Controller (4775)
- Fix SegmentFetcher undefined behavior caused by uncanceled pending
  interest (4770)
- Seed the PRNG with more entropy (4808)
- Stop accepting NonNegativeInteger as sequence number in NDNLP (4598)
- Backport C++17 std::any and std::variant as ndn::any and ndn::variant
- Reimplement scheduler::EventId with CancelHandle (4698)

Deprecated
==========

- ndn-cxx/util/scheduler-scoped-event-id.hpp header as it is now
  sufficient to use ndn-cxx/util/scheduler.hpp header (4698)
- Implicit conversion from nullptr to scheduler::EventId (4698)

Removed
=======

- ndn::ip::address{,V6}FromString
- SegmentFetcher::fetch (4464)
- {get,set}FinalBlockId()
- Headers that were already considered internal implementation details
  have been explicitly moved to a detail/ subdir to more clearly
  separate private and public headers
  1. b72360f Prepare release 0.6.5 by Alexander Afanasyev · 6 years ago ndn-cxx-0.6.5
  2. 80609d4 face: scoped pending Interest by Junxiao Shi · 6 years ago
  3. 7c5bc1e build: Upgrade waf build system to version 2.0.14 by Alexander Afanasyev · 6 years ago
  4. 07115cc util: reimplement scheduler::EventId with CancelHandle by Junxiao Shi · 6 years ago
  5. 4e0cc6c security: Remove use of ChildSelector in CertificateBundleFetcher by Alexander Afanasyev · 6 years ago
  6. 322e76e Use Boost.Range to simplify some code by Davide Pesavento · 6 years ago
  7. 6b99b6f Add MetadataObject class to encode/decode RDR-style metadata by Chavoosh Ghasemi · 6 years ago
  8. ca48851 tests: delete goodness-of-fit tests from Util/TestRandom by Davide Pesavento · 6 years ago
  9. c53df03 lp: stop accepting NonNegativeInteger as sequence number by Junxiao Shi · 6 years ago
  10. 60aaef0 face: scoped Interest filter by Junxiao Shi · 6 years ago
  11. 8db6152 util: add random::getRandomNumberEngine() to the public API by Davide Pesavento · 6 years ago
  12. ec475a7 face: scoped prefix registration by Junxiao Shi · 6 years ago
  13. c554551 Add git .mailmap by Davide Pesavento · 6 years ago
  14. bfe3139 util: seed the PRNG with more entropy by Davide Pesavento · 6 years ago
  15. 22f7bc3 tests: don't throw if NetworkMonitor lacks CAP_ENUM by Davide Pesavento · 6 years ago
  16. 64ae55d build: ensure /usr/local/include is treated as system include path on FreeBSD by Davide Pesavento · 6 years ago
  17. 534b841 docs: refresh installation instructions and general cleanup by Davide Pesavento · 6 years ago
  18. ebe156c util: fix SegmentFetcher undefined behavior caused by uncanceled pending interest by Ashlesh Gawande · 6 years ago
  19. 19b87de detail: move cf-*-osx.hpp to 'detail' by Junxiao Shi · 6 years ago
  20. 70d76eb transport: move Impl templates into 'detail' by Junxiao Shi · 6 years ago
  21. 1d23ff9 detail: move asio-fwd to 'detail' by Junxiao Shi · 6 years ago
  22. 1e36ceb detail: move packet-base|tag-host.hpp to 'detail' by Junxiao Shi · 6 years ago
  23. d1fc9a7 detail: move common.hpp to 'detail' by Junxiao Shi · 6 years ago
  24. 24c5a00 impl: rename 'detail' to 'impl' by Junxiao Shi · 6 years ago
  25. 2c1d349 docs: display the full include path in doxygen by Davide Pesavento · 6 years ago
  26. 7e78064 Change #include style by Davide Pesavento · 6 years ago
  27. cf8a368 ci: install gcovr via apt by Davide Pesavento · 6 years ago
  28. 946a51c util: stop using ChildSelector in NotificationSubscriber by Junxiao Shi · 6 years ago
  29. 74daf74 Rename 'tests/unit-tests' directory to 'tests/unit' by Davide Pesavento · 6 years ago
  30. 1944281 Rename 'src' directory to 'ndn-cxx' by Davide Pesavento · 6 years ago
  31. 3e3a989 mgmt: Controller cleans up fetchers on destruction by Ashlesh Gawande · 6 years ago
  32. 1bbce6d ims: prevent memory pool size from becoming zero by Ashlesh Gawande · 6 years ago
  33. 17b61b4 util: backport C++17 std::any and std::variant by Davide Pesavento · 6 years ago
  34. 8dfd913 data: remove deprecated {get,set}FinalBlockId() by Davide Pesavento · 6 years ago
  35. 511712d ci: fix another issue with preinstalled homebrew packages on Travis by Davide Pesavento · 6 years ago
  36. dca56ea mgmt: augment ForwarderStatus with counters for satisfied and unsatisfied Interests by Ju Pan · 6 years ago
  37. 679dbb0 util: add stop function to SegmentFetcher by Ashlesh Gawande · 6 years ago
  38. 241df42 encoding: support floating point numbers in TLV-VALUE by Tianxing Ma · 6 years ago
  39. 8b753a2 interest+data: forbid unrecognized TLV before Name by Junxiao Shi · 6 years ago
  40. 7b11246 security: Throw exception when loading on orphaned ValidationPolicyConfig by Alexander Afanasyev · 6 years ago
  41. f714d1b ci: workaround homebrew issues with python and numpy on Travis's macOS 10.12 by Davide Pesavento · 6 years ago
  42. ee77ca0 security: use AES-256 for private key encryption in PKCS #8 export by Davide Pesavento · 6 years ago
  43. 3e39a4d security: use exponential backoff in CertificateFetcherFromNetwork by Ashlesh Gawande · 6 years ago
  44. 13fffa3 security: in tpm::BackEndOsx, unwrap the key before importing it by Davide Pesavento · 6 years ago
  45. 279f366 util: remove deprecated SegmentFetcher::fetch by Ashlesh Gawande · 6 years ago
  46. 2cb33fa net: remove deprecated ndn::ip::address{,V6}FromString by Davide Pesavento · 6 years ago
  47. a3bf431 Prepare release 0.6.3 by Alexander Afanasyev · 6 years ago ndn-cxx-0.6.3
  48. d2c750b util: update bundled copy of optional-lite by Davide Pesavento · 6 years ago
  49. e3ecad7 lp: remove lp::PrefixAnnouncement in favor of ndn::PrefixAnnouncement by Teng Liang · 6 years ago
  50. 8bd3b8a ci: add support for CentOS 7 by Md Ashiqur Rahman · 6 years ago
  51. cdb5d8f ci: introduce helper to preserve select env variables under sudo by Davide Pesavento · 6 years ago
  52. e80d116 security: add support for SHA-3 by Davide Pesavento · 6 years ago
  53. 648ae9e security: forbid RSA keys shorter than 2048 bits by Davide Pesavento · 6 years ago
  54. 3c7969f security: support 224-bit and 521-bit NIST elliptic curves by Davide Pesavento · 6 years ago
  55. 1748b1e prefix-ann: provide ==, !=, << operators by Junxiao Shi · 6 years ago
  56. fbda933 security: improve error handling in tpm::BackEndOsx by Davide Pesavento · 6 years ago
  57. 4b8eab7 build: drop dependency on unused CoreServices framework by Davide Pesavento · 6 years ago
  58. 5ee8ec0 security: code cleanup and doxygen improvements in tpm::BackEndOsx by Davide Pesavento · 6 years ago
  59. 502b479 encoding: replace the route origin selflearning with prefixann by Teng Liang · 6 years ago
  60. 4fc6db2 docs: Fix a typo by Sepehr Abdous · 6 years ago
  61. 474c3b2 build: check for linux/genetlink.h by Davide Pesavento · 6 years ago
  62. 8127d1a mgmt: encode and decode prefix announcement object by Junxiao Shi · 6 years ago
  63. 755f8a8 net: NetworkMonitor: gracefully handle backend initialization failure by Davide Pesavento · 6 years ago
  64. 52bc4e9 build: disable -Wmissing-braces with clang < 6.0 by Davide Pesavento · 6 years ago
  65. 2b322eb encoding: provide _block literal operator by Junxiao Shi · 6 years ago
  66. 426d500 encoding: update number assignments by Junxiao Shi · 6 years ago
  67. 1077499 net: initial support for generic netlink (genl) by Davide Pesavento · 6 years ago
  68. dc5bb96 net: support multiple concurrent netlink requests by Davide Pesavento · 6 years ago
  69. a0b2a2c net: refactor netlink socket handling by Davide Pesavento · 6 years ago
  70. 4053bd5 name: recognize ParametersSha256DigestComponent by Junxiao Shi · 6 years ago
  71. d2e6063 name-component: recognize plain URI syntax by Junxiao Shi · 6 years ago
  72. b38664e interest: support Parameters element by Arthi Padmanabhan · 6 years ago
  73. 68b5385 docs: update code-style rule 2.24 by Junxiao Shi · 6 years ago
  74. 3b101d0 Use std::move in more places by Davide Pesavento · 6 years ago
  75. cf0aff8 name: accommodate typed components in getSuccessor by Junxiao Shi · 6 years ago
  76. b55e5d3 interest: declare default CanBePrefix setting by Junxiao Shi · 6 years ago
  77. 54d74c2 security: correct ValidationPolicy docs by Junxiao Shi · 6 years ago
  78. 643b7f5 mgmt: use platform-independent counter type by Junxiao Shi · 6 years ago
  79. 5c1c444 security: Improve reliability of TPM BackEnd RandomKeyId test case by Junxiao Shi · 6 years ago
  80. 3a3e188 encoding+util: ensure move constructors are properly declared by Davide Pesavento · 6 years ago
  81. bc76da1 util: update optional-lite to version 3.0.0 by Davide Pesavento · 6 years ago
  82. 570b20d encoding+lp: declare constexpr and noexcept where possible by Davide Pesavento · 6 years ago
  83. 14883ad encoding: use Boost.Endian for endianness conversions by Davide Pesavento · 6 years ago
  84. 2aec97a net: filter netlink messages based on sender pid and destination group by Davide Pesavento · 6 years ago
  85. 50b9226 net: refactor netlink message parsing, add extack support by Davide Pesavento · 6 years ago
  86. 4c45fd8 ims: correct inaccurate comment by Junxiao Shi · 6 years ago
  87. 2b765f8 util: eliminate selector usage in SegmentFetcher by Eric Newberry · 6 years ago
  88. 3306339 docs: unregister prefixes instead of calling Face::shutdown by Eric Newberry · 6 years ago
  89. e345baa util: augment SegmentFetcher with congestion control by Eric Newberry · 6 years ago
  90. 71a2f03 mgmt: fix compilation error on Xcode 8 and earlier by Eric Newberry · 6 years ago
  91. ca660f1 build: require clang >= 3.6 by Davide Pesavento · 6 years ago
  92. 31fd467 security: Correctly handle Sha256-signed Command Interests by Alexander Afanasyev · 6 years ago
  93. 57d02b6 security: Fix bug preventing customization of KeyChain's TPM on macOS by Alexander Afanasyev · 6 years ago
  94. db4da5e Improve and simplify code with modern C++ features by Davide Pesavento · 6 years ago
  95. 634a62b tools: Allow specifying passphrase for ndnsec import/export in command line by Alexander Afanasyev · 6 years ago
  96. 3c9bc04 mgmt: add Mtu to faces/create and FaceStatus by Eric Newberry · 6 years ago
  97. 90db7ee net+util: remove dependency on Boost.Regex by Davide Pesavento · 6 years ago
  98. 436e46f docs: allow use of "Num" and "No" in entity number variable names by Eric Newberry · 6 years ago
  99. 59e266a net: deprecate ndn::ip::address{,V6}FromString by Davide Pesavento · 6 years ago
  100. 1fd0024 build: switch to C++14 by Davide Pesavento · 6 years ago