New features:

-   Base
    -   The license under which the library is released is changed to Lesser GNU Public
        License version 3.0.
    -   New ways to use incoming Interest dispatching:
        -   New InterestFilter abstraction that supports filtering based on name prefixes
            and regular expressions.
        -   Separated Face::registerPrefix() and Face::setInterestFilter() methods allow
            distinct operations of registering with the local NDN forwarder and setting up
            application-specific OnInterest call dispatch using InterestFilters.
-   Security
    -   Add type dir trust-anchor in ValidatorConfig to add all certificates under the
        specified directory as trust anchors. The new option also allows periodic
        reloading trust anchors, allowing dynamic trust models.
    -   Added support for multiple signature types to PublicKey, SecPublicInfo
        abstractions
    -   New SignatureSha256WithEcdsa signature type
-   Wire encoding
    -   Data::getFullName() method to get Data packet name with implicit digest
    -   New Name::getSuccessor() method to get name successor
-   Management
    -   Support for ChannelStatus, StrategyChoice datasets
-   Build
    -   enabled support of precompiled headers for clang and gcc compilers to speed up
        compilation

Updates and bug fixes:

-   Wire encoding
    -   Nonce field is now encoded as 4-byte uint8_t value, as defined by NDN-TLV spec.
    -   Optimized Data packet signing

        KeyChain::sign method now pre-allocates EncodingBuffer, requests unsigned portion
        of Data using Data::wireEncode(EncodingBuffer, true), and then appends the
        resulting signature and prepends Data packet header. This way there is no extra
        memory allocation after Data packet is signed.

-   Security
    -   Allow user to explicitly specify the cert name prefix before 'KEY' component in
        ndnsec-certgen
    -   SignatureSha256 has been renamed to DigestSha256 to conform with NDN-TLV
        specification.
    -   Add checking of Timestamp and Nonce fields in signed Interest within
        ValidatorConfig
    -   Allow validator customization using hooks:

        Sub-classes of Validator class can use the following hooks to fine-tune the
        validation process:

          -   Validator::preCertificateValidation to process
              received certificate before validation.
          -   Validator::onTimeout to process interest timeout
          -   Validator::afterCheckPolicy to process validation
              requests.

-   Other minor fixes and corrections

Deprecated:

-   SignatureSha256 class, use DigestSha256 instead.
-   All Face constructors that accept shared_ptr<io_service>.

    Use versions that accept reference to io_service object.

-   Face::ioService method, use Face::getIoService instead.
-   Interest constructor that accepts name, individual selectors, and individual guiders
    as constructor parameters.

    Use Interest().setX(...).setY(...) or use the overload taking Selectors

-   name::Component::toEscapedString method, use name::Component::toUri instead.
-   SecPublicInfo::addPublicKey method, use SecPublicInfo::addKey instead.
-   Tlv::ConentType constant (typo), use Tlv::ContentType instead.

Removed:

-   support of ndnd-tlv (only NFD management protocol is supported now)
-   SecPublicInfoMemory and SecTpmMemory classes that were no longer used
-   Removing concept of periodic event from Scheduler.

    In applications, periodic events should be just re-scheduled within the callback for
    single-shot events.
  1. 71b6768 security: Fix a bug in CommandInterestGenerator by Yingdi Yu · 11 years ago
  2. d337049 management: Add FaceManagementOptions by Yingdi Yu · 11 years ago
  3. 3e08d5d security: New --without-osx-keychain option to disable use of OSX Keychain as a default TPM on Darwin platform by Alexander Afanasyev · 11 years ago
  4. 6835ad8 tlv: !!! MAJOR CHANGE !!! Changed TLV codes by Alexander Afanasyev · 11 years ago
  5. 4447146 security: Fix wrong condition in SecPublicInfoSqlite3 by Alexander Afanasyev · 11 years ago
  6. 88c6945 build: Add '-fPIC' compilation flag (if available) by Alexander Afanasyev · 11 years ago
  7. a68aa7f face: Fix a serious bug with incoming interests processing by Alexander Afanasyev · 11 years ago
  8. 2ff94df encoding: Removing unnecessary explicit instantiations of wireEncode by Alexander Afanasyev · 11 years ago
  9. bf9671d management: Fixing regression with ndnd prefix/face registration by Alexander Afanasyev · 11 years ago
  10. 12dfbad face: Fixing small bug: after unregistering prefix, close transport if by Alexander Afanasyev · 11 years ago
  11. 17bc301 security: Add helpers for Command Interest by Yingdi Yu · 11 years ago
  12. 29e5c3d encoding: Fixing Block (and as a result Name) encoding bugs by Alexander Afanasyev · 11 years ago
  13. d79fc2a management: Fix exception handling in nfd::Controller by Alexander Afanasyev · 11 years ago
  14. 10257b1 interest: Add setExclude function for Interest abstraction by chenatu · 11 years ago
  15. 0222fba api: Major API change. OnInterest/OnData callbacks now use just references, not shared pointers by Alexander Afanasyev · 11 years ago
  16. e289b53 face: Implementing nfd::Controller by Alexander Afanasyev · 11 years ago
  17. 380420b name: Converting name to use EncodingBuffer by Alexander Afanasyev · 11 years ago
  18. c8823bc face: Refactored code to set interest filter by Alexander Afanasyev · 11 years ago
  19. e2dcdfd build: Experimental support to build using precompiled headers by Alexander Afanasyev · 11 years ago
  20. 5b60f70 sqlite3: Enabling option to disable filesystem locking (POSIX advisory locks) by Alexander Afanasyev · 11 years ago
  21. 9c7ed11 src: Fixing signed/unsigned comparison warnings and removing all warning-suppressing pragmas by Alexander Afanasyev · 11 years ago
  22. b46f970 tests: Adding additional no-throw check in sec-public-info-sqlite3 test by Alexander Afanasyev · 11 years ago
  23. 52eb20d name: Fixes and improvements in Name and name::Component classes by Alexander Afanasyev · 11 years ago
  24. 035c7b4 exclude: Fixes of Exclude and adding unit tests for the exclude filter by Alexander Afanasyev · 11 years ago
  25. 95e8c2f name: Optimization of Name implementation by Alexander Afanasyev · 11 years ago
  26. 8ea763d encoding: Fixes in Block: using std::vector for subblocks and allowing block with empty value by Alexander Afanasyev · 11 years ago
  27. 187bc48 encoding: Allow creation of a Block from EncodingBuffer by Alexander Afanasyev · 11 years ago
  28. 217325b encoding: Extended version of EncodingBuffer (allow buffer length estimation) by Alexander Afanasyev · 11 years ago
  29. e6bfab2 tools: Add security tools; Add waf build options for tools. by Yingdi Yu · 11 years ago
  30. a4e5767 interest+data: Add incomingFaceId into Interest and Data. by Yingdi Yu · 11 years ago
  31. e9fdb80 face: Fixing face registration protocol by ensuring uniqueness of each command interest by Alexander Afanasyev · 11 years ago
  32. f2a8209 util: Fix rescheduling and add test case. by Yingdi Yu · 11 years ago
  33. 2b2b479 security: Explicitly request password to unlock keychain by Yingdi Yu · 11 years ago
  34. 7794921 fast-encoding: implement fast encoding for Name, NameComponent and FibManagementOptions, including test case. by Wentao Shang · 11 years ago
  35. ab13655 util: fix "delete event in the same event" bug in scheduler. by Yingdi Yu · 11 years ago
  36. 7056ce8 security: Fix a bug in generating new key id. by Yingdi Yu · 11 years ago
  37. 9a33535 security: Fix a bug of Validator, making checkPolicy methods pure abstract by Yingdi Yu · 11 years ago
  38. 196b9aa data: Ensure that content block always exists, even content wasn't set explicitly by Alexander Afanasyev · 11 years ago
  39. 73f428d management: fix include name.hpp by Steve DiBenedetto · 11 years ago
  40. 274f2b0 src: Fixing several includes by Alexander Afanasyev · 11 years ago
  41. 6ac9798 security: Merging SecPolicy into Validator (previously Verifier) by Yingdi Yu · 11 years ago
  42. 0d92081 face: Expose ioService from Node and Face. by Yingdi Yu · 11 years ago
  43. 0abb2da tests: Do not use ``using namespace ndn'' and defining all tests in ndn namespace by Alexander Afanasyev · 11 years ago
  44. 4d5e1de nfd-control: Implementation of FibManagementOptions data structure by Wentao Shang · 11 years ago
  45. eaf105c nfd-control: Adding class of ControlResponse by Alexander Afanasyev · 11 years ago
  46. 3715f8d security: Adding SecPolicyRegex and related rules by Yingdi Yu · 11 years ago
  47. 52e7953 test: fix signedInterest test case by Yingdi Yu · 11 years ago
  48. 7640cb3 security: Adding CertificateCache and CertificateCacheTtl by Yingdi Yu · 11 years ago
  49. 84cf429 pkgconfig: Update pkgconfig file to include -framework directives by Alexander Afanasyev · 11 years ago
  50. 31ae15f build+tests: Fixing compilation of unit tests by Alexander Afanasyev · 11 years ago
  51. 5e97420 util: Adding regex support. by Yingdi Yu · 11 years ago
  52. 28fd32f security: Adding delete methods in KeyChain by Yingdi Yu · 11 years ago
  53. c6d795f build: On my 12.04 Linux box librt required linking against pthread library by Alexander Afanasyev · 11 years ago
  54. 59efe10 build: Disabling shared library (only static library is compiled) and disabling installation of tests and examples by Alexander Afanasyev · 11 years ago
  55. 4270f20 security: Adding supports to signed interest by Yingdi Yu · 11 years ago
  56. e07e339 security: Enabling SignedInterest processing in SecPolicy and Verifier. by Yingdi Yu · 11 years ago
  57. 90566dd ci: Fixing unit tests (unit test binary has changed paths) by Alexander Afanasyev · 11 years ago
  58. dcab82c build: Fixing Linux compilation by Alexander Afanasyev · 11 years ago
  59. f646889 util: Importing scheduler, originally implemented in NFD by Alexander Afanasyev · 11 years ago
  60. 1950885 build+src: Updating common.hpp to import (std|boost)::(shared_ptr|function|...) into ndn namespace by Alexander Afanasyev · 11 years ago
  61. 09c613f src: Another round of source updates: moving all headers close to implementation files by Alexander Afanasyev · 11 years ago
  62. d033930 doc: Updated README file and added new AUTHORS file by Alexander Afanasyev · 11 years ago
  63. 4e24d10 Merge branch 'waf-build' into new-dev by Alexander Afanasyev · 11 years ago
  64. 1e0a077 build: Fixing build and unit tests by Alexander Afanasyev · 11 years ago
  65. 553d0c8 doc: Updating build instructions by Alexander Afanasyev · 11 years ago
  66. 200dd6f build: Finalizing build system conversion by Alexander Afanasyev · 11 years ago
  67. d409d59 build: Finalizing waf building system (removing legacy code) by Alexander Afanasyev · 11 years ago
  68. 8c5ca01 src: Removing ndnboost by Alexander Afanasyev · 11 years ago
  69. a1ae0a1 build: Adding waf as a build system by Alexander Afanasyev · 11 years ago
  70. 3222fed ci: Make sure notifications are always sent after successful and failed build by Alexander Afanasyev · 11 years ago
  71. 0b9c315 security: Changing file operation code in SecPublicInfoSqlite to use boost::filesystem. by Yingdi Yu · 11 years ago
  72. 20d2c58 transport: Implementing TcpTransport by Alexander Afanasyev · 11 years ago
  73. fb44c97 node: Need to explicitly specify MustBeFresh, othewise subsequent self-registrations will not work by Alexander Afanasyev · 11 years ago
  74. 9b18c56 build: Fix bug with enabling use of system-installed boost libraries by Alexander Afanasyev · 11 years ago
  75. 38403b7 build: Making libsqlite3 mandatory by Alexander Afanasyev · 11 years ago
  76. 9e92bfd build: Changing default to **not use** C++11 feature and **use** boost libraries, unless specifically instructed by ./configure options by Alexander Afanasyev · 11 years ago
  77. b790d95 face+node: Improving async operations by Alexander Afanasyev · 11 years ago
  78. 8f24d0c build: Patching ax_boost_base.m4 so it can detect correct path to Boost libraries on Ubuntu 13.10 (32-bit platform case) by Alexander Afanasyev · 11 years ago
  79. 6e9fc18 node: Fix of getting a pointer to the static member function (& necessary for some compilers) by Jeff Thompson · 11 years ago
  80. 8726f65 security: Rename KeyChain::signInTpm to KeyChain::signDataInTpm, and make it priviate. by Yingdi Yu · 11 years ago
  81. 874678f security: Hiding sqlite3 from the header of SecPublicInfoSqlite by Yingdi Yu · 11 years ago
  82. afc45a9 name: Added compare and comparison operators. Remove breadthFirstLess by Jeff Thompson · 11 years ago
  83. 0402092 security: Changing security storage location. Adding test case by Yingdi Yu · 11 years ago
  84. 2d9c50f security: Adding SecTpmFile which a pure file based "TPM". by Yingdi Yu · 11 years ago
  85. 3c5887c security: Moving signInTpm(Data& data, ...) from SecTpm to KeyChain. by Yingdi Yu · 11 years ago
  86. 2715839 encoding: Construct Block from istream by Yingdi Yu · 11 years ago
  87. 06e9d25 src: Adding pkgconfig script, so apps can use pkg-config to get all necesasry parameters to compile against the library by Alexander Afanasyev · 11 years ago
  88. fffd1e4 renaming: Make names of the tools unique by Yingdi Yu · 11 years ago
  89. 19dea68 c/util: Correcting qualifiers for memory operations by Alexander Afanasyev · 11 years ago
  90. 61ec272 renaming: ndn-cpp to ndn-cpp-dev by Yingdi Yu · 11 years ago
  91. b4500d9 ci: Adding simple script for travis-ci (continuous integration platform) by Alexander Afanasyev · 11 years ago
  92. 89a889c tools/ndncatchunks: Enable MustBeFresh selector by Alexander Afanasyev · 11 years ago
  93. 929e86d interest/tlv: Do not encode InterestLifetime if it has default value (4sec) by Alexander Afanasyev · 11 years ago
  94. e9a66e5 security: Correcting generation of SignatureSha256WithRsa to conforming to the packet format specification by Alexander Afanasyev · 11 years ago
  95. f5c35ae encoding/block: Extending interface to allow removal of child items by Alexander Afanasyev · 11 years ago
  96. 8995f54 node+transport: Fixing bug that prevented reconnection to the forwarder after being disconnected for some reason by Alexander Afanasyev · 11 years ago
  97. c1ebbe9 tools: Disabling hardcoded Scope(1) for ndncatchunks tool by Alexander Afanasyev · 11 years ago
  98. a1a0c24 build: Correcting dependencies in [examples/tests/tests_boost]/Makefile.am so the code can be compiled on Linux by Alexander Afanasyev · 11 years ago
  99. 22a315f examples: Make producer.cpp to use default KeyChain by Alexander Afanasyev · 11 years ago
  100. 38d7968 tools: ndncatchunks and ndnputchunks tool by Wentao Shang · 11 years ago