Skip to content

Commit aff72c4

Browse files
fabiofcmonteiroVictor Carvalho
authored andcommitted
vSomeIP-Lib 3.5.10 Release
Update vsomeip-lib to v3.5.10 Fix/doc big_payload_test fix and doc debounce_test Create hostname test ltsei: Cast brings back compatibility with gcc 9 rmi: add logging of network state Address some minor review comments after logger refactor Fix external_local_payload_test_client_external logging. improve usei consistency credentials: fix missing MSG_NOSIGNAL logger: restore stdout flush remove redundant kill app: fix deadlock on stop Adjust registration state before offerings remove cliend_id tests from whitelist docker: add strace to network_tests Use boost stacktrace instead of execinfo usei: remove use of SO_REUSEPORT add_guest only updates rmc
1 parent 176aaef commit aff72c4

File tree

5 files changed

+37
-8
lines changed

5 files changed

+37
-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.9\"",
83-
"-DVSOMEIP_COMPAT_VERSION=\"3.5.9\"",
82+
"-DVSOMEIP_VERSION=\"3.5.10\"",
83+
"-DVSOMEIP_COMPAT_VERSION=\"3.5.10\"",
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
@@ -101,7 +101,7 @@ LOCAL_CFLAGS := \
101101
-frtti \
102102
-fexceptions \
103103
-DWITHOUT_SYSTEMD \
104-
-DVSOMEIP_VERSION=\"3.5.9\" \
104+
-DVSOMEIP_VERSION=\"3.5.10\" \
105105
-DVSOMEIP_BASE_PATH=\"/vendor/run/someip/\" \
106106
-Wno-unused-parameter \
107107
-Wno-non-virtual-dtor \
@@ -160,7 +160,7 @@ LOCAL_CFLAGS := \
160160
-frtti \
161161
-fexceptions \
162162
-DWITHOUT_SYSTEMD \
163-
-DVSOMEIP_VERSION=\"3.5.9\" \
163+
-DVSOMEIP_VERSION=\"3.5.10\" \
164164
-DVSOMEIP_BASE_PATH=\"/vendor/run/someip/\" \
165165
-Wno-unused-parameter \
166166
-Wno-non-virtual-dtor \
@@ -207,8 +207,8 @@ LOCAL_CFLAGS := \
207207
-frtti \
208208
-fexceptions \
209209
-DWITHOUT_SYSTEMD \
210-
-DVSOMEIP_VERSION=\"3.5.9\" \
211-
-DVSOMEIP_COMPAT_VERSION=\"3.5.9\" \
210+
-DVSOMEIP_VERSION=\"3.5.10\" \
211+
-DVSOMEIP_COMPAT_VERSION=\"3.5.10\" \
212212
-DVSOMEIP_BASE_PATH=\"/vendor/run/someip/\" \
213213
-Wno-unused-parameter \
214214
-Wno-non-virtual-dtor \

CHANGES

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,34 @@
11
Changes
22
=======
3+
v3.5.10
4+
- global
5+
- Resolve build error when compiling using gcc 9.
6+
- Improve logging of network states by periodically
7+
dumping the state of /proc/net/tcp+udp
8+
- Minor logger improvements
9+
- Improve logging consistency of UDP server endpoint
10+
- Add missing MSG_NOSIGNAL to send_credentials to avoid SIGPIPE
11+
- Use Boost stacktrace instead of execinfo
12+
13+
- endpoint
14+
- Remove use of SO_REUSEPORT in UDP server endpoint
15+
16+
- application
17+
- Fix deadlock on stop
18+
19+
- routing
20+
- Adjust registration state before offerings
21+
- Rework of add_guest to avoid issues on (de)registration
22+
23+
- tests
24+
- network tests
25+
- Fix and/or document big_payload_test,
26+
debounce_test, external_local_payload_test_client_external
27+
- Create test to validate hostname config
28+
- Remove client_id tests from whitelist
29+
- Remove redundant kill
30+
- Add strace utility to network tests containers
31+
332
v3.5.9
433
- global
534
- Add vsomeip version to cmake log

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 9)
14+
set (VSOMEIP_PATCH_VERSION 10)
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.9
2+
version: 3.5.10
33
vendor: Lynx Team
44
license:
55
concluded: CLOSED and MPLv2

0 commit comments

Comments
 (0)