File tree Expand file tree Collapse file tree 4 files changed +23
-5
lines changed
Expand file tree Collapse file tree 4 files changed +23
-5
lines changed Original file line number Diff line number Diff line change 11# Change log
22
3+ ###############################################################################
4+ ## Version Release 1.5.7 (2024/07/08)
5+
6+ #### Breaking Changes
7+
8+ * [ PR 1399] ( https://github.com/TooTallNate/Java-WebSocket/pull/1399 ) - Have connectBlocking clean up after a timeout
9+
10+ #### Bugs Fixed
11+
12+ * [ PR 1419] ( https://github.com/TooTallNate/Java-WebSocket/pull/1419 ) - Fix issue #1418 : WebSocketServer sometimes misses GET request after SSL handshake
13+
14+ #### New Features
15+
16+ * [ PR 1407] ( https://github.com/TooTallNate/Java-WebSocket/pull/1407 ) - Allow setting custom TCP receive buffer size
17+ * [ PR 1399] ( https://github.com/TooTallNate/Java-WebSocket/pull/1399 ) - Have connectBlocking clean up after a timeout
18+
19+ In this release 0 issues and 4 pull requests were closed.
20+
321###############################################################################
422## Version Release 1.5.6 (2024/02/06)
523
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ To use maven add this dependency to your pom.xml:
3030<dependency >
3131 <groupId >org.java-websocket</groupId >
3232 <artifactId >Java-WebSocket</artifactId >
33- <version >1.5.6 </version >
33+ <version >1.5.7 </version >
3434</dependency >
3535```
3636
@@ -41,11 +41,11 @@ mavenCentral()
4141```
4242Then you can just add the latest version to your build.
4343``` xml
44- compile "org.java-websocket:Java-WebSocket:1.5.6 "
44+ compile "org.java-websocket:Java-WebSocket:1.5.7 "
4545```
4646Or this option if you use gradle 7.0 and above.
4747``` xml
48- implementation 'org.java-websocket:Java-WebSocket:1.5.6 '
48+ implementation 'org.java-websocket:Java-WebSocket:1.5.7 '
4949```
5050
5151#### Logging
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ repositories {
1010}
1111
1212group = ' org.java-websocket'
13- version = ' 1.5.7-SNAPSHOT '
13+ version = ' 1.5.7'
1414sourceCompatibility = 1.7
1515targetCompatibility = 1.7
1616
Original file line number Diff line number Diff line change 55 <groupId >org.java-websocket</groupId >
66 <artifactId >Java-WebSocket</artifactId >
77 <packaging >jar</packaging >
8- <version >1.5.7-SNAPSHOT </version >
8+ <version >1.5.7</version >
99 <name >Java-WebSocket</name >
1010 <description >A barebones WebSocket client and server implementation written 100% in Java</description >
1111 <url >https://github.com/TooTallNate/Java-WebSocket</url >
You can’t perform that action at this time.
0 commit comments