Skip to content

Latest commit

 

History

History
243 lines (179 loc) · 17.3 KB

CHANGELOG.md

File metadata and controls

243 lines (179 loc) · 17.3 KB

Change log

Version Release 1.4.0 (2019/02/19)

Breaking Changes

  • Issue 753 - Breaking changes in 1.4
  • Issue 670 - Use a logging framework such as as SLF4J instead of System.out.println (PR 754)

Bugs Fixed

  • Issue 855 - WebSocketServer cannot be started without .start() (PR 856)
  • Issue 847 - java.nio.BufferUnderflowException (PR 849)
  • Issue 834 - Workers should not be started before the server
  • Issue 827 - WebSocketClient close()
  • Issue 784 - Building with gradle fails
  • Issue 773 - Memory leak in WebSocketImpl.outQueue (PR 781)
  • PR 856 - Move the startup of the WebSocketWorker inside of run()
  • PR 850 - Fix issue #834 by starting WebSocketWorker of the WebSocketServer in the start function
  • PR 849 - Fix issue #847
  • PR 846 - Pass on exit code in WebSocketClient close function - fixes bug #827
  • PR 824 - Synchronize AbstractWebSocket
  • PR 785 - Update build.gradle
  • PR 781 - Null the reference of the WebSocketImpl
  • PR 771 - Test for 765
  • PR 770 - Use a SocketFactory to support reconnecting
  • PR 769 - Close WebSocketFactory when updated
  • PR 757 - -keyalg RSA is needed or you'll get SSLHandshakeException: no cipher …

New Features

  • Issue 845 - Generate changelog.md (PR 851)
  • Issue 838 - Allow for two-way ssl(SSLEngine.setNeedClientAuth())
  • Issue 670 - Use a logging framework such as as SLF4J instead of System.out.println (PR 754)
  • Issue 598 - Memory Management (PR 761)
  • PR 839 - SSLEngineWebSocketServerFactory allows more customization
  • PR 761 - Implements Memory Management

Refactoring

  • Issue 845 - Generate changelog.md (PR 851)
  • Issue 819 - Ant build removed on master ?
  • Issue 784 - Building with gradle fails
  • Issue 753 - Breaking changes in 1.4
  • Issue 749 - Improve code quality for 1.4.0
  • PR 848 - Removed unused/unrelated imports (including deprecated CORBA)
  • PR 833 - Fix some sonarqube errors
  • PR 824 - Synchronize AbstractWebSocket
  • PR 821 - Remove outdated build instructions from README
  • PR 805 - More improvement
  • PR 789 - WebSocketServer code quality
  • PR 785 - Update build.gradle
  • PR 768 - Fixed several issues related to the code quality
  • PR 754 - Using SLF4J and refactored code

In this release 16 issues and 22 pull requests were closed.

Version Release 1.3.9 (2018-08-05)

Bugs Fixed

  • Issue 694 - AssertionError at WebSocketImpl.isOpen
  • Issue 685 - Exclude default port from wss host (PR 683)
  • PR 746 - Fixed typo in Draft_6455
  • PR 722 - Catch exceptions in AbstractWebSocket
  • PR 708 - Enable and Disable ping/pong

New Features

  • Issue 711 - broadcasting a ByteBuffer
  • Issue 699 - Enable and Disable ping/pong
  • PR 738 - Adjust readme
  • PR 737 - Prepare for automatic snapshot deploy
  • PR 724 - added a timeout option for connectBlocking
  • PR 712 - Added a broadcast method for ByteBuffers
  • PR 708 - Enable and Disable ping/pong

Refactoring

  • PR 739 - Exception when using reconnect in websocket thread
  • PR 736 - Change example section
  • PR 733 - Remove static from synchronize object
  • PR 702 - Removed assertion from WebSocketImpl.isOpen (see #694)
  • PR 682 - Deprecate Connecting and additional tests

In this release 4 issues and 13 pull requests were closed.

Version Release 1.3.8 (2018-03-05)

Bugs Fixed

  • Issue 668 - When a server fails to start it does not cleanup its WebSocketWorker threads
  • PR 662 - NPE on already bound port

New Features

  • Issue 256 - how to reconnect websocket (PR 654)
  • PR 654 - WebSocketClient supports reconnecting
  • PR 651 - Support for close code 1012-1014

Refactoring

  • Issue 669 - Include information in the onClose call for the connection lost detection (PR 671)
  • Issue 666 - Give the main WebSocketClient thread and AbstractWebSocket Timer a name (PR 667)
  • PR 675 - Change thread name
  • PR 671 - Include reason for dc due to lost connection detection
  • PR 667 - Give all threads a custom name

In this release 4 issues and 6 pull requests were closed.

Version Release 1.3.7 (2017-12-11)

Bugs Fixed

  • Issue 621 - conn.close() in server's onOpen method causes null pointer exception (PR 622)
  • Issue 620 - Investigate cause for #580 (PR 628)
  • Issue 609 - A connection will be in readystate Open when onWebSocketClose is called (PR 610)
  • Issue 606 - WebsocketNotConnectedException in Timer-0 ping
  • PR 628 - Graceful shutdown on stop()
  • PR 622 - Fix for #621
  • PR 610 - Check if connection is open on sendPing & change readystate on closeConnection

New Features

  • Issue 608 - Sec-WebSocket-Protocol header not supported (PR 614)
  • PR 627 - Added setAttachment and getAttachment to WebSocket interface
  • PR 614 - Protocol

Refactoring

  • PR 635 - Mark AbstractClientProxyChannel as deprecated
  • PR 614 - Protocol
  • PR 610 - Check if connection is open on sendPing & change readystate on closeConnection

In this release 5 issues and 8 pull requests were closed.

Version Release 1.3.6 (2017-11-09)

Bugs Fixed

  • Issue 579 - Exception with sending ping without server access
  • PR 603 - Check for sending a close frame

Refactoring

  • Issue 577 - Improve onClose behaviour on client side
  • PR 597 - Code cleanups
  • PR 596 - Improved OpeningHandshakeRejection test
  • PR 591 - Adjusted examples
  • PR 589 - Include whole invalid status line
  • PR 578 - Refactoring and improved onClose behaviour

In this release 2 issues and 6 pull requests were closed.

Version Release 1.3.5 (2017-10-13)

Bugs Fixed

  • Issue 564 - Continuous binary getting swallowed? (PR 570)
  • Issue 530 - onWebsocketHandshakeReceivedAsServer throwing InvalidDataException has no effect
  • Issue 512 - AssertionError in WebSocketServer.removeConnection
  • Issue 508 - Ant fails due to missing dist/ directory
  • Issue 504 - Clean up connections after connection closed
  • Issue 390 - Websocket server returning 401; can't handle on client side
  • PR 506 - Connections dont always get cleaned up after lost connection

New Features

  • Issue 528 - so_reuseaddr
  • Issue 463 - Support for Compression Extensions for WebSocket
  • PR 529 - Added setter for SO_REUSEADDR
  • PR 510 - Add true WSS support to WebSocketClient

Refactoring

  • Issue 545 - java.io.IOException: Broken pipe
  • Issue 539 - Improve memory usage
  • Issue 516 - Improve handling of IOExceptions causing eot()
  • PR 558 - Code cleanups
  • PR 553 - Removal of deprecated drafts
  • PR 510 - Add true WSS support to WebSocketClient
  • PR 500 - Making WebSocket.send() thread-safe

In this release 11 issues and 7 pull requests were closed.

Version Release 1.3.4 (2017-06-02)

Breaking Changes

  • Issue 478 - Draft_10, Draft_17, Draft_75 and Draft_76 are now deprecated

Bugs Fixed

  • Issue 484 - Problems with WSS running on linux and Edge(or ie) browser
  • Issue 481 - No Javadoc attached when using from Gradle
  • Issue 473 - Improve lost connection detection
  • Issue 466 - Instability on WSS Connections, only works when one client abandon connection
  • Issue 465 - Bad rsv 4 on android
  • Issue 294 - Issue in SSL implementation : protocole ws:// is always use in Draft_76.java
  • Issue 222 - Worker threads do not close if bind() fails
  • Issue 120 - Closing wss connections might not work as expected
  • PR 477 - Fix for #222
  • PR 472 - Fix for #466
  • PR 470 - Fix #465

New Features

  • PR 497 - Added new AutobahnServerTest for SSL and fixed errors in closeframe
  • PR 493 - Clear implementations for frames and SSLWebsocketServerFactory
  • PR 489 - Possibility to override worker thread allocation logic in WebSocketSe…
  • PR 487 - Example for LetsEncrypt
  • PR 483 - Introduction of Draft_6455
  • PR 480 - Lostconnection

Refactoring

  • Issue 473 - Improve lost connection detection
  • Issue 222 - Worker threads do not close if bind() fails
  • PR 493 - Clear implementations for frames and SSLWebsocketServerFactory
  • PR 488 - New SSLSocketChannel
  • PR 486 - ByteBuffer and JUnitTests
  • PR 483 - Introduction of Draft_6455
  • PR 480 - Lostconnection
  • PR 469 - Cleanups & JavaDocs

In this release 11 issues and 15 pull requests were closed.

Version Release 1.3.3 (2017-04-26)

Bugs Fixed

  • Issue 458 - 100% cpu when using SSL
  • Issue 362 - race problem when starting server with port 0
  • Issue 302 - Client blocking connect and close methods return too soon

New Features

  • Issue 452 - Unable to verify hostname after handshake
  • Issue 339 - setTCPNoDelay inaccessible
  • Issue 271 - There is no notification for websocket server success start
  • PR 462 - Make TCP_NODELAY accessible

In this release 6 issues and 1 pull request were closed.