From 79188c7f9ac53cada1d97e85e80520e85d5fd7a2 Mon Sep 17 00:00:00 2001 From: Nikita Koksharov Date: Fri, 1 Nov 2024 17:35:36 +0300 Subject: [PATCH 1/3] Update README.md --- README.md | 33 ++++++++++++++++++++++----------- 1 file changed, 22 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 716c9af7..19a67e3f 100644 --- a/README.md +++ b/README.md @@ -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 + + com.corundumstudio.socketio + netty-socketio + 2.0.12 + +``` + Performance ================================ @@ -47,6 +58,17 @@ Recent Releases ================================ #### Please Note: trunk is current development branch. +#### 01-Nov-2024 - version 2.0.11 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) @@ -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: - - - com.corundumstudio.socketio - netty-socketio - 2.0.11 - From 0ea0f76a29a074a1ebd7895d4280820d6c4267fd Mon Sep 17 00:00:00 2001 From: Nikita Koksharov Date: Fri, 1 Nov 2024 17:35:51 +0300 Subject: [PATCH 2/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 19a67e3f..1db3caee 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ Recent Releases ================================ #### Please Note: trunk is current development branch. -#### 01-Nov-2024 - version 2.0.11 released +#### 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) From 65246f30753379a6226a68187977755a851a5f8b Mon Sep 17 00:00:00 2001 From: Nikita Koksharov Date: Sat, 2 Nov 2024 20:57:27 +0300 Subject: [PATCH 3/3] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1db3caee..11d0ff00 100644 --- a/README.md +++ b/README.md @@ -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.