Skip to content

Commit 0145e3d

Browse files
committed
chore: update changelog draft
1 parent 31372a7 commit 0145e3d

File tree

1 file changed

+16
-3
lines changed

1 file changed

+16
-3
lines changed

CHANGELOG_DRAFT.md

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
1-
## v3.7.1
1+
## v3.7.2
22

3-
### Fix
3+
### Feat
44

5-
- Fixed the behavior to call `disconnectWebsocket()` instead of `disconnect()` on unmount container to avoid unintentionally clearing the cache.
5+
- Added event handlers interface for `onOpenURL` and `onOpenFileURL` to `SendbirdUIKitContainer`.
6+
```tsx
7+
<SendbirdUIKitContainer
8+
appId={APP_ID}
9+
handlers={{
10+
onOpenURL: (url) => {
11+
console.log('onOpenURL', url);
12+
},
13+
onOpenFileURL: (url) => {
14+
console.log('onOpenFileURL', url);
15+
},
16+
}}
17+
/>
18+
```

0 commit comments

Comments
 (0)