Skip to content

Commit a254203

Browse files
author
Petr Velan
committed
IPFIXcol Relase 0.9.0
1 parent ea1e926 commit a254203

File tree

24 files changed

+49
-23
lines changed

24 files changed

+49
-23
lines changed

base/changelog.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
11
**Future release:**
22

3+
**Version 0.9.0:**
4+
5+
* Many bug fixes
6+
* New ipfix_elements API
7+
* sFlow support is disable by default
38
* Fixed forwarding of UDP templates
49
* Unlimited number of incoming TCP connections
5-
* Fixed statistics rpo multiple inputs with same ODID
10+
* Fixed statistics for multiple inputs with same ODID
611
* Fixed incorrect message when API version does not match
12+
* Added option for single data manager (all ODIDs to single storage plugin)
713

814
**Version 0.8.1:**
915

base/configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
AC_PREREQ([2.60])
4040

4141
# Process this file with autoconf to produce a configure script.
42-
AC_INIT([ipfixcol], [0.8.1])
42+
AC_INIT([ipfixcol], [0.9.0])
4343
AM_INIT_AUTOMAKE([-Wall -Werror foreign -Wno-portability subdir-objects])
4444
LT_PREREQ([2.2])
4545
LT_INIT([dlopen disable-static])

plugins/input/nfdump/changelog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
**Future release:**
22

3+
**Version 0.2.0:**
4+
35
* Support for new extensions (id: 26, 27)
46
* Fixed bug where bad template was used when template ID was 256
57
* Fixed bug with processing big files with multiple data blocks

plugins/input/nfdump/configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838

3939
AC_PREREQ([2.60])
4040
# Process this file with autoconf to produce a configure script.
41-
AC_INIT([ipfixcol-nfdump-input], [0.1.3])
41+
AC_INIT([ipfixcol-nfdump-input], [0.2.0])
4242
AM_INIT_AUTOMAKE([-Wall -Werror foreign -Wno-portability])
4343
LT_PREREQ([2.2])
4444
LT_INIT([dlopen disable-static])

plugins/intermediate/geoip/configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838

3939
AC_PREREQ([2.60])
4040
# Process this file with autoconf to produce a configure script.
41-
AC_INIT([ipfixcol-geoip-inter], [0.0.2])
41+
AC_INIT([ipfixcol-geoip-inter], [0.0.3])
4242
AM_INIT_AUTOMAKE([-Wall -Werror foreign -Wno-portability])
4343
AC_GNU_SOURCE
4444

plugins/intermediate/profile_stats/configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838

3939
AC_PREREQ([2.60])
4040
# Process this file with autoconf to produce a configure script.
41-
AC_INIT([ipfixcol-profilestats-inter], [0.0.2])
41+
AC_INIT([ipfixcol-profilestats-inter], [0.0.3])
4242
AM_INIT_AUTOMAKE([-Wall -Werror foreign -Wno-portability])
4343
LT_PREREQ([2.2])
4444
LT_INIT([dlopen disable-static])

plugins/intermediate/profiler/configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838

3939
AC_PREREQ([2.60])
4040
# Process this file with autoconf to produce a configure script.
41-
AC_INIT([ipfixcol-profiler-inter], [0.0.2])
41+
AC_INIT([ipfixcol-profiler-inter], [0.0.3])
4242
AM_INIT_AUTOMAKE([-Wall -Werror foreign -Wno-portability])
4343
LT_PREREQ([2.2])
4444
LT_INIT([dlopen disable-static])

plugins/intermediate/stats/configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838

3939
AC_PREREQ([2.60])
4040
# Process this file with autoconf to produce a configure script.
41-
AC_INIT([ipfixcol-stats-inter], [0.0.2])
41+
AC_INIT([ipfixcol-stats-inter], [0.0.3])
4242
AM_INIT_AUTOMAKE([-Wall -Werror foreign -Wno-portability])
4343
LT_PREREQ([2.2])
4444
LT_INIT([dlopen disable-static])

plugins/intermediate/uid/configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838

3939
AC_PREREQ([2.60])
4040
# Process this file with autoconf to produce a configure script.
41-
AC_INIT([ipfixcol-uid-inter], [0.0.2])
41+
AC_INIT([ipfixcol-uid-inter], [0.0.3])
4242
AM_INIT_AUTOMAKE([-Wall -Werror foreign -Wno-portability])
4343
AC_GNU_SOURCE
4444

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
**Future release:**
22

3-
* Fixed uninitialized variable `last_flush`
4-
3+
**Version 1.5.0:**
54

5+
* Minor tweaks in -part.txt
6+
* Fixed prefix error if name_type == "prefix"
7+
* Various coding style improvements
8+
* Updated pugixml from v1.0 to v1.6
9+
* Improved resilience against malfored variable-length specs
10+
* Consistently using unsigned integers to avoid casting to wider (signed) int
11+
* Removed duplicate logging
12+
* Added support for old gnu++0x standard, forcing gnu++11 where necessary
13+
* Data types for enterprise and field IDs are now declared more precisely
14+
* Fixed dir_check function return value. The issue caused wrong writeout of buffered data
15+
* Added/fixed Arch Linux support
16+
* Fixed uninitialized variable `last_flush`

0 commit comments

Comments
 (0)