Skip to content

Commit fcb9c24

Browse files
vSomeIP-Lib 3.5.4 (#837)
Changes: - Update documentation - Fix possible dangling pointer - Add strand to send_cbk call to prevent data races on sockets - wireshark_plugin update send command - Documentation add some default values - Fix Find messages with Unicast Flag set to 0 - fix max remote subscription limit - fix race condition on lazy_load_test - Avoid locking while joining multicast group - Add precondition to offer_stop_offer - Delete twice definition of port_t in primitive_types.hpp - Fixing dereference issues - Integration of Suspend/Resume related fixes
1 parent ade0d62 commit fcb9c24

File tree

5 files changed

+22
-8
lines changed

5 files changed

+22
-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.3\"",
83-
"-DVSOMEIP_COMPAT_VERSION=\"3.5.3\"",
82+
"-DVSOMEIP_VERSION=\"3.5.4\"",
83+
"-DVSOMEIP_COMPAT_VERSION=\"3.5.4\"",
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.3\" \
103+
-DVSOMEIP_VERSION=\"3.5.4\" \
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.3\" \
150+
-DVSOMEIP_VERSION=\"3.5.4\" \
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.3\" \
198-
-DVSOMEIP_COMPAT_VERSION=\"3.5.3\" \
197+
-DVSOMEIP_VERSION=\"3.5.4\" \
198+
-DVSOMEIP_COMPAT_VERSION=\"3.5.4\" \
199199
-DVSOMEIP_BASE_PATH=\"/vendor/run/someip/\" \
200200
-Wno-unused-parameter \
201201
-Wno-non-virtual-dtor \

CHANGES

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
Changes
22
=======
3+
v3.5.4
4+
- Update documentation
5+
- Fix possible dangling pointer
6+
- Add strand to send_cbk call to prevent data races on sockets
7+
- wireshark_plugin update send command
8+
- Documentation add some default values
9+
- Fix Find messages with Unicast Flag set to 0
10+
- fix max remote subscription limit
11+
- fix race condition on lazy_load_test
12+
- Avoid locking while joining multicast group
13+
- Add precondition to offer_stop_offer
14+
- Delete twice definition of port_t in primitive_types.hpp
15+
- Fixing dereference issues
16+
- Integration of Suspend/Resume related fixes
317

418
v3.5.3
519
- Add timeout for detached threads

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

0 commit comments

Comments
 (0)