Skip to content

Releases: GideonLeGrange/mikrotik-java

Version 3.0.7

08 Jan 08:58
Compare
Choose a tag to compare

Bug fix for nested expressions as per #72.

Version 3.0.6

03 Jan 06:09
7aac1b9
Compare
Choose a tag to compare

Bug fix #67 after November 2018. This should have been released earlier.

Version 3.0.5

08 Nov 04:42
Compare
Choose a tag to compare

Version 3.0.5 implements a change in the way login() is implemented by RouterOS from version 6.43 onward.

Version 3.0.4

07 Aug 19:14
Compare
Choose a tag to compare

Version 3.0.4 captures several months worth of small code clean-ups and documentation improvements.

Version 3.0.3

08 Oct 17:35
Compare
Choose a tag to compare

Version 3.0.3 fixes a problem with the encoding of non-English characters when sending commands to RouterOS. See #40 for more details.

Version 3.0.2

06 Oct 20:41
Compare
Choose a tag to compare

Version 3.0.2 fixes a bug where file download and some other multi-line content results causes the API call to time out, rather than return a result. This was reported in #43 and fixed by #37.

Version 3.0.1

10 Feb 20:01
Compare
Choose a tag to compare

This release fixes a harmless but annoying stack trace print as reported in #34. In doing so it also improves internal error handling.

Version 3.0

03 Feb 19:55
Compare
Choose a tag to compare

This release changes the public API to allow for the correct way of allowing for TLS encryption.

The following non-backwards compatible changes were made:

  • A new method, connect(SocketFactory fact, String host, int port, int timeout), was added to allow for better user control over sockets and especially encryption.
  • The connectTLS() API methods were removed.
  • Most of the overloaded connect() methods were removed.
  • The previously deprecated disconnect() method is removed.

Other changes:

  • Added a pre-built jar file to the downloads.
  • Improved documentation.
  • Improved examples.

Version 2.2

05 May 11:43
Compare
Choose a tag to compare

Implements AutoCloseable on ApiConnection to support Java 7's try-with-resources statement.

Version 2.1

06 Apr 19:27
Compare
Choose a tag to compare

Version 2.1 adds the ability to use connection and command timeouts as requested by users. To see how to use these, please refer to the examples below. For more information, look at issue #16.