Skip to content

Commit

Permalink
Merge branch 'master' into fix/v4-multiple-frames-in-http
Browse files Browse the repository at this point in the history
  • Loading branch information
unverbraucht authored Jan 24, 2024
2 parents 71755ee + 84176e7 commit ac73fdf
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 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
14 changes: 7 additions & 7 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 @@ -49,7 +49,7 @@
<properties>
<skipTests>true</skipTests>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<netty.version>4.1.100.Final</netty.version>
<netty.version>4.1.105.Final</netty.version>
<testCompileSource>11</testCompileSource>
</properties>

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 ac73fdf

Please sign in to comment.