File tree Expand file tree Collapse file tree 5 files changed +30
-9
lines changed Expand file tree Collapse file tree 5 files changed +30
-9
lines changed Original file line number Diff line number Diff line change @@ -80,8 +80,8 @@ cc_library_shared {
80
80
81
81
cflags : [
82
82
" -DWITHOUT_SYSTEMD" ,
83
- " -DVSOMEIP_VERSION=\" 3.4.10 \" " ,
84
- " -DVSOMEIP_COMPAT_VERSION=\" 3.4.10 \" " ,
83
+ " -DVSOMEIP_VERSION=\" 3.5.0 \" " ,
84
+ " -DVSOMEIP_COMPAT_VERSION=\" 3.5.0 \" " ,
85
85
" -DVSOMEIP_BASE_PATH=\" /vendor/run/someip/\" " ,
86
86
" -DUSE_DLT" ,
87
87
],
Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ LOCAL_CFLAGS := \
100
100
-frtti \
101
101
-fexceptions \
102
102
-DWITHOUT_SYSTEMD \
103
- -DVSOMEIP_VERSION=\"3.4.10 \" \
103
+ -DVSOMEIP_VERSION=\"3.5.0 \" \
104
104
-DVSOMEIP_BASE_PATH=\"/vendor/run/someip/\" \
105
105
-Wno-unused-parameter \
106
106
-Wno-non-virtual-dtor \
@@ -147,7 +147,7 @@ LOCAL_CFLAGS := \
147
147
-frtti \
148
148
-fexceptions \
149
149
-DWITHOUT_SYSTEMD \
150
- -DVSOMEIP_VERSION=\"3.4.10 \" \
150
+ -DVSOMEIP_VERSION=\"3.5.0 \" \
151
151
-DVSOMEIP_BASE_PATH=\"/vendor/run/someip/\" \
152
152
-Wno-unused-parameter \
153
153
-Wno-non-virtual-dtor \
@@ -194,8 +194,8 @@ LOCAL_CFLAGS := \
194
194
-frtti \
195
195
-fexceptions \
196
196
-DWITHOUT_SYSTEMD \
197
- -DVSOMEIP_VERSION=\"3.4.10 \" \
198
- -DVSOMEIP_COMPAT_VERSION=\"3.4.10 \" \
197
+ -DVSOMEIP_VERSION=\"3.5.0 \" \
198
+ -DVSOMEIP_COMPAT_VERSION=\"3.5.0 \" \
199
199
-DVSOMEIP_BASE_PATH=\"/vendor/run/someip/\" \
200
200
-Wno-unused-parameter \
201
201
-Wno-non-virtual-dtor \
Original file line number Diff line number Diff line change 1
1
Changes
2
2
=======
3
3
4
+ v3.5.0
5
+ - Load Policies Lazy Load
6
+ - Test - Processing SD messages with unknown type option
7
+ - ensure endpoints before deletion
8
+ - Improve "end of file" error handling
9
+ - Enable debouncing of events & selective events
10
+ - Revert "Test - Processing SD messages with unknown type"
11
+ - Logs added to points of failure on registration process
12
+ - One *.json to ignorem all
13
+ - Someip-tp remote address rework
14
+ - Fix crash in multicast_receive receive_cb
15
+ - Generate network_test configs directly to build
16
+ - Fix deadlock if binding of TCP client endpoint fails
17
+ - Added missing includes of iomanip to support compilation on Mint
18
+ - Cache not yet registered events
19
+ - Return true to make sure endpoints are deleted
20
+ - Byteorder implementation
21
+ - Reorder of prepare_stop method
22
+ - Allows applications in the same process using different security configurations
23
+ - Fix to not ignore stop offers when sd acceptance is not required
24
+
4
25
v3.4.10
5
26
- Fix QNX build
6
27
- Fix missing Stop Offer
Original file line number Diff line number Diff line change @@ -10,8 +10,8 @@ set (VSOMEIP_NAME vsomeip3)
10
10
set (VSOMEIP_COMPAT_NAME vsomeip )
11
11
12
12
set (VSOMEIP_MAJOR_VERSION 3 )
13
- set (VSOMEIP_MINOR_VERSION 4 )
14
- set (VSOMEIP_PATCH_VERSION 10 )
13
+ set (VSOMEIP_MINOR_VERSION 5 )
14
+ set (VSOMEIP_PATCH_VERSION 0 )
15
15
set (VSOMEIP_HOTFIX_VERSION 0 )
16
16
17
17
set (VSOMEIP_VERSION ${VSOMEIP_MAJOR_VERSION} .${VSOMEIP_MINOR_VERSION}.${VSOMEIP_PATCH_VERSION} )
Original file line number Diff line number Diff line change 1
1
- name : libvsomeip
2
- version : 3.4.10
2
+ version : 3.5.0
3
3
vendor : Lynx Team
4
4
license :
5
5
concluded : CLOSED and MPLv2
You can’t perform that action at this time.
0 commit comments