Skip to content

Commit 6461369

Browse files
duartenfonsecaDuarte Fonseca
authored andcommitted
vSomeIP-Lib 3.5.3
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
1 parent bbd29db commit 6461369

File tree

5 files changed

+39
-8
lines changed

5 files changed

+39
-8
lines changed

Android.bp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,8 @@ cc_library_shared {
7979

8080
cflags: [
8181
"-DWITHOUT_SYSTEMD",
82-
"-DVSOMEIP_VERSION=\"3.5.1\"",
83-
"-DVSOMEIP_COMPAT_VERSION=\"3.5.1\"",
82+
"-DVSOMEIP_VERSION=\"3.5.3\"",
83+
"-DVSOMEIP_COMPAT_VERSION=\"3.5.3\"",
8484
"-DVSOMEIP_BASE_PATH=\"/vendor/run/someip/\"",
8585
"-DUSE_DLT",
8686
],

Android.mk

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ LOCAL_CFLAGS := \
100100
-frtti \
101101
-fexceptions \
102102
-DWITHOUT_SYSTEMD \
103-
-DVSOMEIP_VERSION=\"3.5.1\" \
103+
-DVSOMEIP_VERSION=\"3.5.3\" \
104104
-DVSOMEIP_BASE_PATH=\"/vendor/run/someip/\" \
105105
-Wno-unused-parameter \
106106
-Wno-non-virtual-dtor \
@@ -147,7 +147,7 @@ LOCAL_CFLAGS := \
147147
-frtti \
148148
-fexceptions \
149149
-DWITHOUT_SYSTEMD \
150-
-DVSOMEIP_VERSION=\"3.5.1\" \
150+
-DVSOMEIP_VERSION=\"3.5.3\" \
151151
-DVSOMEIP_BASE_PATH=\"/vendor/run/someip/\" \
152152
-Wno-unused-parameter \
153153
-Wno-non-virtual-dtor \
@@ -194,8 +194,8 @@ LOCAL_CFLAGS := \
194194
-frtti \
195195
-fexceptions \
196196
-DWITHOUT_SYSTEMD \
197-
-DVSOMEIP_VERSION=\"3.5.1\" \
198-
-DVSOMEIP_COMPAT_VERSION=\"3.5.1\" \
197+
-DVSOMEIP_VERSION=\"3.5.3\" \
198+
-DVSOMEIP_COMPAT_VERSION=\"3.5.3\" \
199199
-DVSOMEIP_BASE_PATH=\"/vendor/run/someip/\" \
200200
-Wno-unused-parameter \
201201
-Wno-non-virtual-dtor \

CHANGES

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,37 @@
11
Changes
22
=======
33

4+
v3.5.3
5+
- Add timeout for detached threads
6+
- Update wireshark dissector
7+
- fix race condition on boost async operations
8+
- Fix core dump back traces
9+
- Enabled initial event tests
10+
- Add vsomeip config parsing
11+
- Whitelist initial events tests
12+
- Adds on_register_application_ack
13+
- Suspend resume tests fix
14+
- add service and method ids to the clients_ array
15+
- Fix capturing references to stack variables
16+
- Protects receiver_ and lock to routing stop function
17+
- Add include unordered map
18+
- Add remove local in deregistration(rmi)
19+
- protect deserialization from malicious input
20+
- Ignore send_cbk if the socket is not connected
21+
- Move suspend/resume of endpoints
22+
- Change handling of availabilities for wildcasts
23+
- Allow to configure the initial routing state
24+
- Enable subscription expiration
25+
- Fixed if-guard name
26+
- Remove redundant ostream manipulators sync update
27+
- Fix capturing references to stack variables
28+
- Log offers on first occurrence in routing manager
29+
30+
v3.5.2
31+
- Revert fix compile issue with pthreads in android commit
32+
- Revert Force abort hanging detached threads commit
33+
- Remove dead code path
34+
435
v3.5.1
536
- Restructure Network Tests CMakeLists
637
- policy.cpp unit test

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ set (VSOMEIP_COMPAT_NAME vsomeip)
1111

1212
set (VSOMEIP_MAJOR_VERSION 3)
1313
set (VSOMEIP_MINOR_VERSION 5)
14-
set (VSOMEIP_PATCH_VERSION 1)
14+
set (VSOMEIP_PATCH_VERSION 3)
1515
set (VSOMEIP_HOTFIX_VERSION 0)
1616

1717
set (VSOMEIP_VERSION ${VSOMEIP_MAJOR_VERSION}.${VSOMEIP_MINOR_VERSION}.${VSOMEIP_PATCH_VERSION})

libvsomeip.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
- name: libvsomeip
2-
version: 3.5.1
2+
version: 3.5.3
33
vendor: Lynx Team
44
license:
55
concluded: CLOSED and MPLv2

0 commit comments

Comments
 (0)