CHANGELOG 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. This changelog reports changes to the public API. Internal refactorings and bug
  2. fixes are not reported here.
  3. 2017-07-04 jpfr <julius.pfrommer at web.de>
  4. * Return partially overlapping ranges
  5. Test the integrity of the range and compute the max index used for every
  6. dimension. The standard says in Part 4, Section 7.22:
  7. When reading a value, the indexes may not speify a range that is within
  8. the bounds of the array. The Server shall return a partial result if some
  9. elements exist within the range.
  10. 2017-07-03 jpfr <julius.pfrommer at web.de>
  11. * Implement asynchronous service calls for the client
  12. All OPC UA services are asynchronous in nature. So several service calls can
  13. be made without waiting for a response first. Responess may come in a
  14. different ordering. The client takes a method pointer and a data pointer to
  15. perform an asynchronous callback on the request response.
  16. Synchronous service calls are still supported in the client. Asynchronous
  17. responses are processed in the background until the synchronous response (the
  18. client is waiting for) returns the control flow back to the user.
  19. 2017-06-26 janitza-thbe
  20. * Enable IPv6 in the networklayer plugin
  21. The server networklayer listens on several sockets for available networks and
  22. IP versions. IPv4 connections are still supported.
  23. The OPC Foundation ANSI C Stack before 2016 does not fully support IPv6. On
  24. Windows, the 'localhost' target is resolved to IPv6 by default. Old
  25. applications (e.g. the Conformance Testing Tools) need to connect to
  26. 127.0.0.1 instead of 'localhost' to force IPv4.
  27. 2017-06-16 jpfr <julius.pfrommer at web.de>
  28. * Require the AccessLevel bit UA_ACCESSLEVELMASK_READ for reading
  29. Set the bit by default when adding nodes for a smooth transition to the new
  30. API. This will change at a later point with an additional node settings
  31. argument for the AddNodes methods.
  32. 2017-05-03 pro <profanter at fortiss.org>
  33. * Array dimensions are UInt32 also for the highlevel client read service
  34. 2017-04-16 jpfr <julius.pfrommer at web.de>
  35. * Refactor UA_parseEndpointUrl to work with UA_String
  36. The output hostname and path now point into the original endpointUrl with an
  37. appropriate length.
  38. 2017-04-14 jpfr <julius.pfrommer at web.de>
  39. * Auto-instantiate only child nodes marked as mandatory (fixes #1004)