Releases: sendbird/sendbird-live-sdk-ios
Releases · sendbird/sendbird-live-sdk-ios
v1.2.8
v1.2.7
v1.2.6
v1.2.5
v1.2.4
v1.2.3
v1.2.2
Release v1.2.1
1.2.1 (Dec 8, 2023)
- Added
LiveEventDelegate.didHostVideoResolutionChange
to monitor changes in video resolution.
Release v1.2.0
1.2.0 (Dec 2, 2023)
- Added support for streaming with multiple hosts
- Now, multiple hosts can stream in a live event simultaneously.
LiveEvent.hostType
has changed toLiveEvent.type
- LiveEventType can have following values:
audioOnly
andvideo
, indicating the live event type for audio-only streaming and video streaming, respectively. LiveEventCreateParams.hostType
has changed toLiveEventCreateParams.type
LiveEventQuery.hostTypes
has changed toLiveEventQuery.types
- Added event listeners for receiving connection
- LiveEventDelegate.didDisconnect(liveEvent: LiveEvent, e: Error)
- LiveEventDelegate.didReconnect(liveEvent: LiveEvent)
- The existing
didDisconnect
event is now renamed toLiveEventDelegate.didExit(liveEvent: LiveEvent, e: Error)
Breaking Change
Sendbird Live SDK ensure forwards compatibility of the previous SDK versions. Any live event that was created with SDK versions lower than v1.2.0 will be compatible with the latest SDK version. Any apps running on lower versions of the SDK will continue to work smoothly because our server handles different sdk versions separately.
However, Sendbird Live SDK does not guarantee backwards compatibility. This means that the SDK versions lower than v1.2.0 cannot see or work with the live events created with versions higher than v1.2.0. If a user creates a live event with the latest SDK, the users engaging with the live event must also upgrade to the latest version of the SDK.
v1.2.0-beta.1
1.2.0-beta.1 (Nov 8, 2023)
- Added support for streaming with multiple hosts
- Now, multiple hosts can stream in a live event simultaneously.
LiveEvent.hostType
has changed toLiveEvent.type
- LiveEventType can have the following values:
audioOnly
andvideo
, indicating the live event type for audio-only streaming and video streaming, respectively. LiveEventCreateParams.hostType
has changed toLiveEventCreateParams.type
LiveEventQuery.hostTypes
has changed toLiveEventQuery.types
- Added event listeners for receiving connection
- LiveEventDelegate.didDisconnect(liveEvent: LiveEvent, e: Error)
- LiveEventDelegate.didReconnect(liveEvent: LiveEvent)
- The existing
didDisconnect
event is now renamed toLiveEventDelegate.didExit(liveEvent: LiveEvent, e: Error)