Skip to content

Commit

Permalink
vSomeIP-Lib 3.5.3
Browse files Browse the repository at this point in the history
Changes:
- Add timeout for detached threads
- Update wireshark dissector
- fix race condition on boost async operations
- Fix core dump back traces
- 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
  • Loading branch information
duartenfonseca authored and Duarte Fonseca committed Nov 28, 2024
1 parent bbd29db commit 6461369
Show file tree
Hide file tree
Showing 5 changed files with 39 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Android.bp
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ cc_library_shared {

cflags: [
"-DWITHOUT_SYSTEMD",
"-DVSOMEIP_VERSION=\"3.5.1\"",
"-DVSOMEIP_COMPAT_VERSION=\"3.5.1\"",
"-DVSOMEIP_VERSION=\"3.5.3\"",
"-DVSOMEIP_COMPAT_VERSION=\"3.5.3\"",
"-DVSOMEIP_BASE_PATH=\"/vendor/run/someip/\"",
"-DUSE_DLT",
],
Expand Down
8 changes: 4 additions & 4 deletions Android.mk
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ LOCAL_CFLAGS := \
-frtti \
-fexceptions \
-DWITHOUT_SYSTEMD \
-DVSOMEIP_VERSION=\"3.5.1\" \
-DVSOMEIP_VERSION=\"3.5.3\" \
-DVSOMEIP_BASE_PATH=\"/vendor/run/someip/\" \
-Wno-unused-parameter \
-Wno-non-virtual-dtor \
Expand Down Expand Up @@ -147,7 +147,7 @@ LOCAL_CFLAGS := \
-frtti \
-fexceptions \
-DWITHOUT_SYSTEMD \
-DVSOMEIP_VERSION=\"3.5.1\" \
-DVSOMEIP_VERSION=\"3.5.3\" \
-DVSOMEIP_BASE_PATH=\"/vendor/run/someip/\" \
-Wno-unused-parameter \
-Wno-non-virtual-dtor \
Expand Down Expand Up @@ -194,8 +194,8 @@ LOCAL_CFLAGS := \
-frtti \
-fexceptions \
-DWITHOUT_SYSTEMD \
-DVSOMEIP_VERSION=\"3.5.1\" \
-DVSOMEIP_COMPAT_VERSION=\"3.5.1\" \
-DVSOMEIP_VERSION=\"3.5.3\" \
-DVSOMEIP_COMPAT_VERSION=\"3.5.3\" \
-DVSOMEIP_BASE_PATH=\"/vendor/run/someip/\" \
-Wno-unused-parameter \
-Wno-non-virtual-dtor \
Expand Down
31 changes: 31 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,6 +1,37 @@
Changes
=======

v3.5.3
- Add timeout for detached threads
- Update wireshark dissector
- fix race condition on boost async operations
- Fix core dump back traces
- 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
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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})
Expand Down
2 changes: 1 addition & 1 deletion libvsomeip.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
- name: libvsomeip
version: 3.5.1
version: 3.5.3
vendor: Lynx Team
license:
concluded: CLOSED and MPLv2
Expand Down

0 comments on commit 6461369

Please sign in to comment.