aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatias Elo <matias.elo@nokia.com>2021-09-29 14:26:48 +0300
committerMatias Elo <matias.elo@nokia.com>2021-10-01 10:20:36 +0300
commitec78e5305c387cef47be7479d2b9f85482e20b40 (patch)
tree259731819a0291c0c23052c1a5a44e4f873e9e0f
parenta369bcd19a32cae230b9428e29c008dbd785c681 (diff)
api: increment ODP API version to 1.32.0.0v1.32.0.0
Increment API version number to reflect the following changes: Backward incompatible: * ipsec: added destination queue capabilities odp_ipsec_capability_t.queue_type_sched and odp_ipsec_capability_t.queue_type_plain * ipsec: modified specification to not promise the original packet back after all error cases Backward compatible: - ipsec: added original ESP/AH packet length into IPsec packet result (odp_ipsec_packet_result_t.orig_ip_len) - packet: added odp_packet_reass_info() function for reading completed reassembly details - std: moved all contents of support and feature modules into ODP Std module Helper library (1.2.0): Backward incompatible: - cli: replaced odph_cli_start() function with odph_cli_run(), which doesn't automatically create a separate thread for running the CLI server. - linux: deprecated odph_odpthread_t and odph_odpthread_params_t types - linux: added odph_thread_param_init() function for initializing thread parameters - linux: added odph_thread_common_param_init() function for initializing thread common parameters Backward compatible: - cli: added odph_cli_param_t.hostname parameter for providing a custom CLI prompt hostname - cli: added odph_cli_log_va() function for user defined CLI commands - linux: added odph_thread_param_t.stack_size parameter for configuring minimum thread stack size - linux: added odph_thread_common_param_t.sync_timeout parameter for configuring synchronized thread creation timeout Signed-off-by: Matias Elo <matias.elo@nokia.com> Reviewed-by: Petri Savolainen <petri.savolainen@nokia.com>
-rw-r--r--CHANGELOG51
-rw-r--r--configure.ac6
2 files changed, 54 insertions, 3 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 6eaac8ef7..1429249e7 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,54 @@
+== OpenDataPlane (1.32.0.0)
+=== Backward incompatible API changes
+==== IPsec
+* Added destination queue capabilities `odp_ipsec_capability_t.queue_type_sched`
+and `odp_ipsec_capability_t.queue_type_plain`
+* Modified specification to not promise the original packet back after all error
+cases
+
+=== Backward compatible API changes
+==== IPsec
+* Added original ESP/AH packet length into IPsec packet result
+(`odp_ipsec_packet_result_t.orig_ip_len`)
+
+==== Packet
+* Added `odp_packet_reass_info()` function for reading completed reassembly
+details
+
+==== Std
+* Moved all contents of support and feature modules into ODP Std module
+
+=== Helper (1.2.0)
+==== Backward incompatible changes
+===== CLI
+* Replaced `odph_cli_start()` function with `odph_cli_run()`, which doesn't
+automatically create a separate thread for running the CLI server.
+
+===== Linux
+* Deprecated `odph_odpthread_t` and `odph_odpthread_params_t` types
+* Added `odph_thread_param_init()` function for initializing thread parameters
+* Added `odph_thread_common_param_init()` function for initializing thread
+common parameters
+
+==== Backward compatible changes
+===== CLI
+* Added `odph_cli_param_t.hostname` parameter for providing a custom CLI prompt
+hostname
+* Added `odph_cli_log_va()` function for user defined CLI commands
+
+===== Linux
+* Added `odph_thread_param_t.stack_size` parameter for configuring minimum
+thread stack size
+* Added `odph_thread_common_param_t.sync_timeout` parameter for configuring
+synchronized thread creation timeout
+
+=== Implementation
+==== Crypto
+* AES-EEA2 and AES-EIA2 crypto algorithms that operate in bit mode interpret the
+crypto/auth offset now as bits as specified in the ODP API. This correction
+requires corresponding changes in applications that have relied on the old,
+incorrect behavior that interpreted the offset in bytes.
+
== OpenDataPlane (1.31.0.0)
=== Backward incompatible API changes
==== Traffic Manager
diff --git a/configure.ac b/configure.ac
index e1f050a81..e2a227cd2 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3,7 +3,7 @@ AC_PREREQ([2.5])
# ODP API version
##########################################################################
m4_define([odpapi_generation_version], [1])
-m4_define([odpapi_major_version], [31])
+m4_define([odpapi_major_version], [32])
m4_define([odpapi_minor_version], [0])
m4_define([odpapi_point_version], [0])
m4_define([odpapi_version],
@@ -21,8 +21,8 @@ AC_SUBST(ODP_VERSION_API_MINOR)
# Helper library version
##########################################################################
m4_define([odph_version_generation], [1])
-m4_define([odph_version_major], [1])
-m4_define([odph_version_minor], [1])
+m4_define([odph_version_major], [2])
+m4_define([odph_version_minor], [0])
m4_define([odph_version],
[odph_version_generation.odph_version_major.odph_version_minor])