NEWS 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427
  1. libmodbus 3.1.2 (2014-XX-XX)
  2. ============================
  3. If you still want to listen any addresses in your TCP IPv4 server, you must now
  4. set the IP address to NULL in modbus_new_tcp before listening. Now,
  5. modbus_tcp_listen only listen the IP address set in the Modbus context (see
  6. documentation).
  7. This release introduces API changes on modbus_get_byte_timeout,
  8. modbus_get_response_timeout, modbus_set_byte_timeout,
  9. modbus_set_response_timeout to ease writing of language bindings.
  10. - Filter of IP addresses in IPv4 server (closes #190)
  11. - Allow to listen any hosts in IPv6 (closes #32)
  12. - Define and public export of MODBUS_MAX_PDU_LENGTH (closes #167)
  13. - Truncate data from response in report_slave_id to new max arg (closes #167)
  14. - Fix response timeout modification on connect (closes #80)
  15. - New API to set/get response and byte timeouts.
  16. New unit tests and updated documentation.
  17. - Export Modbus function codes supported by libmodbus
  18. - Fix bandwidth-server-one (closes #152)
  19. - Check debug flag in RTU code
  20. - Remove warnings caused by shadowed 'index' variable.
  21. Thanks to Åke Forslund.
  22. - Use accept4 in TCP PI if available
  23. - Add documentation for tcp[_pi]_accept (closes #31)
  24. - Fix mistake in modbus_tcp_listen documentation
  25. - Add documentation for modbus_tcp_pi_listen
  26. - Fix for MinGW and Windows (#144, #169, #175, #180, #181, #187)
  27. Thanks to Marjan Tomas.
  28. - Many other fixes (#134, #157, #158, #183, #184) and improvements.
  29. libmodbus 3.1.1 (2013-10-06)
  30. ============================
  31. More robust to exploits, more compliant and better handling of connect/close
  32. sequences. Windows support still broken.
  33. - New unit tests
  34. - Fix remote buffer overflow vulnerability (closes #25, #105)
  35. - Explain how to define response timeouts when many RTU slaves
  36. - Fix receiving of incorrect queries in write_single and mask_write_register
  37. Thanks to James Nutaro.
  38. - Check return value of autoreconf.
  39. Thanks to Lauri Nurmi
  40. - Constant for broacast and test ordering
  41. - Fix the fix of device string check
  42. - Various changes to try to improve *broken* Windows support
  43. - Try to fix MinGW compilation
  44. - Portable use of bswap_32
  45. - Improve support of MacOS X
  46. - Fix socket value on init/close
  47. - Returns -1 on invalid mode in modbus_rtu_set_rts
  48. - Protect all public functions against invalid context
  49. - Sleep for delay of response timeout before reconnect (closes #77).
  50. Thanks to Karl Palsson.
  51. - Baud rate until 4,000,000 (POSIX), 1,000,000 (Windows) (closes #93)
  52. - New modbus_get|set_float_dcba to get|set float in inversed byte order
  53. - Remove unsupported -Wtype-limits for GCC < 4.3.5 (closes #109)
  54. - Enable out-of-source build. Thanks to Yegor Yefremov.
  55. - Fix alignment problem on ARMv5 platform
  56. - Improvement to Debian package. Thanks to Alexander Klauer.
  57. - Improve support of VS 2005. Thanks to Petr Gladkiy.
  58. - Add documentation for modbus_mask_write_register (closes #91).
  59. Thanks to Martijn de Gouw.
  60. - Avoid C99 declaration in win32 section code (closes #92).
  61. Thanks to oldfaber and endrelovas.
  62. - Add a windows scripting host configure file.
  63. Thanks to oldfaber and Stéphane Raimbault.
  64. - Fix typo in modbus_strerror documentation. Thanks to Mirko Rajkovaca.
  65. - Rename reserved C++ keywords of modbus_mask_write_register.
  66. Thanks Tobias Doerffel.
  67. - Another quick workaround for deficient OS (closes #63)
  68. - Add support for Mask Write Register
  69. - Fix missing close on socket in random-test-server.
  70. Thanks to Damian Zieliński.
  71. - Use nonblocking sockets on Win32 and OS X/iOS too.
  72. Thanks to Julian Raschke.
  73. - Fix all compilations warnings spotted by new compilation flags
  74. - Major update of build system
  75. - Calculate RTS activation time by send length
  76. - Dynamic memory allocation of device name (closes #11)
  77. - Add unit tests for modbus_mapping_new
  78. - Add Visual Studio 2008 project files by oldfaber
  79. - Fix missing argument in synopsis section of modbus_rtu_set_serial_mode
  80. - Fix wrong constant names to create version number
  81. - More compilation fixes for Windows by oldfaber.
  82. - Fix wrong constant names to create version number.
  83. Thanks to Denis Davydov.
  84. libmodbus 3.1.0 (2012-06-22)
  85. ============================
  86. Major changes to handle many slaves in RTU mode, non blocking connections and
  87. RTS flow control.
  88. - Fixes for Microsoft Visual C++ compiler
  89. - Fixes for Windows. Thanks to oldfaber
  90. - Return value of _modbus_tcp_pi_connect() on failure (closes #61)
  91. - Avoid ioctl call on non-RS485 ports. Thanks to Michael Haberler
  92. - Display node and service in PI and port in IPv4 at connection
  93. - Return -1 on getaddrinfo error and print error in debug mode
  94. - More robust way to establish the connection in non blocking mode
  95. - TCP - Socket in non blocking mode by default. Thanks to Thomas Stalder
  96. - Apply CLOEXEC flag for TCP protocol independent too (IPv6)
  97. - New RTU receive() to ignore confirmation from other slaves (closes #18)
  98. - Move RTU filtering in CRC check to avoid useless call to modbus_reply
  99. - Unique transaction identifier by TCP connection
  100. - Use accept4 with SOCK_CLOEXEC when available (Linux)
  101. - Open fd and socket with the CLOEXEC flag when available
  102. - Exception response on report slave ID wasn't detected (closes #27)
  103. - Provides a way to disable the byte timeout (Alex Stapleton)
  104. - Added slave ID check for response messages (Alex Stapleton)
  105. - RTS flow control with modbus_rtu_set_rts and modbus_rtu_get_rts
  106. functions by Torello Querci <tquerci@gmail.com> and Stéphane Raimbault.
  107. libmodbus 3.0.4 (2012-05-08)
  108. ============================
  109. - autogen.sh creates symlinks instead of copies
  110. - Add missing m4 directory (closes #103)
  111. - Fix alignment problem on ARMv5 platform
  112. Thanks to Alexander Dahl
  113. - Remove useless test on error_recovery argument
  114. Thanks to Carlos Tangerino
  115. libmodbus 3.0.3 (2012-05-25)
  116. ============================
  117. - Fix another Visual C++ 2008/2010 deficiency (closes #53)
  118. - Add -lsocket to compile on QNX
  119. - Fix TCP PI init under Windows.
  120. Thanks to oldfaber.
  121. - Fix a missing free in random-test-client
  122. Thanks again to Stefan Finzel.
  123. - Fix OMG bug in modbus_mapping_free not freeing memory.
  124. Thanks to Stefan Finzel for the bug report.
  125. - Fix semicolon typo and unistd.h include under Windows.
  126. Thanks to Andrew Kravchuk.
  127. libmodbus 3.0.2 (2012-01-16)
  128. ============================
  129. - Update Debian package
  130. - Documentation fixes and additions
  131. - Add missing C++ macros in public headers.
  132. Thanks to Bernhard Agthe.
  133. - Protects modbus_mapping_free against NULL argument.
  134. Thanks to Andrea Mattia
  135. - Fix check on file doc/libmodbus.7 in acinclude.m4 (closes #28)
  136. - Close file descriptor when the settings don't apply in RTU.
  137. Original patch provided by Thomas Stalder.
  138. - unit-test.h is now generated to avoid config.h dependency.
  139. - Request for Windows Sockets specification version 2.2 instead of 2.0
  140. Thanks to Pavel Mazniker for the report.
  141. libmodbus 3.0.1 (2011-07-18)
  142. ============================
  143. - Avoid useless serial_mode integer when TIOCSRS485 isn't supported
  144. - Fix compilation failure on Windows (RS485 support) by Tobias Doerffel
  145. <tobias.doerffel@gmail.com>
  146. - Properly check TIOCSRS485 define by Matthijs Kool
  147. - Rename package to libmodbus5 to fix lintian warning
  148. libmodbus 3.0.0 (2011-07-11)
  149. ============================
  150. - Revert libmodbus licence from LGPLv3 to LGPLv2.1 to avoid
  151. incompatibility with GPLv2 program. This change has been approved
  152. by Tobias Doerffel, Florian octo Forster and Hannu Vuolasaho.
  153. - Enable RS485 support only when available
  154. - Export modbus_set/get_serial_mode functions on all platforms
  155. - API change for read/write multiple registers function:
  156. * modbus_read_and_write_registers -> modbus_write_and_read_registers
  157. The function name was confusing because the write operation is performed
  158. before the read. Take care to swap the arguments in the migration process.
  159. - Documentation of modbus_write_and_read_registers, modbus_mapping_new/free,
  160. report_slave_id. modbus_get_byte_from_bits, modbus_set_bits_from_byte(s),
  161. modbus_[gs]et_float, modbus_reply and modbus_reply_exception.
  162. - Enhanced report slave ID
  163. - New RPM spec file to package documentation and development files
  164. libmodbus 2.9.4 (2011-06-05)
  165. ============================
  166. - IPv6 support
  167. Make the TCP implementation "protocol independent" by Florian Forster
  168. and Stéphane Raimbault.
  169. - Fix compilation on Windows 7 (x64) with MinGW/MSYS and GCC 4.5
  170. Reported by Patsy Kaye.
  171. - Documentation of libmodbus functions with AsciiDoc (man and HTML) by Stéphane
  172. Raimbault
  173. - Avoid an iteration in flush function
  174. - New functions to send and receive raw requests (modbus_send_raw_request,
  175. modbus_receive_confirmation)
  176. - Fix flush function of TCP backend on Windows
  177. - API changes for server/slave:
  178. * modbus_receive doesn't take socket/fd argument anymore
  179. * new function modbus_set_socket to set socket/fd
  180. - API changes for timeout functions:
  181. * modbus_get_timeout_begin -> modbus_get_response_timeout
  182. * modbus_set_timeout_begin -> modbus_set_response_timeout
  183. * modbus_get_timeout_end -> modbus_get_byte_timeout
  184. * modbus_set_timeout_end -> modbus_set_byte_timeout
  185. - Fix longstanding limitation of server to wait forever
  186. - New functions modbus_set/get_serial_mode by Manfred Gruber and Stéphane
  187. Raimbault for RS485 communications
  188. - Improved recovery mode (see modbus_set_error_recovery documentation) for
  189. data link and protocol errors.
  190. - Fix compilation issue with Microsoft Visual Studio 2008.
  191. Reported by Allan Cornet.
  192. libmodbus 2.9.3 (2011-01-14)
  193. ============================
  194. - Major rewriting of the message reading (no more timeouts on exception)
  195. by Stéphane Raimbault
  196. - New function to reply to an indication with an exception message
  197. modbus_reply_exception()
  198. - New function modbus_get_header_length(modbus_t *ctx)
  199. - New functions to manipulate data:
  200. * MODBUS_GET_INT32_FROM_INT16
  201. * MODBUS_GET_INT16_FROM_INT8
  202. * MODBUS_SET_INT16_TO_INT8
  203. - Fix GH-2. Read/write were swapped in _FC_READ_AND_WRITE_REGISTERS
  204. - Install an ignore handler for SIGPIPE on *BSD
  205. Original patch by Jason Oster.
  206. - Fix closing of Win32 socket.
  207. Reported by Petr Parýzek.
  208. - Fix unit identifier not copied by the TCP server.
  209. Reported by Antti Manninen.
  210. - Fix missing modbus_flush() in unit tests
  211. - Fixes for OpenBSD by Barry Grumbine and Jason Oster
  212. libmodbus 2.9.2 (2010-12-05)
  213. ============================
  214. - Win32 support by Tobias Doerffel
  215. - Split source code around RTU and TCP (backends)
  216. - Rename modbus_[listen|accept] to modbus_tcp_[listen|accept]
  217. - Remove slave argument from modbus_new_rtu()
  218. - Check received function code
  219. - Fix segfault in bandwidth-server-many-up on inet_ntoa() call
  220. - Fix unit test of report slave ID in RTU
  221. - Fix GH-3. Remove inclusion of config.h in modbus.h
  222. - Correctly detect if we are cross-compiling for win32 by Kirill Smelkov.
  223. - Fix setting of the broadcast address
  224. libmodbus 2.9.1 (2010-08-16)
  225. ============================
  226. - Brand new API (see MIGRATION notes)!
  227. - Remove the internal function set_message_length_tcp
  228. - Restore slave ID (server ID) argument in functions
  229. - Error conventions of POSIX systems and error recover
  230. - Parity setting is now a single char ('N', 'E' or 'O')
  231. - Report slave ID server side
  232. - OpenBSD support by Anibal Limón.
  233. - New read and write registers function by Hannu Vuolasaho.
  234. - Versioning infrastructure
  235. Inspired by the Clutter project and the work done by Florian Forster.
  236. - Fix the broadcast constant (255 -> 0)
  237. Reported by David Olivari.
  238. - Fix #463299 - New functions to define the timeouts of begin and end of trame
  239. Original patch by Sisyph (eric-paul).
  240. - Fix #591142 - Slave id check should be disabled in TCP connection
  241. Reported by aladdinwu.
  242. libmodbus 2.1.0 (2010-03-24)
  243. ============================
  244. - New API to read and write float values by Stéphane Raimbault and Florian
  245. Forster.
  246. - New API for slave server (see MIGRATION)
  247. - New slave server able to handle multiple connections
  248. - Slave only replies to broadcast queries or queries with its slave ID
  249. - Improved Modbus protocol conformance
  250. - modbus_param_t is smaller (2 int removed)
  251. - Better error management and SIGPIPE signal is blocked
  252. - Faster
  253. - Fix #333455 - Cygwin IPTOS_LOWDELAY not supported on cygwin
  254. Reported by Jeff Laughlin and Yishin Li.
  255. - Fix #375926 - modbus.c:164: error: `MSG_DONTWAIT' undeclared
  256. Reported and tested by Yishin Li.
  257. - Fix #378981 - CRC error on RTU response doesn't return negative value
  258. Reported by Henrik Munktell.
  259. - Fix report slave ID request
  260. Patch (bzr) provided by Paul Fertser.
  261. - Fix #425604 - Conditional jump or move depends on uninitialised value(s)
  262. Occurs on first occurence of slave timeout.
  263. Reported by Henrik Munktell.
  264. - Fix #457200 - FreeBSD support
  265. Patch provided by Norbert Koch.
  266. Other changes:
  267. - The code is now published and developed on
  268. http://github.com/stephane/libmodbus
  269. - Waf support has been removed
  270. libmodbus 2.0.3 (2009-03-22)
  271. ============================
  272. - Fix CRC error when a slave RTU send a response.
  273. Thanks to Justin Carroll to have reported and tested my patch.
  274. - Remove an assignment in compute_response_length()
  275. - Remove duplicate counter in read_io_status()
  276. - Fix #274511 reported by 'Kylesch'
  277. Invalid error check in modbus_init_listen_tcp
  278. libmodbus 2.0.2 (2008-08-10)
  279. ============================
  280. - Fix a bug reported by email by Davide Pippa
  281. The function modbus_receive must check the number of values
  282. indicated in the response accordingly to the query.
  283. - Fix #241006 reported by Jesus Hernandez Tapia
  284. modbus_check_response() crashes on an invalid exception code
  285. - Reduce the number of function calls (read_reg_response and
  286. preset_response have been removed)
  287. - Add a new unit test for bad response
  288. - Catch the timeout even if the length is equal to a exception trame
  289. - Test only msg_length_computed on change
  290. - Many comments and cleanups
  291. libmodbus 2.0.1 (2008-07-02)
  292. ============================
  293. - Include libmodbus.spec in the tarball
  294. - Fix #241006 reported by Jesus Hernandez Tapia
  295. modbus_check_response() crashes on an invalid exception code
  296. libmodbus 2.0.0 (2008-05-18)
  297. ============================
  298. - Slave API
  299. https://blueprints.launchpad.net/libmodbus/+spec/slave-api
  300. - No more glib dependency
  301. https://blueprints.launchpad.net/libmodbus/+spec/glib-dependency
  302. - Unit testing and many test programs
  303. - Waf build support
  304. https://blueprints.launchpad.net/libmodbus/+spec/waf-support
  305. - MacOS X support by Matthew Butch
  306. https://blueprints.launchpad.net/libmodbus/+spec/macosx-support
  307. - Unit testing (unit-test-slave and unit-test-master)
  308. - Port number is now defined at initialisation by Dirk Reusch
  309. - Better memory management (uint8_t *data and packing of
  310. modbus_param_t)
  311. - Better error management
  312. - Declare many static functions and const arrays
  313. - Enhance an integer division
  314. - The GNU licences LGPL and GPL are in version 3
  315. - Debian and RPM packages (#224496)
  316. - Many cleanups
  317. - Fix #159443 reported by Stefan Bisanz
  318. Index of incoming data in force multiple coils function
  319. - Fix #161989 reported by Konstantinos Togias
  320. Serial device paths more than 10 chars long (eg. /dev/ttyUSB0) don't
  321. fit to modbus_param_t -> device char[11] var.
  322. - Fix #188189 reported by Chris Hellyar
  323. Compute_response_size() no entry for read_input_status()
  324. - Fix #191039 reported by Todd Denniston
  325. modbus.h is not installed at prefix.
  326. - Fix #211460 reported by Todd Denniston
  327. With TCP, automatic reconnect on error may not be desired.
  328. - Fix #224485 reported by Todd Denniston
  329. libmodbus does not link with c++ code.
  330. - Fix #224496 reported by Todd Denniston
  331. It is easier to install on rpm based systems with a spec file.
  332. libmodbus 1.2.5 (2008-05-18)
  333. ============================
  334. - Fix #224485 reported by Todd Denniston
  335. libmodbus does not link with c++ code.
  336. libmodbus 1.2.4 (2008-03-14)
  337. ============================
  338. - Fix #191039 reported by Todd Denniston
  339. modbus.h is not installed at prefix.
  340. libmodbus 1.2.3 (2008-02-03)
  341. ============================
  342. - Fix #188189 reported by Chris Hellyar
  343. Compute_response_size() no entry for read_input_status()
  344. - Fix #181887 reported by Jesus Hernandez Tapia.
  345. Slave address in build_request_packet_tcp() is hardcoded as 0xFF.
  346. libmodbus 1.2.2 (2007-11-12)
  347. ============================
  348. - Fix #161989 reported by Konstantinos Togias
  349. Serial device paths more than 10 chars long (eg. /dev/ttyUSB0) don't
  350. fit to modbus_param_t -> device char[11] var.
  351. - Structure is also bit better 'packed' to conserve memory (see the
  352. trunk for a real enhancement).
  353. libmodbus 1.2.1 (2007-11-02)
  354. ============================
  355. - Fix #159443 reported by Stefan Bisanz
  356. Index of incoming data in force multiple coils function
  357. - Deleted useless code in check_crc16()
  358. - Untabify source code
  359. - Changed author's email to Stéphane Raimbault
  360. libmodbus 1.2.0 (2007-05-10)
  361. ============================
  362. - FIX Compilation GCC-4.0
  363. - Project name in autogen.sh