diff --git a/ChangeLog b/ChangeLog index ea0dcd17..06744600 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,14 @@ +2024-10-17 ipfixprobe-4.13.0 + * usability: introduce docker/podman container to convert PCAP files to CSV + * IPFIX: fix order of TCP options flags + * basicplus: update TCP options mask across flow packets + * utils: introduce memcpy_le32toh() for ipfix representation + * wg: fix parsing and exporting byte order (IPFIX) + * DPDK-ring: optimization: prefetch; read timestamp from HW metadata if available + * cache: optimization - prefetch + * IPv6: fix header parsing + * DPDK&DPDK-ring: fix use of parse_packet(), skip invalid packets causing crash + 2024-08-28 ipfixprobe-4.12.0 * ipfix plugin: support lz4 compression * ipfixprobe: possibility to set workers affinity diff --git a/NEWS b/NEWS index ba30b7de..b519d503 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,23 @@ +2024-10-17 (Tomas Cejka): doc: include generated Doxyfile to create documentation +2024-10-17 (Tomas Cejka): doc: add doxygen comment for parse_packet() +2024-10-16 (Jan Sobol): dpdk-ring - fix checking if any packet has actually been parsed +2024-10-16 (Jan Sobol): dpdk - fix checking if any packet has actually been parsed +2024-10-02 (Damir Zainullin): Fix IPv6 header parsing +2024-09-30 (Pavel Šiška): Merge pull request #220 from CESNET/prefetch-optimizations +2024-09-30 (Pavel Šiška): Merge pull request #219 from CESNET/dpdk-ring-metadata-timestamp +2024-09-30 (Pavel Šiška): Merge pull request #215 from CESNET/new-version +2024-09-26 (Jan Sobol): cache - prefetch flow records before checking their expiration +2024-09-26 (Jan Sobol): dpdk-ring - prefetch dequeued packets before processing +2024-09-25 (Jan Sobol): dpdk-ring - read timestamp from hw metadata if available +2024-09-20 (Tomas Cejka): Merge pull request #216 from CESNET/ipfixprobe-docker-wrapper +2024-09-19 (Tomas Cejka): dist: include docker/ files into distribution archive +2024-09-19 (Jan Sobol): wg - fix parsing and exporting byte order +2024-09-19 (Jan Sobol): utils - introduce memcpy_le32toh function +2024-09-18 (Jan Sobol): basicplus test - fix reference values of tcp options +2024-09-18 (Jan Sobol): basicplus - update tcp options mask across flow packets +2024-09-18 (Jan Sobol): parser - fix order of tcp options flags according to ipfix standard https://www.iana.org/assignments/ipfix/ipfix.xhtml, entity 209 - tcpOptions +2024-09-17 (Jaroslav Pesek): process container - introduce docker/podman container wrapper for processing pcaps to csvs + 2024-08-28 (Pavel Siska): ipfixprobed - add new option LZ4_COMPRESSION to init script and config example 2024-08-28 (Pavel Siska): README.md - add LZ4 compression info 2024-08-28 (Jakub Antonín Štigler): ipfix plugin: add lz4 compression diff --git a/configure.ac b/configure.ac index 83bfe66b..c8f2ee0e 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ([2.69]) -AC_INIT([ipfixprobe], [4.12.0], [nemea@cesnet.cz]) +AC_INIT([ipfixprobe], [4.13.0], [nemea@cesnet.cz]) AC_CONFIG_SRCDIR([main.cpp]) AC_CONFIG_HEADERS([config.h])