build: update waf to version 2.0.24

Change-Id: I57b597fb5933e46b55979ad6b1a62a7fd40c645d
This commit is contained in:
Davide Pesavento
2022-12-02 18:24:16 -05:00
parent a68af8129e
commit 6b78a53cf7
4 changed files with 32 additions and 32 deletions
+5 -1
View File
@@ -26,7 +26,11 @@ case $(uname) in
esac
export CACHE_DIR=${CACHE_DIR:-/tmp}
[[ $JOB_NAME == *"code-coverage" ]] && export DISABLE_ASAN=yes
if [[ $JOB_NAME == *"code-coverage" ]]; then
export DISABLE_ASAN=yes
export DISABLE_HEADERS_CHECK=yes
fi
for file in .jenkins.d/*; do
[[ -f $file && -x $file ]] || continue
+1 -2
View File
@@ -37,8 +37,7 @@ New features
- Advisory limit of ``NameTree`` depth (:issue:`4262`)
- `Contributing guide <https://github.com/named-data/NFD/>`__ and `code of conduct
<https://github.com/named-data/NFD/>`__ (:issue:`3898`)
- Contributor's Guide and Code of Conduct (:issue:`3898`)
Updates
^^^^^^^
+18 -21
View File
@@ -3,31 +3,31 @@ NFD version 22.02
Release date: February 17, 2022
Note that starting with this release, NFD switched to a new versioning convention:
``YEAR.MONTH[.REVISION]``.
Note that starting with this release, NFD switched to a date-based versioning scheme:
``YEAR.MONTH[.PATCH]`` (``YY.0M[.MICRO]`` in `CalVer <https://calver.org/>`__ syntax).
Notable changes and new features
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Remove NACKs from multicast strategy (:issue:`5146`)
- Dispatch pending interests when a new next hop is created in ``MulticastStrategy``
- Dispatch pending interests when a new next hop is created in :nfd:`MulticastStrategy`
(:issue:`4931`)
- Reorder function parameters in Strategy classes to make the API more uniform
- Remove Nacks from :nfd:`MulticastStrategy` (:issue:`5146`)
- Rename the ASF strategy parameter ``n-silent-timeouts`` to ``max-timeouts``
- Reorder function parameters in :nfd:`Strategy` class to make the API more uniform
(:issue:`5173`)
- Add default ``HopLimit`` to Interests when missing (:issue:`5171`)
- Allow batch command processing by ``nfdc`` to accommodate case when ``nfdc`` is used to
create multiple faces/routes at once (:issue:`5169`)
- Update ``Interest::ForwardingHint`` format (:issue:`5187`)
- Rename the ASF strategy parameter ``n-silent-timeouts`` to ``max-timeouts``
- Update Interest ``ForwardingHint`` format (:issue:`5187`)
- Allow setting default UDP face MTU in ``nfd.conf`` (:issue:`5138`)
- Allow batch command processing by ``nfdc`` to accommodate the case when ``nfdc`` is
used to create multiple faces/routes at once (:issue:`5169`)
Improvements and bug fixes
^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -38,18 +38,18 @@ Improvements and bug fixes
- Fix and simplify enumeration logic in ``Forwarder::onNewNextHop()``
- Use per-upstream suppression in ASF strategy (:issue:`5140`)
- Use per-upstream retx suppression in ASF strategy (:issue:`5140`)
- Use typed name components for (versioned) strategy names (:issue:`5044`)
- Avoid extending the dataset expiration in ``ForwarderStatusManager``
- ``DeadNonceList`` improvements
- :nfd:`DeadNonceList` improvements
* Code cleanup/modernization
* Prevent duplicate entries (:issue:`5167`)
* Improve logging (:issue:`5165`)
* Increase initial and minimum capacity
* Improve logging (:issue:`5165`)
- Use the default dataset expiration in :nfd:`ForwarderStatusManager`
- Handle error when calling ``remote_endpoint`` on a TCP socket (:issue:`5158`)
@@ -58,9 +58,6 @@ Improvements and bug fixes
Removals
^^^^^^^^
- Eliminate ``Forwarder::dispatchToStrategy()`` (use direct call to
``StrategyChoice::findEffectiveStrategy(PitEntry)``)
- Best-route strategy version 1 (legacy)
- NCC strategy (legacy)
- Best-route strategy version 1 (legacy)
Vendored
+8 -8
View File
File diff suppressed because one or more lines are too long