Skip to content

Commit da3cf2a

Browse files
authored
Merge pull request #1446 from marci4/1.6.0_release
Release 1.6.0
2 parents 2b8dd96 + fcb7595 commit da3cf2a

File tree

4 files changed

+26
-5
lines changed

4 files changed

+26
-5
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+
###############################################################################
4+
## Version Release 1.6.0 (2024/12/15)
5+
6+
#### Breaking Changes
7+
8+
* [Issue 1434](https://github.com/TooTallNate/Java-WebSocket/issues/1434) - Drop Java 1.7 support ([PR 1435](https://github.com/TooTallNate/Java-WebSocket/pull/1435))
9+
* [PR 1435](https://github.com/TooTallNate/Java-WebSocket/pull/1435) - Drop support for Java 1.7
10+
11+
#### Bugs Fixed
12+
13+
* [Issue 1437](https://github.com/TooTallNate/Java-WebSocket/issues/1437) - Question: How can the compression threshold be set for the PerMessageDeflateExtension in a Deflate Client? ([PR 1439](https://github.com/TooTallNate/Java-WebSocket/pull/1439))
14+
* [Issue 1400](https://github.com/TooTallNate/Java-WebSocket/issues/1400) - PerMessageDeflateExtension#setDeflater()/#setInflater() is overwritten in case of no_context_takeover ([PR 1439](https://github.com/TooTallNate/Java-WebSocket/pull/1439))
15+
* [PR 1439](https://github.com/TooTallNate/Java-WebSocket/pull/1439) - Clone PerMessageDeflateExtension values correctly
16+
17+
#### New Features
18+
19+
* [Issue 1440](https://github.com/TooTallNate/Java-WebSocket/issues/1440) - Support for inherited sockets ([PR 1442](https://github.com/TooTallNate/Java-WebSocket/pull/1442))
20+
* [PR 1442](https://github.com/TooTallNate/Java-WebSocket/pull/1442) - Socket activation
21+
22+
In this release 4 issues and 3 pull requests were closed.
23+
324
###############################################################################
425
## Version Release 1.5.7 (2024/07/08)
526

README.markdown

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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.7</version>
33+
<version>1.6.0</version>
3434
</dependency>
3535
```
3636

@@ -41,11 +41,11 @@ mavenCentral()
4141
```
4242
Then you can just add the latest version to your build.
4343
```xml
44-
compile "org.java-websocket:Java-WebSocket:1.5.7"
44+
compile "org.java-websocket:Java-WebSocket:1.6.0"
4545
```
4646
Or this option if you use gradle 7.0 and above.
4747
```xml
48-
implementation 'org.java-websocket:Java-WebSocket:1.5.7'
48+
implementation 'org.java-websocket:Java-WebSocket:1.6.0'
4949
```
5050

5151
#### Logging

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ repositories {
1010
}
1111

1212
group = 'org.java-websocket'
13-
version = '1.6.0-SNAPSHOT'
13+
version = '1.6.0'
1414
sourceCompatibility = 1.8
1515
targetCompatibility = 1.8
1616

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<groupId>org.java-websocket</groupId>
66
<artifactId>Java-WebSocket</artifactId>
77
<packaging>jar</packaging>
8-
<version>1.6.0-SNAPSHOT</version>
8+
<version>1.6.0</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>

0 commit comments

Comments
 (0)