Skip to content

Commit 03fdb9c

Browse files
authored
Merge pull request #1237 from marci4/UpdateChangelog1.5.3
2 parents 5d84099 + 5ff6ede commit 03fdb9c

File tree

2 files changed

+24
-3
lines changed

2 files changed

+24
-3
lines changed

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
# Change log
22

3+
## Version Release 1.5.3 (2022/04/09)
4+
5+
#### Bugs Fixed
6+
7+
* [Issue 1230](https://github.com/TooTallNate/Java-WebSocket/issues/1230) - CONTINUOUS should be decoded depending on the first frame ([PR 1232 ](https://github.com/TooTallNate/Java-WebSocket/pull/1232) by [@marci4](https://github.com/marci4))
8+
* [Issue 1203](https://github.com/TooTallNate/Java-WebSocket/issues/1203) - Lost connection detection not working on delayed connect-Call ([PR 1204 ](https://github.com/TooTallNate/Java-WebSocket/pull/1204) by [@marci4](https://github.com/marci4))
9+
* [Issue 1164](https://github.com/TooTallNate/Java-WebSocket/issues/1164) - [Android & Node.js Server] Problem using PerMessageDeflateExtension with custom ping/pong messages ? ([PR 1165 ](https://github.com/TooTallNate/Java-WebSocket/pull/1165) by [@marci4](https://github.com/marci4))
10+
* [Issue 1160](https://github.com/TooTallNate/Java-WebSocket/issues/1160) - `WebSocketWorker` does not handle `Throwable` ([PR 1223 ](https://github.com/TooTallNate/Java-WebSocket/pull/1223) by [@Serpion-ua](https://github.com/Serpion-ua))
11+
* [Issue 1142](https://github.com/TooTallNate/Java-WebSocket/issues/1142) - Verifying server certificate ([PR 1143 ](https://github.com/TooTallNate/Java-WebSocket/pull/1143) by [@marci4](https://github.com/marci4))
12+
* [PR 1227](https://github.com/TooTallNate/Java-WebSocket/pull/1227) - Correct web socket closing, by [@Serpion-ua](https://github.com/Serpion-ua)
13+
* [PR 1223](https://github.com/TooTallNate/Java-WebSocket/pull/1223) - Issue-1160 Added java.lang.Error handling in WebSocketImpl and WebSocketServer, by [@Serpion-ua](https://github.com/Serpion-ua)
14+
* [PR 1212](https://github.com/TooTallNate/Java-WebSocket/pull/1212) - high cpu when channel close exception fix, by [@Adeptius](https://github.com/Adeptius)
15+
16+
#### New Features
17+
18+
* [PR 1185](https://github.com/TooTallNate/Java-WebSocket/pull/1185) - Added support unresolved socket addresses, by [@vtsykun](https://github.com/vtsykun)
19+
20+
In this release 5 issues and 8 pull requests were closed.
21+
22+
###############################################################################
23+
324
## Version Release 1.5.2 (2021/04/05)
425

526
#### Bugs Fixed

README.markdown

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ To use maven add this dependency to your pom.xml:
3131
<dependency>
3232
<groupId>org.java-websocket</groupId>
3333
<artifactId>Java-WebSocket</artifactId>
34-
<version>1.5.2</version>
34+
<version>1.5.3</version>
3535
</dependency>
3636
```
3737

@@ -42,11 +42,11 @@ mavenCentral()
4242
```
4343
Then you can just add the latest version to your build.
4444
```xml
45-
compile "org.java-websocket:Java-WebSocket:1.5.2"
45+
compile "org.java-websocket:Java-WebSocket:1.5.3"
4646
```
4747
Or this option if you use gradle 7.0 and above.
4848
```xml
49-
implementation 'org.java-websocket:Java-WebSocket:1.5.2'
49+
implementation 'org.java-websocket:Java-WebSocket:1.5.3'
5050
```
5151

5252
#### Logging

0 commit comments

Comments
 (0)