forked from open62541/open62541
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG
50 lines (35 loc) · 1.8 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
This changelog reports changes visible through the public API. Internal refactorings and bug
fixes are not reported here.
2022-07-07 Andreas Eckerstorfer <estr at keba.com>
* PubSub publisher id types
The union for the PubSub publisher id 'UA_PublisherId' and
the enumeration for the PubSub publisher type 'UA_PublisherIdType'
have been changed to support all specified publisher id types.
The change was done with pull request #5223.
2022-06-09 Andreas Eckerstorfer <estr at keba.com>
* PubSub state change functions
The following functions in ua_pubsub.h have been extended with
an additional parameter for the cause of the state change.
Moreover the parameter order has been changed.
UA_DataSetWriter_setPubSubState
UA_WriterGroup_setPubSubState
UA_DataSetReader_setPubSubState
UA_ReaderGroup_setPubSubState
The change was done with pull request #5162.
2022-05-04 Julius Pfrommer <julius.pfrommer at iosb.fraunhofer.de>
* Server port and hostname configuration
Instead of configuring the port number in the server's
"NetworkLayer", the server configuration now takes a list of
ServerURLs like `opc.tcp://my-server:4840` or
`opc.wss://localhost:443`. The URLs are used both for discovery
and to set up the server sockets based on the defined hostnames
(and ports).
The default is to listen on all interfaces with port 4840 for
incoming TCP connections.
2022-01-12 Mark Giraud <mark.giraud at iosb.fraunhofer.de>
* Empty arrays always match the array dimensions
We consider empty arrays (also null-arrays) to have implied array
dimensions [0,0,...]. So they always match the array dimensions
defined in the variable. With this, the initialization of
variables without a defined value has been simplified.
We now create a null array if one is required.