Skip to content

Releases: jebej/MatlabWebSocket

Release 1.6.1

20 Jan 17:36
Compare
Choose a tag to compare

rename runtests function to avoid shadowing MATLAB runtests, does not change functionality

Release 1.6.0

10 Jun 16:23
Compare
Choose a tag to compare

Add option to pass additional HTTP headers, e.g. for authentication. See the ditto.m test file for an example.

Release 1.5.0

28 May 02:26
Compare
Choose a tag to compare

server sendTo and sendToAll methods now will use fragments if needed

This change allows supporting sending large messages by sending keepalive messages in between fragments. Previously, the timeout mechanism in Java-WebSocket would close the connection automatically because no ping-pongs would be exchanged while the client was receiving a large message.

Also update Java-WebSocket to 1.5.1

Release 1.4.1

18 Sep 16:03
Compare
Choose a tag to compare

Small fixes + documentation update.

Release 1.4.0

19 Nov 19:41
Compare
Choose a tag to compare

Updated Java-Websocket to 1.3.6 to support receiving fragments with the onMessage method.

Release 1.3.0

26 Sep 16:52
Compare
Choose a tag to compare
  • Updated Java-WebSocket to v1.3.4
  • Updated jar

Release 1.0.0

02 Apr 17:49
Compare
Choose a tag to compare
  • SSL works with self-signed certifcates made with the java keytool (change the passwords!), see the runtests.m file for example usage:
    keytool -genkey -validity 3650 -keystore "keystore.jks" -storepass "storepassword" -keypass "keypassword" -alias "default" -dname "CN=127.0.0.1, OU=MyOrgUnit, O=MyOrg, L=MyCity, S=MyRegion, C=MyCountry"

  • Fixed issue #1 by updating to recently released Java-Websocket version