From 444737fcb1010086a4798c2adfe4e9af939c9b39 Mon Sep 17 00:00:00 2001 From: Duarte Fonseca Date: Thu, 28 Nov 2024 16:10:08 +0000 Subject: [PATCH] vSomeIP-Lib 3.5.3 Changes: - Add timeout for detached threads - Update wireshark dissector - fix race condition on boost async operations - Enabled initial event tests - Add vsomeip config parsing - Whitelist initial events tests - Adds on_register_application_ack - Suspend resume tests fix - add service and method ids to the clients_ array - Fix capturing references to stack variables - Protects receiver_ and lock to routing stop function - Add include unordered map - Add remove local in deregistration(rmi) - protect deserialization from malicious input - Ignore send_cbk if the socket is not connected - Move suspend/resume of endpoints - Change handling of availabilities for wildcasts - Allow to configure the initial routing state - Enable subscription expiration - Fixed if-guard name - Remove redundant ostream manipulators sync update - Fix capturing references to stack variables - Log offers on first occurrence in routing manager --- CHANGES | 30 ++++++++++++++++++++++++++++++ CMakeLists.txt | 2 +- 2 files changed, 31 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index ca972564b..3bab18db9 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,36 @@ Changes ======= +v3.5.3 +- Add timeout for detached threads +- Update wireshark dissector +- fix race condition on boost async operations +- Enabled initial event tests +- Add vsomeip config parsing +- Whitelist initial events tests +- Adds on_register_application_ack +- Suspend resume tests fix +- add service and method ids to the clients_ array +- Fix capturing references to stack variables +- Protects receiver_ and lock to routing stop function +- Add include unordered map +- Add remove local in deregistration(rmi) +- protect deserialization from malicious input +- Ignore send_cbk if the socket is not connected +- Move suspend/resume of endpoints +- Change handling of availabilities for wildcasts +- Allow to configure the initial routing state +- Enable subscription expiration +- Fixed if-guard name +- Remove redundant ostream manipulators sync update +- Fix capturing references to stack variables +- Log offers on first occurrence in routing manager + +v3.5.2 +- Revert fix compile issue with pthreads in android commit +- Revert Force abort hanging detached threads commit +- Remove dead code path + v3.5.1 - Restructure Network Tests CMakeLists - policy.cpp unit test diff --git a/CMakeLists.txt b/CMakeLists.txt index 7eabb3a81..034c2298b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,7 +11,7 @@ set (VSOMEIP_COMPAT_NAME vsomeip) set (VSOMEIP_MAJOR_VERSION 3) set (VSOMEIP_MINOR_VERSION 5) -set (VSOMEIP_PATCH_VERSION 1) +set (VSOMEIP_PATCH_VERSION 3) set (VSOMEIP_HOTFIX_VERSION 0) set (VSOMEIP_VERSION ${VSOMEIP_MAJOR_VERSION}.${VSOMEIP_MINOR_VERSION}.${VSOMEIP_PATCH_VERSION})