Skip to content
Merged
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
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
# [1.50.0](https://github.com/GetStream/stream-video-swift/releases/tag/1.50.0)
_July 29, 2026_

### 🔄 Changed

### 🐞 Fixed
- Fixed camera flips reverting to the front camera during active calls. [#1206](https://github.com/GetStream/stream-video-swift/pull/1206)
- Hanging up an outgoing call right after starting it now reliably stops the callee from ringing. [#1207](https://github.com/GetStream/stream-video-swift/pull/1207)

### 🔄 Changed
- Drop CocoaPods and XCFrameworks support. [#1210](https://github.com/GetStream/stream-video-swift/pull/1210), [#1213](https://github.com/GetStream/stream-video-swift/pull/1213)

# [1.49.0](https://github.com/GetStream/stream-video-swift/releases/tag/1.49.0)
_July 08, 2026_

Expand Down
1 change: 0 additions & 1 deletion StreamVideoArtifacts.json

This file was deleted.

9 changes: 1 addition & 8 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,7 @@ end

desc "Release a new version"
lane :release do |options|
artifacts_path = File.absolute_path('../StreamVideoArtifacts.json')
extra_changes = lambda do |release_version|
# Set the framework version on the artifacts
artifacts = JSON.parse(File.read(artifacts_path))
artifacts[release_version.to_s] = "https://github.com/#{github_repo}/releases/download/#{release_version}/StreamVideo-All.zip"
File.write(artifacts_path, JSON.dump(artifacts))

# Set the framework version in SystemEnvironment+Version.swift
old_content = File.read(swift_environment_path)
current_version = old_content[/version: String = "([^"]+)"/, 1]
Expand Down Expand Up @@ -92,8 +86,7 @@ lane :publish_release do |options|
skip_git_status_check: false,
version: release_version,
sdk_names: sdk_names,
github_repo: github_repo,
upload_assets: ['Products/StreamVideo.zip', 'Products/StreamVideoSwiftUI.zip', 'Products/StreamVideoUIKit.zip', 'Products/StreamVideo-All.zip']
github_repo: github_repo
)

update_spm(version: release_version)
Expand Down
Loading