Skip to content

Commit 7c2a6aa

Browse files
committedNov 20, 2024·
Release - 4.16.0
1 parent 44d4cfc commit 7c2a6aa

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+125
-49
lines changed
 

‎CHANGELOG.md

+24
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,29 @@
11
# Changelog
22

3+
## v4.16.0 (Nov 20, 2024)
4+
### **Features**
5+
SDK now supports `Custom Report Categories` configured through Sendbird Dashboard, which takes effect after restarting the app.
6+
Previous report categories will remain until app restart.
7+
8+
- Added `getReportCategoryInfoList()`
9+
- Added `ReportCategoryInfo`
10+
- Deprecated `ReportCategory`
11+
12+
``` typescript
13+
const reportCategoryInfoList: ReportCategoryInfo[] = await sb.getReportCategoryInfoList();
14+
15+
...
16+
17+
reportCategoryInfoList.forEach((reportCategoryInfo) => {
18+
// make Report Category list
19+
// use reportCategoryInfo.name
20+
});
21+
22+
```
23+
24+
### **Improvements**
25+
- Added `sampledUserInfoList` in `Reaction`
26+
- Fixed a bug where called API with deprecated param in `markAsDelivered`
327
## v4.15.0 (Nov 07, 2024)
428
### **Features**
529
Added new properties in `Reaction` to support more users

‎cjs/feedChannel.cjs

+1-1
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)
Please sign in to comment.