Releases: Apollo3zehn/FluentModbus
Releases · Apollo3zehn/FluentModbus
v5.3.0
v5.2.0
v5.1.0
v5.0.3
v5.0.2
Bugs Fixed
- The Modbus RTU client did not correctly detect response frames (thanks @zhangchaoza, fixes #83)
v5.0.1
Bugs Fixed
- The Modbus server did not correctly detect request frames (thanks @jmsqlr, #75 (comment))
v5.0.0
Breaking Changes
- The previously introduced TCP client constructor overload was called
Connect
although it expected a totally externally managed TCP client which should already be connected. This constructor is now namedInitialize
and its signature has been adapted to better fit its purpose. The passed TCP client (orIModbusRtuSerialPort
in case of the RTU client) is now not modified at all, i.e. configured timeouts or other things are not applied to these externally managed instances (#78).
Features
- Modbus TCP and RTU clients implement
IDisposable
so you can do the following now:using var client = new ModbusTcpClient(...)
(#67) - Modbus server base class has now a virtual
Stop
method so the actual server can be stopped using a base class reference (#79).
Bugs Fixed
- The Modbus server ignored the unit identifier and responded to all requests (#79).
- Modbus server side read timeout exception handling is more defined now:
- The TCP server closes the connection.
- The Modbus RTU server ignores the exception as there is only a single connection and if that one is closed, there would be no point in keeping the RTU server running.
- Modbus server did not properly handle asynchronous cancellation (#79).
Thanks @schotime and @LukasKarel for your PRs!
v4.1.0
Features
- Added a new constructor to the
ModbusTcpClient
which allows passing your own externally managedTcpClient
.
Fuget API Diff
https://www.fuget.org/packages/FluentModbus/4.1.0/lib/netstandard2.1/diff/4.0.0/
v4.0.0
v4.0.0-preview.5
Bugs Fixed
- Fixed a bug that caused Modbus RTU frames to be detected incorrectly under certain circumstances (#75 ). Thanks @iberisoft !