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 1
1
# Change log
2
2
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
+
3
21
###############################################################################
4
22
## Version Release 1.5.6 (2024/02/06)
5
23
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ To use maven add this dependency to your pom.xml:
30
30
<dependency >
31
31
<groupId >org.java-websocket</groupId >
32
32
<artifactId >Java-WebSocket</artifactId >
33
- <version >1.5.6 </version >
33
+ <version >1.5.7 </version >
34
34
</dependency >
35
35
```
36
36
@@ -41,11 +41,11 @@ mavenCentral()
41
41
```
42
42
Then you can just add the latest version to your build.
43
43
``` xml
44
- compile "org.java-websocket:Java-WebSocket:1.5.6 "
44
+ compile "org.java-websocket:Java-WebSocket:1.5.7 "
45
45
```
46
46
Or this option if you use gradle 7.0 and above.
47
47
``` xml
48
- implementation 'org.java-websocket:Java-WebSocket:1.5.6 '
48
+ implementation 'org.java-websocket:Java-WebSocket:1.5.7 '
49
49
```
50
50
51
51
#### Logging
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ repositories {
10
10
}
11
11
12
12
group = ' org.java-websocket'
13
- version = ' 1.5.7-SNAPSHOT '
13
+ version = ' 1.5.7'
14
14
sourceCompatibility = 1.7
15
15
targetCompatibility = 1.7
16
16
Original file line number Diff line number Diff line change 5
5
<groupId >org.java-websocket</groupId >
6
6
<artifactId >Java-WebSocket</artifactId >
7
7
<packaging >jar</packaging >
8
- <version >1.5.7-SNAPSHOT </version >
8
+ <version >1.5.7</version >
9
9
<name >Java-WebSocket</name >
10
10
<description >A barebones WebSocket client and server implementation written 100% in Java</description >
11
11
<url >https://github.com/TooTallNate/Java-WebSocket</url >
You can’t perform that action at this time.
0 commit comments