Skip to content

v1.6.4 release note

Compare
Choose a tag to compare
@dbl-x dbl-x released this 24 Aug 03:17
· 33 commits to master since this release
42e4e3d

修改内容包括:

兼容性

  • 兼容1.6.3及之前版本

v1.6.4的pom依赖

<!-- 日志门面使用slf4j,日志实现可以选择log4j、log4j2、logback,可参考:https://github.com/alipay/sofa-bolt/wiki/log_implementation_jar -->
 <dependency>
    <groupId>org.slf4j</groupId>
    <artifactId>slf4j-api</artifactId>
    <version>1.7.21</version>
</dependency>
<dependency>
    <groupId>io.netty</groupId>
    <artifactId>netty-all</artifactId>
    <version>4.1.42.Final</version>
</dependency>
<dependency>
    <groupId>com.alipay.sofa</groupId>
    <artifactId>bolt</artifactId>
    <version>1.6.4</version>
</dependency>
<dependency>
    <groupId>com.alipay.sofa.common</groupId>
    <artifactId>sofa-common-tools</artifactId>
    <version>1.0.12</version>
</dependency>

主要改动

feature

  • [feature] 支持双向SSL验证
  • [feature] 支持用户拓展注入Netty的ChannelHandler
  • [feature] 支持Wireshark插件

tuning

  • [tuning] 及时返回调用结果,避免客户端设置超时未1s,实际超过1s未返回超时的情况
  • [tuning] 记录更精确的request处理链路各个阶段的耗时
  • [tuning] 使用统一的Option配置接口代替散落的Switch和ConfigManager