Davide Pesavento | 6cc1dfb | 2019-04-27 14:10:56 -0400 | [diff] [blame^] | 1 | # Release Notes |
| 2 | |
| 3 | ## Version 0.6.4 |
| 4 | |
| 5 | chunks: |
| 6 | - Add metadata-based version discovery and remove iterative discovery (Issue #4556) |
| 7 | - Remove manual selection of version discovery method via `-d` option (Issue #4832) |
| 8 | - Implement CUBIC congestion window adaptation in ndncatchunks (Issue #4861) |
| 9 | - Increase the default retransmission limit from 3 to 15 (Issue #4861) |
| 10 | - Improve stats printed by ndncatchunks after transfer completes (Issue #4603) |
| 11 | - Add manual page for ndnputchunks |
| 12 | |
| 13 | dissect & dissect-wireshark: |
| 14 | - Follow packet specification changes to renumber the `Parameters` element and |
| 15 | rename it to `ApplicationParameters` (Issues #4658, #4780) |
| 16 | |
| 17 | dump: |
| 18 | - Fix compilation on CentOS 7 (Issue #4852) |
| 19 | |
| 20 | pib: |
| 21 | - Completely remove this obsolete and unmaintained tool (Issue #4205) |
Alexander Afanasyev | 339161a | 2016-10-27 22:41:16 +0000 | [diff] [blame] | 22 | |
Alexander Afanasyev | d5449e5 | 2019-01-29 09:32:56 -0500 | [diff] [blame] | 23 | ## Version 0.6.3 |
| 24 | |
| 25 | chunks: |
| 26 | - Fix impossible RTT values (Issue #4604) |
| 27 | - Add support for RDR metadata in ndnputchunks (Issue #4556) |
| 28 | - Use `PendingInterestHandle` and `RegisteredPrefixHandle` (Issues #4316, #3919) |
| 29 | |
| 30 | ping: |
| 31 | - Add systemd unit file for ndnpingserver (Issue #4594) |
| 32 | - Use `PendingInterestHandle` and `RegisteredPrefixHandle` (Issues #4316, #3919) |
| 33 | |
| 34 | poke: |
| 35 | - Use `PendingInterestHandle` and `RegisteredPrefixHandle` (Issues #4316, #3919) |
| 36 | |
| 37 | Various build system and build script improvements. |
| 38 | |
Alexander Afanasyev | a8b03df | 2018-09-16 21:06:07 -0400 | [diff] [blame] | 39 | ## Version 0.6.2 |
| 40 | |
| 41 | The build requirements have been upgraded to gcc >= 5.3 or clang >= 3.6, boost >= 1.58, |
| 42 | openssl >= 1.0.2. This effectively drops support for all versions of Ubuntu older than 16.04 |
| 43 | that use distribution-provided compilers and packages. |
| 44 | |
| 45 | The compilation now uses the C++14 standard. |
| 46 | |
Davide Pesavento | 6cc1dfb | 2019-04-27 14:10:56 -0400 | [diff] [blame^] | 47 | chunks: |
| 48 | - Fix AIMD hanging with files smaller than the chunk size (Issue #4439) |
| 49 | |
Alexander Afanasyev | a8b03df | 2018-09-16 21:06:07 -0400 | [diff] [blame] | 50 | dissect-wireshark: |
Davide Pesavento | 6cc1dfb | 2019-04-27 14:10:56 -0400 | [diff] [blame^] | 51 | - Show `Name` and `FinalBlockId` as URIs (Issue #3106) |
Alexander Afanasyev | a8b03df | 2018-09-16 21:06:07 -0400 | [diff] [blame] | 52 | - Improve NDNLPv2 support (Issue #4463) |
| 53 | - Add support for dissecting PPP frames |
| 54 | |
| 55 | dump: |
| 56 | - Remove dependency on Boost.Regex |
| 57 | - Stop using tcpdump headers files |
| 58 | - Compile pcap filter with optimizations enabled |
| 59 | - Capture in promiscuous mode by default, add an option to disable it |
| 60 | - Add `-t` option to suppress printing per-packet timestamp |
| 61 | - Properly handle exceptions thrown by `lp::Packet::wireDecode()` (Issue #3943) |
Davide Pesavento | 6cc1dfb | 2019-04-27 14:10:56 -0400 | [diff] [blame^] | 62 | - Add UDP port 56363 to the default pcap filter |
| 63 | - Stricter parsing of IP/TCP/UDP headers |
Alexander Afanasyev | a8b03df | 2018-09-16 21:06:07 -0400 | [diff] [blame] | 64 | - Add IPv6 support |
| 65 | - Code cleanup |
| 66 | |
| 67 | poke: |
Davide Pesavento | 6cc1dfb | 2019-04-27 14:10:56 -0400 | [diff] [blame^] | 68 | - Use `Face::unsetInterestFilter` instead of `shutdown` (Issue #4642) |
Alexander Afanasyev | a8b03df | 2018-09-16 21:06:07 -0400 | [diff] [blame] | 69 | - Improve unit testing (Issue #3740) |
| 70 | |
Alexander Afanasyev | a8b03df | 2018-09-16 21:06:07 -0400 | [diff] [blame] | 71 | ping: |
| 72 | - Add `--quiet` option to ndnpingserver (Issue #4673) |
Davide Pesavento | 6cc1dfb | 2019-04-27 14:10:56 -0400 | [diff] [blame^] | 73 | - Set `CanBePrefix=false` in Interests sent by ndnping (Issue #4581) |
Alexander Afanasyev | a8b03df | 2018-09-16 21:06:07 -0400 | [diff] [blame] | 74 | - Code cleanup |
| 75 | |
Davide Pesavento | 4a43e87 | 2018-05-03 22:10:56 -0400 | [diff] [blame] | 76 | ## Version 0.6.1 |
| 77 | |
| 78 | chunks: |
| 79 | - Show correct packet loss stats in final summary (Issue #4437) |
| 80 | - Avoid printing meaningless values when no RTT measurements are available (Issue #4551) |
| 81 | |
| 82 | dissect: |
| 83 | - Recognize `CanBePrefix`, `HopLimit`, and `Parameters` TLV elements (Issue #4590) |
| 84 | |
| 85 | dissect-wireshark: |
| 86 | - Recognize `CanBePrefix`, `HopLimit`, and `Parameters` TLV elements (Issue #4517) |
| 87 | |
| 88 | peek: |
Davide Pesavento | 6cc1dfb | 2019-04-27 14:10:56 -0400 | [diff] [blame^] | 89 | - Drop `Selectors` support (Issue #4571) |
Davide Pesavento | 4a43e87 | 2018-05-03 22:10:56 -0400 | [diff] [blame] | 90 | - Add `-P/--prefix` option to set `CanBePrefix` in the Interest packet |
| 91 | |
| 92 | build scripts: |
| 93 | - Upgrade `waf` to the latest version and other improvements |
| 94 | |
susmit | 48cb0b6 | 2018-02-13 12:27:24 -0700 | [diff] [blame] | 95 | ## Version 0.6 |
| 96 | |
| 97 | chunks: |
Davide Pesavento | 4a43e87 | 2018-05-03 22:10:56 -0400 | [diff] [blame] | 98 | - Change the default Interest pipeline to AIMD (Issue #4402) |
| 99 | - Include RTT stats in final summary (Issue #4406) |
| 100 | - Respect `--retries=-1` in the AIMD pipeline (Issue #4409) |
| 101 | - React to congestion marks by default as a timeout event (can be disabled using |
| 102 | `--aimd-ignore-cong-marks`) (Issue #4289) |
| 103 | - Print a final summary of the transfer regardless of the pipeline type, and even if |
| 104 | `--verbose` was not specified (Issue #4421) |
susmit | 48cb0b6 | 2018-02-13 12:27:24 -0700 | [diff] [blame] | 105 | |
Alexander Afanasyev | eacd617 | 2017-10-16 16:40:31 -0400 | [diff] [blame] | 106 | ## Version 0.5 |
| 107 | |
| 108 | all: |
| 109 | - Switch to version 2 of certificates, `KeyChain`, and `Validator` (Issue #4089) |
| 110 | - Compilation fixes (Issue #4259) |
| 111 | |
| 112 | peek: |
| 113 | - Convert use of `Link` into `ForwardingHint` (Issue #4055) |
| 114 | |
| 115 | chunks: |
| 116 | - Make `ndnputchunks` display some output by default. A new `-q` flag makes output |
| 117 | completely silent, except for errors (Issue #4286) |
| 118 | - Refactor `ndnputchunks` options handling |
| 119 | - Reduce initial timeout of iterative version discovery in `ndncatchunks` (Issue #4291) |
| 120 | - Fix potential `ndncatchunks` crash on exit |
| 121 | |
Alexander Afanasyev | 339161a | 2016-10-27 22:41:16 +0000 | [diff] [blame] | 122 | ## Version 0.4 |
| 123 | |
Davide Pesavento | 6cc1dfb | 2019-04-27 14:10:56 -0400 | [diff] [blame^] | 124 | As of this version, NDN Essential Tools require a modern compiler (gcc >= 4.8.2, clang >= 3.4) |
| 125 | and a relatively new version of the Boost libraries (>= 1.54). This means that the code no |
| 126 | longer compiles with the packaged version of gcc and Boost libraries on Ubuntu 12.04. |
| 127 | NDN Essential Tools can still be compiled on such systems, but require a separate |
| 128 | installation of a newer version of the compiler (e.g., clang-3.4) and dependencies. |
Alexander Afanasyev | 339161a | 2016-10-27 22:41:16 +0000 | [diff] [blame] | 129 | |
| 130 | chunks: |
Davide Pesavento | 6cc1dfb | 2019-04-27 14:10:56 -0400 | [diff] [blame^] | 131 | - Change default version discovery to iterative |
Alexander Afanasyev | 339161a | 2016-10-27 22:41:16 +0000 | [diff] [blame] | 132 | - Improve help text of `ndnputchunks` |
| 133 | - Fix `DiscoverVersionIterative` build error |
| 134 | - Modularize Interest pipeline implementation |
| 135 | - Add AIMD congestion control (Issue #3636) |
| 136 | - Code cleanup and improvements |
| 137 | |
| 138 | dissect-wireshark: |
| 139 | - Add initial support for NDNLPv2 (Issue #3197) |
| 140 | - Fix potential memory overflow |
| 141 | |
| 142 | dump: |
| 143 | - Add support for Linux cooked-mode capture (SLL) (Issue #3061) |
| 144 | - Improve error messages |
| 145 | |
| 146 | pib: |
| 147 | - Disable by default (can be compiled with ndn-cxx version 0.5.0) |
| 148 | - Fix compilation error with new version of ndn-cxx library |
| 149 | - Avoid use of deprecated block helpers |
| 150 | - Correct build target path |
| 151 | |
| 152 | ping: |
| 153 | - Recognize and trace NACK |
Davide Pesavento | 4a43e87 | 2018-05-03 22:10:56 -0400 | [diff] [blame] | 154 | - Fix potential divide-by-zero bug in `StatisticsCollector` (Issue #3504) |
Alexander Afanasyev | 339161a | 2016-10-27 22:41:16 +0000 | [diff] [blame] | 155 | |
| 156 | peek: |
| 157 | - Recognize and properly handle NACK |
| 158 | - Refactor implementation |
| 159 | |
| 160 | ## Version 0.3 |
| 161 | |
| 162 | chunks: **New** (pair of) tool(s) for segmented file transfer |
| 163 | |
| 164 | peek: |
| 165 | - Allow verbose output |
| 166 | - Switch from `getopt` to `boost::program_options` |
| 167 | - Add `--link-file` option |
| 168 | |
| 169 | ping: |
| 170 | - Document ndnping protocol |
| 171 | |
| 172 | dump: |
| 173 | - Capture and print network NACK packets |
| 174 | - Update docs to include NACK capture feature |
| 175 | |
| 176 | build scripts: |
Davide Pesavento | 4a43e87 | 2018-05-03 22:10:56 -0400 | [diff] [blame] | 177 | - Enable `-Wextra` by default |
Alexander Afanasyev | 339161a | 2016-10-27 22:41:16 +0000 | [diff] [blame] | 178 | - Fix missing tool name in `configure --help` output |
| 179 | - Fix compatibility with Python 3 |
| 180 | |
| 181 | ## Version 0.2 |
| 182 | |
Davide Pesavento | 6cc1dfb | 2019-04-27 14:10:56 -0400 | [diff] [blame^] | 183 | Code improvements and two new tools: |
Alexander Afanasyev | 339161a | 2016-10-27 22:41:16 +0000 | [diff] [blame] | 184 | |
| 185 | - PIB service to manage the public information of keys and publish certificates |
| 186 | (Issue 3018) |
| 187 | - A Wireshark dissector for NDN packets (Issue 3092) |
| 188 | |
| 189 | ## Version 0.1 |
| 190 | |
| 191 | Initial release of NDN Essential Tools, featuring: |
| 192 | |
| 193 | - ndnpeek, ndnpoke: a pair of programs to request and make available for |
Davide Pesavento | 6cc1dfb | 2019-04-27 14:10:56 -0400 | [diff] [blame^] | 194 | retrieval a single Data packet. |
| 195 | - ndnping, ndnpingserver: reachability testing tools for Named Data Networking. |
| 196 | - ndndump: a traffic analysis tool that captures NDN packets on the wire. |
Alexander Afanasyev | 339161a | 2016-10-27 22:41:16 +0000 | [diff] [blame] | 197 | - ndn-dissect: an NDN packet format inspector. It reads zero or more NDN |
| 198 | packets from either an input file or the standard input, and displays the |
| 199 | Type-Length-Value (TLV) structure of those packets on the standard output. |