Skip to content

Commit 0828459

Browse files
Update StreamWebRTC (#727)
1 parent 3524987 commit 0828459

File tree

6 files changed

+10
-7
lines changed

6 files changed

+10
-7
lines changed

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
66

77
### 🐞 Fixed
88
- Fix an issue that was keeping the Picture-in-Picture active while the app was in the foreground [#723](https://github.com/GetStream/stream-video-swift/pull/723)
9+
- Update WebRTC to resolve a crash on HangUp [#727](https://github.com/GetStream/stream-video-swift/pull/727)
910

1011
# [1.19.0](https://github.com/GetStream/stream-video-swift/releases/tag/1.19.0)
1112
_March 20, 2025_
@@ -20,7 +21,7 @@ _March 20, 2025_
2021
- Better handling for blocked users [#707](https://github.com/GetStream/stream-video-swift/pull/707)
2122

2223
### ✅ Added
23-
- Expose publicly the `StreamPictureInPictureAdapter` so it can be used outside of the `CallViewModel` [#711](https://github.com/GetStream/stream-video-swift/pull/711)
24+
- Expose publicly the `StreamPictureInPictureAdapter` so it can be used outside of the `CallViewModel` [#711](https://github.com/GetStream/stream-video-swift/pull/711)
2425

2526
# [1.18.0](https://github.com/GetStream/stream-video-swift/releases/tag/1.18.0)
2627
_March 06, 2025_
@@ -212,7 +213,7 @@ _May 01, 2024_
212213
_March 19, 2024_
213214

214215
### 🐞 Fixed
215-
- CallView positioning when placed inside a UIKit container. [#329](https://github.com/GetStream/stream-video-swift/pull/329)
216+
- CallView positioning when placed inside a UIKit container. [#329](https://github.com/GetStream/stream-video-swift/pull/329)
216217

217218
# [0.5.2](https://github.com/GetStream/stream-video-swift/releases/tag/0.5.2)
218219
_March 15, 2024_

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ let package = Package(
2323
],
2424
dependencies: [
2525
.package(url: "https://github.com/apple/swift-protobuf.git", from: "1.18.0"),
26-
.package(url: "https://github.com/GetStream/stream-video-swift-webrtc.git", exact: "125.6422.064")
26+
.package(url: "https://github.com/GetStream/stream-video-swift-webrtc.git", exact: "125.6422.065")
2727
],
2828
targets: [
2929
.target(

StreamVideo-XCFramework.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Pod::Spec.new do |spec|
2424

2525
spec.prepare_command = <<-CMD
2626
mkdir -p Frameworks/
27-
curl -sL "https://github.com/GetStream/stream-video-swift-webrtc/releases/download/125.6422.064/StreamWebRTC.xcframework.zip" -o Frameworks/StreamWebRTC.zip
27+
curl -sL "https://github.com/GetStream/stream-video-swift-webrtc/releases/download/125.6422.065/StreamWebRTC.xcframework.zip" -o Frameworks/StreamWebRTC.zip
2828
unzip -o Frameworks/StreamWebRTC.zip -d Frameworks/
2929
rm Frameworks/StreamWebRTC.zip
3030
CMD

StreamVideo.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Pod::Spec.new do |spec|
2525

2626
spec.prepare_command = <<-CMD
2727
mkdir -p Frameworks/
28-
curl -sL "https://github.com/GetStream/stream-video-swift-webrtc/releases/download/125.6422.064/StreamWebRTC.xcframework.zip" -o Frameworks/StreamWebRTC.zip
28+
curl -sL "https://github.com/GetStream/stream-video-swift-webrtc/releases/download/125.6422.065/StreamWebRTC.xcframework.zip" -o Frameworks/StreamWebRTC.zip
2929
unzip -o Frameworks/StreamWebRTC.zip -d Frameworks/
3030
rm Frameworks/StreamWebRTC.zip
3131
CMD

StreamVideo.xcodeproj/project.pbxproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9588,7 +9588,7 @@
95889588
repositoryURL = "https://github.com/GetStream/stream-video-swift-webrtc";
95899589
requirement = {
95909590
kind = exactVersion;
9591-
version = 125.6422.64;
9591+
version = 125.6422.65;
95929592
};
95939593
};
95949594
8423B7542950BB0A00012F8D /* XCRemoteSwiftPackageReference "sentry-cocoa" */ = {

SwiftUIDemoAppUITests/Tests/CallViewsTests.swift

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,9 +278,11 @@ final class CallViewsTests: StreamTestCase {
278278
}
279279
}
280280

281-
func testMicrophoneIcon() {
281+
func testMicrophoneIcon() throws {
282282
linkToScenario(withId: 1777)
283283

284+
throw XCTSkip("DemoApp/Gleap related issue. Fix is coming soon.")
285+
284286
GIVEN("user starts a call") {
285287
userRobot
286288
.waitForAutoLogin()

0 commit comments

Comments
 (0)