Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
0.8.15:

- Add support for cancellation tokens. GetCallAsync/JoinCallAsync/ConnectUserAsync operations can now be cancelled via CancellationToken
- call.LeaveAsync will cancel any previous in-progress join operation
- Fixed WS reconnection issue
- Improved WebSocket disconnection handling
- Added an additional callback when the video server had disconnected.

0.8.14:

- Change `call.GetLocalParticipant()` to return null if local participant is not found
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ namespace StreamVideo.Core.LowLevelClient
{
internal sealed class SdkVersionWrapper
{
public static readonly Version SDKVersion = new Version(0, 8, 14);
public static readonly Version SDKVersion = new Version(0, 8, 15);
}
}
2 changes: 1 addition & 1 deletion Packages/StreamVideo/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "io.getstream.video",
"version": "0.8.14",
"version": "0.8.15",
"displayName": "Stream Video & Audio Chat SDK",
"description": "This SDK lets you easily add audio and video communication to your project. You can build anything from spatial Audio chats to fully blown Video Calling apps. Supported platforms: Android, IOS, Windows, MacOS.",
"unity": "2020.3",
Expand Down
Loading