Skip to content

Commit

Permalink
Merge branch 'master' of github.com:mrniko/netty-socketio
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikita Koksharov committed Nov 13, 2024
2 parents 4f6ea1e + 65246f3 commit 49ed3b7
Showing 1 changed file with 24 additions and 13 deletions.
37 changes: 24 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ Features
* Supports namespaces and rooms
* Supports ack (acknowledgment of received data)
* Supports SSL
* Supports client store (Memory, [Redisson](https://redisson.org), [Hazelcast](https://www.hazelcast.com/))
* Supports distributed broadcast across netty-socketio nodes ([Redisson](https://redisson.org), [Hazelcast](https://www.hazelcast.com/))
* Supports client store ([Redisson](https://redisson.org), Hazelcast, Memory)
* Supports distributed broadcast across netty-socketio nodes ([Redisson](https://redisson.org), Hazelcast)
* Supports OSGi
* Supports Spring
* Contains Java module info for JPMS.
Expand All @@ -23,6 +23,17 @@ Features

JAR is compatible with Java 8 but needs Java 11+ for building the module-info.

### Maven

Include the following to your dependency list:
```xml
<dependency>
<groupId>com.corundumstudio.socketio</groupId>
<artifactId>netty-socketio</artifactId>
<version>2.0.12</version>
</dependency>
```

Performance
================================

Expand All @@ -47,6 +58,17 @@ Recent Releases
================================
#### Please Note: trunk is current development branch.

#### 01-Nov-2024 - version 2.0.12 released

Feature - enableCors setting added (thanks to @zd925)
Feature - ability to define http request decoder (thanks to @gurkancakir)

Fixed - if ack returns after the timeout trigger ,a IllegalStateException will be thrown (thanks to @malinGH)
Fixed - prevents the client from repeatedly connecting to the namespace (thanks to @bigtian99)
Fixed - treat attachments as binary by default (thanks to @nicsor)
Fixed - recoverable handshake failure handling (thanks to @berinhardt)
Fixed - HashedWheelTimeoutScheduler should remove scheduledFutures before task execution (thanks to @berinhardt)

#### 25-Jul-2024 - version 2.0.11 released

Fixed - custom namespaces support auth data (thanks to @Addi)
Expand Down Expand Up @@ -338,14 +360,3 @@ Improvement - logging error info with inbound data.

#### 07-Jun-2013 - version 1.0.0 released
First stable release.


### Maven

Include the following to your dependency list:

<dependency>
<groupId>com.corundumstudio.socketio</groupId>
<artifactId>netty-socketio</artifactId>
<version>2.0.11</version>
</dependency>

0 comments on commit 49ed3b7

Please sign in to comment.