Skip to content
Open
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/broadcast-crash

This file was deleted.

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

This file was deleted.

1 change: 0 additions & 1 deletion .changes/local-track-crash

This file was deleted.

1 change: 0 additions & 1 deletion .changes/screensharing-vp9

This file was deleted.

1 change: 0 additions & 1 deletion .changes/sync-race-cond

This file was deleted.

1 change: 0 additions & 1 deletion .changes/video-view-crash

This file was deleted.

9 changes: 5 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,12 +59,13 @@ jobs:
platform: "tvOS Simulator,name=Apple TV,OS=18.5"

# https://github.com/actions/runner-images/blob/main/images/macos/macos-26-arm64-Readme.md
# Use latest-stable temporarily to avoid missing sims
- os: macos-26
xcode: latest
xcode: latest-stable
platform: "iOS Simulator,name=iPhone 17 Pro,OS=26.1"
symbol-graph: true
- os: macos-26
xcode: latest
xcode: latest-stable
platform: "iOS Simulator,name=iPhone 17 Pro,OS=26.1"
extension-api-only: true
- os: macos-26
Expand All @@ -83,10 +84,10 @@ jobs:
xcode: latest
platform: "macOS,variant=Mac Catalyst"
- os: macos-26
xcode: latest
xcode: latest-stable
platform: "visionOS Simulator,name=Apple Vision Pro,OS=26.1"
- os: macos-26
xcode: latest
xcode: latest-stable
platform: "tvOS Simulator,name=Apple TV,OS=26.1"

runs-on: ${{ matrix.os }}
Expand Down
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.10.1
2.10.2
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## [2.10.2] - 2025-12-10

### Fixed

- Screen sharing not publishing frames with VP9/AV1 codecs
- Crash in VideoView when video dimensions are both 0
- Crash when moving apps to background during broadcast
- Crash in LocalAudioTrack.deinit
- Default degradation preference for non-simulcast tracks
- Race condition during sync preventing track subscription

## [2.10.1] - 2025-11-26

### Changed
Expand Down
2 changes: 1 addition & 1 deletion LiveKitClient.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = "LiveKitClient"
spec.version = "2.10.1"
spec.version = "2.10.2"
spec.summary = "LiveKit Swift Client SDK. Easily build live audio or video experiences into your mobile app, game or website."
spec.homepage = "https://github.com/livekit/client-sdk-swift"
spec.license = {:type => "Apache 2.0", :file => "LICENSE"}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Add the dependency and also to your target
let package = Package(
...
dependencies: [
.package(name: "LiveKit", url: "https://github.com/livekit/client-sdk-swift.git", .upToNextMajor("2.10.1")),
.package(name: "LiveKit", url: "https://github.com/livekit/client-sdk-swift.git", .upToNextMajor("2.10.2")),
],
targets: [
.target(
Expand Down
2 changes: 1 addition & 1 deletion Sources/LiveKit/LiveKit.swift
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public class LiveKitSDK: NSObject, Loggable {
override private init() {}

@objc(sdkVersion)
public static let version = "2.10.1"
public static let version = "2.10.2"

fileprivate struct State {
var logger: Logger = OSLogger()
Expand Down
Loading