CHANGELOG 2.0 KB

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