Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/fix/v4-multiple-frames-in-http' …
Browse files Browse the repository at this point in the history
…into fix/v4-multiple-frames-in-http
  • Loading branch information
unverbraucht committed Jan 24, 2024
2 parents 6a763ec + ac73fdf commit 5b39e6f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@ Recent Releases
================================
#### Please Note: trunk is current development branch.

#### 24-Jan-2024 - version 2.0.8 released

Fixed - possible OOM caused by attachments parsing

#### 23-Jan-2024 - version 2.0.7 released

Github Actions support made by @liangyuanpeng
Expand Down
12 changes: 6 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<groupId>com.corundumstudio.socketio</groupId>
<artifactId>netty-socketio</artifactId>
<version>2.0.8-SNAPSHOT</version>
<version>2.0.9-SNAPSHOT</version>
<packaging>bundle</packaging>
<name>NettySocketIO</name>
<description>Socket.IO server implemented on Java</description>
Expand Down Expand Up @@ -193,25 +193,25 @@
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>2.15.0</version>
<version>2.16.1</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.15.0</version>
<version>2.16.1</version>
</dependency>


<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
<version>5.3.27</version>
<version>6.0.15</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<version>5.3.27</version>
<version>6.0.15</version>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
Expand All @@ -225,7 +225,7 @@
<dependency>
<groupId>org.redisson</groupId>
<artifactId>redisson</artifactId>
<version>3.24.3</version>
<version>3.26.0</version>
<scope>provided</scope>
</dependency>
<dependency>
Expand Down

0 comments on commit 5b39e6f

Please sign in to comment.