File tree Expand file tree Collapse file tree 4 files changed +14
-4
lines changed
src/main/java/com/netease/nim/server/sdk/rtc/room Expand file tree Collapse file tree 4 files changed +14
-4
lines changed Original file line number Diff line number Diff line change 2626<dependency>
2727 <groupId>com.netease.nim</groupId>
2828 <artifactId>yunxin-server-sdk</artifactId>
29- <version>1.1.2 </version>
29+ <version>1.2.0 </version>
3030</dependency>
3131```
3232
Original file line number Diff line number Diff line change 66
77 <groupId >com.netease.nim</groupId >
88 <artifactId >yunxin-server-sdk</artifactId >
9- <version >1.2.0-SNAPSHOT </version >
9+ <version >1.2.0</version >
1010 <name >yunxin-im-server-sdk</name >
1111 <url >https://github.com/netease-im/yunxin-server-sdk-java</url >
1212 <description >yunxin-server-sdk</description >
Original file line number Diff line number Diff line change @@ -147,8 +147,8 @@ public RtcResult<RtcListRoomMembersResponse> listRoomMembersV3(RtcListRoomMember
147147
148148 @ Override
149149 public RtcResult <RtcAddMemberToKicklistResponse > addMemberToKicklistV2 (RtcAddMemberToKicklistRequestV2 request ) {
150- boolean hasDuration = request .getDuration () = = null ;
151- String uri = hasDuration ? RtcRoomUrlContext .ADD_MEMBER_TO_KICKLIST_V2 : RtcRoomUrlContext .ADD_MEMBER_TO_KICKLIST_V2_WITH_DURATION ;
150+ boolean hasDuration = request .getDuration () ! = null ;
151+ String uri = hasDuration ? RtcRoomUrlContext .ADD_MEMBER_TO_KICKLIST_V2_WITH_DURATION : RtcRoomUrlContext .ADD_MEMBER_TO_KICKLIST_V2 ;
152152 String path = uri .replace ("{cid}" , String .valueOf (request .getCid ()))
153153 .replace ("{uid}" , String .valueOf (request .getUid ()));
154154 if (hasDuration ) {
Original file line number Diff line number Diff line change 11本文介绍网易云信服务端 Java SDK 的更新日志。具体功能请前往 [ 集成 SDK] ( https://doc.yunxin.163.com/messaging2/server-apis/jQxNjEwMjI?platform=server ) 体验。
22
3+ ## 1.2.0 (2025-12-26)
4+
5+ ** 新增功能**
6+
7+ * 新增对IM全服推送功能的面向对象接口封装
8+ * 新增IM聊天室踢人v2接口的面向对象接口封装
9+ * IM好友、账号、流式消息相关接口新增参数
10+ * 新增RTC房间管理相关接口的面向对象接口封装
11+
12+
313## 1.1.2 (2025-11-07)
414
515** 新增功能**
You can’t perform that action at this time.
0 commit comments