Davide Pesavento | dd00076 | 2020-01-15 01:34:33 -0500 | [diff] [blame] | 1 | # Release Notes |
| 2 | |
Davide Pesavento | dbac16a | 2021-02-18 20:55:43 -0500 | [diff] [blame^] | 3 | ## Version 0.5.4 |
| 4 | |
| 5 | - The build requirements have been increased to require Clang >= 4.0, Xcode >= 9.0, |
| 6 | and Python >= 3.6. Meanwhile, it is *recommended* to use GCC >= 7.4.0 and |
| 7 | Boost >= 1.65.1. This effectively drops official support for Ubuntu 16.04 when |
| 8 | using distribution-provided packages; ChronoSync may still work on this platform, |
| 9 | but we provide no official support for it. |
| 10 | |
| 11 | - Exceptions are now thrown using `NDN_THROW` instead of `BOOST_THROW_EXCEPTION` |
| 12 | |
| 13 | - The private header files `config.hpp`, `common.hpp`, `bzip2-helper.hpp`, |
| 14 | `mi-tag.hpp`, and `tlv.hpp` have been moved to a `detail` subdirectory |
| 15 | |
| 16 | - Fix compilation against the latest version of ndn-cxx |
| 17 | |
| 18 | - Fix incompatibility with the C++20 `<version>` header |
| 19 | |
| 20 | - Upgrade `waf` to version 2.0.21 |
| 21 | |
Davide Pesavento | dd00076 | 2020-01-15 01:34:33 -0500 | [diff] [blame] | 22 | ## Version 0.5.3 |
| 23 | |
| 24 | - Schedule sync Interest when receiving a NACK with reason `NoRoute` (Issue #5012) |
| 25 | |
| 26 | - Use properly seeded pseudorandom number generator from ndn-cxx |
| 27 | |
| 28 | - Fix compilation against the latest version of ndn-cxx |
| 29 | |
| 30 | - Upgrade `waf` to version 2.0.14 and other build system improvements |
Alexander Afanasyev | f5fca3a | 2018-02-22 10:50:04 -0500 | [diff] [blame] | 31 | |
Alexander Afanasyev | e19f3f6 | 2018-10-16 11:25:27 -0400 | [diff] [blame] | 32 | ## Version 0.5.2 |
| 33 | |
| 34 | - The build requirements have been upgraded to gcc >= 5.3 or clang >= 3.6. |
| 35 | This effectively drops support for all versions of Ubuntu older |
| 36 | than 16.04 that use distribution-provided compilers and packages. |
| 37 | |
| 38 | - Transition to v0.3 packet format (Issues #4691 and #4684) |
| 39 | |
Alexander Afanasyev | e374e70 | 2018-05-06 20:47:13 -0700 | [diff] [blame] | 40 | ## Version 0.5.1 |
| 41 | |
Davide Pesavento | dd00076 | 2020-01-15 01:34:33 -0500 | [diff] [blame] | 42 | - Fix forceful shutdown of `Face` when destructing `Logic` instance (Issue #4525) |
Alexander Afanasyev | e374e70 | 2018-05-06 20:47:13 -0700 | [diff] [blame] | 43 | |
Davide Pesavento | dd00076 | 2020-01-15 01:34:33 -0500 | [diff] [blame] | 44 | - Fix compilation against the latest version of ndn-cxx |
Alexander Afanasyev | e374e70 | 2018-05-06 20:47:13 -0700 | [diff] [blame] | 45 | |
Davide Pesavento | dd00076 | 2020-01-15 01:34:33 -0500 | [diff] [blame] | 46 | - Upgrade `waf` to version 2.0.6 and other build system improvements |
Alexander Afanasyev | e374e70 | 2018-05-06 20:47:13 -0700 | [diff] [blame] | 47 | |
Alexander Afanasyev | f5fca3a | 2018-02-22 10:50:04 -0500 | [diff] [blame] | 48 | ## Version 0.5.0 |
| 49 | |
Davide Pesavento | dbac16a | 2021-02-18 20:55:43 -0500 | [diff] [blame^] | 50 | - *Breaking change:* Use bzip2 compression of sync Data payload (Issue #4140) |
Alexander Afanasyev | f5fca3a | 2018-02-22 10:50:04 -0500 | [diff] [blame] | 51 | |
| 52 | - Disallow Interest loopback on sync prefix (Issue #3979) |
| 53 | |
| 54 | - Avoid ABI differences between debug/optimized modes (Issue #4496) |
| 55 | |
Davide Pesavento | dd00076 | 2020-01-15 01:34:33 -0500 | [diff] [blame] | 56 | - Extend `Socket` and `Logic` API: |
Alexander Afanasyev | f5fca3a | 2018-02-22 10:50:04 -0500 | [diff] [blame] | 57 | |
Davide Pesavento | dd00076 | 2020-01-15 01:34:33 -0500 | [diff] [blame] | 58 | - Allow customization of sync Interest lifetime (Issue #4490) |
Alexander Afanasyev | f5fca3a | 2018-02-22 10:50:04 -0500 | [diff] [blame] | 59 | |
| 60 | - Limit the size of created sync Data and enable ability to |
| 61 | customize the maximum packet size through environment variable |
| 62 | (Issue #4140) |
| 63 | |
| 64 | - Allow override of the session number |
| 65 | |
| 66 | - Disable use of Exclude filter (preparation for Exclude deprecation |
| 67 | in NDN and implementation was only partially correct) |