File tree Expand file tree Collapse file tree 4 files changed +21
-5
lines changed Expand file tree Collapse file tree 4 files changed +21
-5
lines changed Original file line number Diff line number Diff line change 1
1
# Change log
2
2
3
3
###############################################################################
4
+ ## Version Release 1.5.6 (2024/02/06)
5
+
6
+ #### Bugs Fixed
7
+
8
+ * [ Issue 1382] ( https://github.com/TooTallNate/Java-WebSocket/issues/1382 ) - WebSocketClient.upgradeSocketToSSL is enforcing TLS 1.2 ([ PR 1387] ( https://github.com/TooTallNate/Java-WebSocket/pull/1387 ) )
9
+ * [ PR 1387] ( https://github.com/TooTallNate/Java-WebSocket/pull/1387 ) - Retrieve default SSL socket factory
10
+
11
+ #### New Features
12
+
13
+ * [ Issue 1390] ( https://github.com/TooTallNate/Java-WebSocket/issues/1390 ) - Thread created by NamedThreadFactory should be a daemon ([ PR 1391] ( https://github.com/TooTallNate/Java-WebSocket/pull/1391 ) )
14
+ * [ PR 1391] ( https://github.com/TooTallNate/Java-WebSocket/pull/1391 ) - Provide way to start the client/server as daemons
15
+
16
+ In this release 2 issues and 2 pull requests were closed.
17
+
18
+ ###############################################################################
19
+
4
20
## Version Release 1.5.5 (2023/12/18)
5
21
6
22
#### Bugs Fixed
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.4 </version >
33
+ <version >1.5.6 </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.4 "
44
+ compile "org.java-websocket:Java-WebSocket:1.5.6 "
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.4 '
48
+ implementation 'org.java-websocket:Java-WebSocket:1.5.6 '
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.6-SNAPSHOT '
13
+ version = ' 1.5.6'
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.6-SNAPSHOT </version >
8
+ <version >1.5.6</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