Alexander Afanasyev | 778ad71 | 2022-01-27 14:01:55 -0500 | [diff] [blame] | 1 | ndn-cxx version 0.8.0 |
| 2 | --------------------- |
| 3 | |
| 4 | Release date: February 15, 2022 |
| 5 | |
| 6 | Important changes |
| 7 | ^^^^^^^^^^^^^^^^^ |
| 8 | |
| 9 | - Flip default value of ``CanBePrefix`` to **false** (:issue:`4582`). This means that |
Davide Pesavento | 81de5d9 | 2022-12-30 01:08:05 -0500 | [diff] [blame] | 10 | Interests created without explicitly specifying ``CanBePrefix`` option will be treated |
Alexander Afanasyev | 778ad71 | 2022-01-27 14:01:55 -0500 | [diff] [blame] | 11 | as Interests for exact Data name. |
| 12 | |
Davide Pesavento | 81de5d9 | 2022-12-30 01:08:05 -0500 | [diff] [blame] | 13 | - Change default name component encoding convention to ``TYPED`` (:issue:`5044`) |
Alexander Afanasyev | 778ad71 | 2022-01-27 14:01:55 -0500 | [diff] [blame] | 14 | |
| 15 | - Update TLV-TYPE numbers to revision 3 of the `naming conventions`_ |
| 16 | |
| 17 | .. _naming conventions: |
| 18 | https://named-data.net/publications/techreports/ndn-tr-22-3-ndn-memo-naming-conventions/ |
| 19 | |
| 20 | - Change TLV-TYPE number of ``IncomingFaceId`` field in NDNLP (:issue:`5185`) |
| 21 | |
Davide Pesavento | 576c21b | 2022-11-29 20:00:22 -0500 | [diff] [blame] | 22 | - Update Interest ``ForwardingHint`` format (:issue:`5187`) |
Alexander Afanasyev | 778ad71 | 2022-01-27 14:01:55 -0500 | [diff] [blame] | 23 | |
| 24 | Improvements and bug fixes |
| 25 | ^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 26 | |
| 27 | - Support certificate name, versionless certificate name, and key name options for |
| 28 | KeyLocator name in ``ValidatorConfig`` (:issue:`5142`) |
| 29 | |
Alexander Afanasyev | 778ad71 | 2022-01-27 14:01:55 -0500 | [diff] [blame] | 30 | - Generalize signature verification to allow ``digest-sha256``, effectively adding |
| 31 | support of digest integrity verification in ``ValidatorConfig`` |
| 32 | |
| 33 | - Enforce ``sig-type`` check in ``ValidatorConfig`` (:issue:`4524`) |
| 34 | |
Davide Pesavento | 576c21b | 2022-11-29 20:00:22 -0500 | [diff] [blame] | 35 | - Fix ``ValidatorConfig`` rule processing bug (:issue:`5145`) |
Alexander Afanasyev | 778ad71 | 2022-01-27 14:01:55 -0500 | [diff] [blame] | 36 | |
| 37 | - Prevent potential dereferencing of past-the-end iterator in ``Block::value()`` |
| 38 | |
Davide Pesavento | 576c21b | 2022-11-29 20:00:22 -0500 | [diff] [blame] | 39 | - Fail early in :ndn-cxx:`Block::blockFromValue` if TLV length is zero |
| 40 | |
| 41 | - Refactor and cleanup of :ndn-cxx:`StatusDatasetContext`, including increase of maximum |
| 42 | payload size of each produced segment to 8000 bytes |
Alexander Afanasyev | 778ad71 | 2022-01-27 14:01:55 -0500 | [diff] [blame] | 43 | |
| 44 | - Improve error reporting when loading a ``Certificate`` or ``SafeBag`` fails |
| 45 | |
| 46 | - Add API to get the keyword name component for Metadata and Prefix Announcements |
| 47 | |
| 48 | - Backport C++20 ``std::span`` and convert most APIs to use it |
| 49 | |
| 50 | - Introduce ``time::{to,from}IsoExtendedString()`` utility functions |
| 51 | |
| 52 | - Add support for OpenSSL 3.0. Note that because of the API changes, HMAC implementation |
Davide Pesavento | 576c21b | 2022-11-29 20:00:22 -0500 | [diff] [blame] | 53 | does not currently work when compiled with OpenSSL 3.0+, use older version of OpenSSL |
Alexander Afanasyev | 778ad71 | 2022-01-27 14:01:55 -0500 | [diff] [blame] | 54 | when needed. |
| 55 | |
| 56 | - Various build system and documentation extension and fixes |
| 57 | |
| 58 | Deprecations |
| 59 | ^^^^^^^^^^^^ |
| 60 | |
| 61 | - ``Interest::setDefaultCanBePrefix()`` |
| 62 | |
| 63 | - ``Name::append(Block)`` overload, as it has confusing semantics (:issue:`5186`) |
| 64 | |
| 65 | - ``ndnsec`` tool aliases: ``ndnsec-certgen``, ``ndnsec-dump-certificate``, |
| 66 | ``ndnsec-install-cert``, ``ndnsec-keygen``, ``ndnsec-ls-identity`` |
| 67 | |
| 68 | Removals |
| 69 | ^^^^^^^^ |
| 70 | |
| 71 | - Previously deprecated ``Signature`` class, its subclasses, and deprecated methods from |
| 72 | ``Data``, ``KeyChain``, ``SignatureInfo``, and ``SigningInfo`` |
| 73 | |
| 74 | - Redundant overloads of ``verifySignature()`` and ``verifyDigest()`` |
| 75 | |
| 76 | - Previously deprecated ``security/v2`` headers |
| 77 | |
| 78 | - Previously deprecated ``CommandInterestSigner`` |
| 79 | |
| 80 | - Unused ``Transport::send()`` overload |
| 81 | |
| 82 | - Remove HTTP download feature in ``ndnsec cert-install``, as it does not support HTTPS |
| 83 | retrieval. The recommended way of installing certificates published over HTTP/HTTPS has |
| 84 | been changed to use ``curl`` or ``wget`` (:issue:`4506`) |