iohao / ioGame

无锁异步化、事件驱动架构设计的 java netty 网络编程框架; 轻量级,无需依赖任何第三方中间件或数据库就能支持集群、分布式; 适用于网络游戏服务器、物联网、内部系统及各种需要长连接的场景; 通过 ioGame 你可以很容易的搭建出一个集群无中心节点、集群自动化、分布式的网络服务器;FXGL、Unity、UE、Cocos Creator、Godot、Netty、Protobuf、webSocket、tcp、socket;java Netty 游戏服务器框架;
http://game.iohao.com
GNU Affero General Public License v3.0
876 stars 190 forks source link

Upgrade Reactor Netty library #370

Open duongxinh2003 opened 1 week ago

duongxinh2003 commented 1 week ago

新增功能的使用场景

Currently, Reactor Netty library version 1.1.7 is deprecated, It has a new version 1.1.22 The current version caused some vulnerabilities and it makes me annoying

iohao commented 1 week ago
<dependencies>
    <dependency>
        <groupId>com.iohao.game</groupId>
        <artifactId>run-one-netty</artifactId>
        <version>${ioGame.version}</version>
        <exclusions>
            <!-- exclusion default Reactor Netty version -->
            <exclusion>
                <groupId>io.projectreactor.netty</groupId>
                <artifactId>reactor-netty</artifactId>
            </exclusion>
        </exclusions>
    </dependency>

    <dependency>
        <groupId>io.projectreactor.netty</groupId>
        <artifactId>reactor-netty</artifactId>        
        <!-- https://mvnrepository.com/artifact/io.projectreactor.netty/reactor-netty -->
        <!-- Reactor Netty version 1.1.22 -->
        <version>${Your Reactor Netty version}</version>
    </dependency>
<dependencies>

or

It will be upgraded in the next version