Skip to content
Merged

v2.7.0 #1040

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
1 change: 0 additions & 1 deletion .changes/audio-renderer-api

This file was deleted.

1 change: 0 additions & 1 deletion .changes/bump-to-libwebrtc-m144

This file was deleted.

1 change: 0 additions & 1 deletion .changes/fix-camera-options-copywith

This file was deleted.

1 change: 0 additions & 1 deletion .changes/fix-processor-stop

This file was deleted.

1 change: 0 additions & 1 deletion .changes/fix-signal-resume-events

This file was deleted.

1 change: 0 additions & 1 deletion .changes/fix-svc-dynacast

This file was deleted.

1 change: 0 additions & 1 deletion .changes/fix-syncstate-offer

This file was deleted.

1 change: 0 additions & 1 deletion .changes/ping-rtt-tracking

This file was deleted.

1 change: 0 additions & 1 deletion .changes/reconnect-jitter

This file was deleted.

1 change: 0 additions & 1 deletion .changes/set-video-dimensions

This file was deleted.

2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.6.5
2.7.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.7.0

* Added: Add setVideoDimensions for remote track publications
* Added: Add audio renderer API for receiving raw audio frames
* Changed: Bump flutter-webrtc to 1.4.0 and upgrade to libwebrtc m144
* Fixed: Add signal RTT tracking via pingReq/pongResp
* Fixed: Add jitter to reconnect retry delays
* Fixed: Fix missing params in CameraCaptureOptions.copyWith
* Fixed: Fix missing RoomReconnectedEvent and incorrect SyncState timing during signal-only reconnection
* Fixed: Fix VP9/SVC dynacast layer handling
* Fixed: Stop processor on track end
* Fixed: Include last server offer in SyncState during reconnection

## 2.6.5

* Added: Send reconnect reason to server during WebSocket reconnection
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.6.5
livekit_client: ^2.7.0
```

### iOS
Expand Down
2 changes: 0 additions & 2 deletions example/ios/Flutter/AppFrameworkInfo.plist
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,5 @@
<string>????</string>
<key>CFBundleVersion</key>
<string>1.0</string>
<key>MinimumOSVersion</key>
<string>13.0</string>
</dict>
</plist>
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.6.5'
s.version = '2.7.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 @@ -20,7 +20,7 @@ import 'support/platform.dart' show lkPlatformIsMobile;
/// Main entry point to connect to a room.
/// {@category Room}
class LiveKitClient {
static const version = '2.6.5';
static const version = '2.7.0';

/// Initialize the WebRTC plugin. If this is not manually called, will be
/// initialized with default settings.
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.6.5'
s.version = '2.7.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.6.5
version: 2.7.0
homepage: https://github.com/livekit/client-sdk-flutter

environment:
Expand Down
Loading