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
2 changes: 1 addition & 1 deletion FirebaseAuth.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ supports email and password accounts, as well as several 3rd party authenticatio
s.dependency 'FirebaseCoreExtension', '~> 12.0.0'
s.dependency 'GoogleUtilities/AppDelegateSwizzler', '~> 8.1'
s.dependency 'GoogleUtilities/Environment', '~> 8.1'
s.dependency 'GTMSessionFetcher/Core', '>= 3.4', '< 5.0'
s.dependency 'GTMSessionFetcher/Core', '>= 3.4', '< 6.0'
s.ios.dependency 'RecaptchaInterop', '~> 101.0'
s.test_spec 'unit' do |unit_tests|
unit_tests.scheme = { :code_coverage => true }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -998,6 +998,7 @@
requirement = {
kind = upToNextMajorVersion;
minimumVersion = 3.4.1;
maximumVersion = "6.0.0";
};
};
/* End XCRemoteSwiftPackageReference section */
Expand Down
2 changes: 2 additions & 0 deletions FirebaseCore/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@
](https://firebase.google.com/docs/ai-logic/migrate-to-latest-sdk).
- [changed] **Breaking change** The Firebase Swift package now requires the
Swift 6.0 toolchain (Xcode 16.2+).
- [changed] Update GTMSessionFetcher dependency specifications to enable
support for the compatible GTMSessionFetcher 5.x versions.

# Firebase 11.15.0
- [fixed] Remove c99 as the required C language standard. (#14950)
Expand Down
2 changes: 1 addition & 1 deletion FirebaseFunctions.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Cloud Functions for Firebase.
s.dependency 'FirebaseAuthInterop', '~> 12.0.0'
s.dependency 'FirebaseMessagingInterop', '~> 12.0.0'
s.dependency 'FirebaseSharedSwift', '~> 12.0.0'
s.dependency 'GTMSessionFetcher/Core', '>= 3.4', '< 5.0'
s.dependency 'GTMSessionFetcher/Core', '>= 3.4', '< 6.0'

s.test_spec 'objc' do |objc_tests|
objc_tests.platforms = {
Expand Down
2 changes: 1 addition & 1 deletion FirebaseStorage.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Firebase Storage provides robust, secure file uploads and downloads from Firebas
s.dependency 'FirebaseAuthInterop', '~> 12.0.0'
s.dependency 'FirebaseCore', '~> 12.0.0'
s.dependency 'FirebaseCoreExtension', '~> 12.0.0'
s.dependency 'GTMSessionFetcher/Core', '>= 3.4', '< 5.0'
s.dependency 'GTMSessionFetcher/Core', '>= 3.4', '< 6.0'
s.dependency 'GoogleUtilities/Environment', '~> 8.1'

s.test_spec 'ObjCIntegration' do |objc_tests|
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ let package = Package(
),
.package(
url: "https://github.com/google/gtm-session-fetcher.git",
"3.4.1" ..< "5.0.0"
"3.4.1" ..< "6.0.0"
),
.package(
url: "https://github.com/firebase/nanopb.git",
Expand Down
Loading