Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

ipfixprobe: increased version, updated ChangeLog, released RPM package #248

Merged
merged 1 commit into from
Dec 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
2024-12-27 ipfixprobe-4.15.0
* dpdk: Add DPDK telemetry
* dpdk: add DPDK port telemetry
* dpdk: fix RSS configuration
* ipfix-elements: fix NTP_USEC_TO_FRAC macro
* docs: revision of web page
* README: update telemetry section

2024-11-14 ipfixprobe-4.14.0
* dpdk: set mempool size as rx queue size

Expand Down
17 changes: 17 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
2024-12-27 (Pavel Siska): dpdk: Add DPDK telemetry
2024-12-27 (Pavel Siska): dpdk: add DPDK port telemetry
2024-12-27 (Pavel Siska): dpdk: add compatible definition macro to dpdkCompact Add RTE_ETH_RSS_GENEVE macro
2024-12-27 (Pavel Siska): dpdk: fix RSS configuration
2024-12-27 (Pavel Siska): dpdk: Add dpdkCompact - compatibility definitions for DPDK versions
2024-12-16 (Pavel Siska): README - update build requirements
2024-12-16 (Pavel Siska): configure.ac - add checks for telemetry and appfs libraries - Added AC_CHECK_LIB for 'telemetry' and 'appfs' to verify library availability. - Ensured 'LIBS' includes '-lappFs -ltelemetry' for proper linking. - Updated RPM dependencies by appending 'telemetry' to RPM_REQUIRES and RPM_BUILDREQ.
2024-12-09 (Jan Sobol): ipfix-elements: fix NTP_USEC_TO_FRAC macro Use standard conversion to ntp timestamps as in https://tickelton.gitlab.io/articles/ntp-timestamps/.
2024-11-28 (Pavel Siska): Readme - update telemetry docs
2024-11-25 (Karel Hynek): docs: fix jekyll links
2024-11-25 (Karel Hynek): docs: fix jekyll base url and update docs description
2024-11-25 (Karel Hynek): docs: fix centering in the website footer
2024-11-20 (Tomas Cejka): docs: revision of web page
2024-11-15 (Karel Hynek): doc: FIX GitHub logo in footer
2024-11-15 (Karel Hynek): README: FIX ipfixprobe logo and link to documentation
2024-11-15 (Karel Hynek): Introduce doc using Jekyll & Update README (#232)

2024-11-12 (Jan Sobol): dpdkDevice: use mempool size as rx queue size instead of burst size
2024-11-12 (Jan Sobol): dpdk: reduce value of DEFAULT_MBUF_POOL_SIZE to use it also as rx queue size

Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Process this file with autoconf to produce a configure script.

AC_PREREQ([2.69])
AC_INIT([ipfixprobe], [4.14.0], [nemea@cesnet.cz])
AC_INIT([ipfixprobe], [4.15.0], [nemea@cesnet.cz])

AC_CONFIG_SRCDIR([main.cpp])
AC_CONFIG_HEADERS([config.h])
Expand Down
Loading