Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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
1 change: 0 additions & 1 deletion .changes/batch-dep-bumps

This file was deleted.

1 change: 0 additions & 1 deletion .changes/connect-room-options-ignored

This file was deleted.

1 change: 0 additions & 1 deletion .changes/default-degradation-preference-by-source

This file was deleted.

1 change: 0 additions & 1 deletion .changes/degradation-preference-disabled-mapping

This file was deleted.

1 change: 0 additions & 1 deletion .changes/development-token-source

This file was deleted.

1 change: 0 additions & 1 deletion .changes/disconnect-reason-members

This file was deleted.

1 change: 0 additions & 1 deletion .changes/enum-conversion-fallbacks

This file was deleted.

1 change: 0 additions & 1 deletion .changes/room-getsid-wrong-emitter

This file was deleted.

1 change: 0 additions & 1 deletion .changes/simulcast-codecs-lifecycle

This file was deleted.

1 change: 0 additions & 1 deletion .changes/update-protocol-v1-50-4

This file was deleted.

2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.10.0
2.11.0
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# CHANGELOG

## 2.11.0

* Added: New DisconnectReason members for newer server disconnect reasons, previously reported as unknown
* Added: Add DevelopmentTokenSource, the new name for the now-deprecated SandboxTokenSource
* Changed: Default video degradation preference is now based on the track source (camera maintains framerate, screen share maintains resolution, others balanced) and is applied to the backup codec's sender as well
* Changed: Update generated protocol definitions to v1.50.4
* Changed: Unrecognized protobuf enum values from newer servers now fall back to safe defaults, for example a new DisconnectReason maps to unknown
* Changed: Update dependencies: device_info_plus to 13.x, connectivity_plus 7.3.1, dart_webrtc 1.8.1, synchronized 3.4.1, uuid 4.6.0
* Fixed: Room.connect no longer ignores the roomOptions argument passed to it
* Fixed: Room.getSid() now resolves when the room sid is issued after the join response
* Fixed: Backup codec state is cleared on unpublish and full reconnect, so republishing no longer acts on senders from a torn down connection
* Fixed: DegradationPreference.disabled now maps to maintainFramerateAndResolution, as WebRTC defines it

## 2.10.0

* Added: Swift Package Manager support for iOS and macOS. CocoaPods remains fully supported.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ Include this package to your `pubspec.yaml`
```yaml
---
dependencies:
livekit_client: ^2.10.0
livekit_client: ^2.11.0
```

### iOS
Expand Down
2 changes: 1 addition & 1 deletion ios/livekit_client.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'livekit_client'
s.version = '2.10.0'
s.version = '2.11.0'
s.summary = 'Open source platform for real-time audio and video.'
s.description = 'Open source platform for real-time audio and video.'
s.homepage = 'https://livekit.io/'
Expand Down
2 changes: 1 addition & 1 deletion lib/src/livekit.dart
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import 'support/webrtc_initialize_options.dart';
/// Main entry point to connect to a room.
/// {@category Room}
class LiveKitClient {
static const version = '2.10.0';
static const version = '2.11.0';

/// Initialize the WebRTC plugin.
///
Expand Down
2 changes: 1 addition & 1 deletion macos/livekit_client.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'livekit_client'
s.version = '2.10.0'
s.version = '2.11.0'
s.summary = 'Open source platform for real-time audio and video.'
s.description = 'Open source platform for real-time audio and video.'
s.homepage = 'https://livekit.io/'
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
name: livekit_client
description: Flutter Client SDK for LiveKit. Build real-time video and audio
into your apps. Supports iOS, Android, and Web.
version: 2.10.0
version: 2.11.0
homepage: https://github.com/livekit/client-sdk-flutter

# Test fixture keys for certificate pinning tests, not real secrets.
Expand Down
Loading