Skip to content

Commit 49831bf

Browse files
authored
Update to gRPC 1.69.0 (#14342)
1 parent 8dd75ef commit 49831bf

File tree

5 files changed

+10
-9
lines changed

5 files changed

+10
-9
lines changed

FirebaseFirestoreInternal.podspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ Google Cloud Firestore is a NoSQL document database built for automatic scaling,
9595
s.dependency 'FirebaseAppCheckInterop', '~> 11.0'
9696
s.dependency 'FirebaseCore', '~> 11.8.0'
9797

98-
abseil_version = '~> 1.20240116.1'
98+
abseil_version = '~> 1.20240722.0'
9999
s.dependency 'abseil/algorithm', abseil_version
100100
s.dependency 'abseil/base', abseil_version
101101
s.dependency 'abseil/container/flat_hash_map', abseil_version
@@ -105,8 +105,8 @@ Google Cloud Firestore is a NoSQL document database built for automatic scaling,
105105
s.dependency 'abseil/time', abseil_version
106106
s.dependency 'abseil/types', abseil_version
107107

108-
s.dependency 'gRPC-Core', '~> 1.65.0'
109-
s.dependency 'gRPC-C++', '~> 1.65.0'
108+
s.dependency 'gRPC-Core', '~> 1.69.0'
109+
s.dependency 'gRPC-C++', '~> 1.69.0'
110110
s.dependency 'leveldb-library', '~> 1.22'
111111
s.dependency 'nanopb', '~> 3.30910.0'
112112

Firestore/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# 11.8.0
22
- [fixed] Fixed use-after-free bug when internally formatting strings. (#14306)
3+
- [changed] Update gRPC dependency to 1.69.
34

45
# 11.6.0
56
- [fixed] Add conditional `Sendable` conformance so `ServerTimestamp<T>` is

Firestore/Example/Podfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ if is_platform(:ios)
9999

100100
configure_local_pods()
101101

102-
pod 'abseil', '~> 1.20240116.1'
102+
pod 'abseil', '~> 1.20240722.0'
103103

104104
target 'Firestore_Tests_iOS' do
105105
inherit! :search_paths
@@ -142,7 +142,7 @@ if is_platform(:osx)
142142

143143
configure_local_pods()
144144

145-
pod 'abseil', '~> 1.20240116.1'
145+
pod 'abseil', '~> 1.20240722.0'
146146

147147
target 'Firestore_Tests_macOS' do
148148
inherit! :search_paths
@@ -172,7 +172,7 @@ if is_platform(:tvos)
172172

173173
configure_local_pods()
174174

175-
pod 'abseil', '~> 1.20240116.1'
175+
pod 'abseil', '~> 1.20240722.0'
176176

177177
target 'Firestore_Tests_tvOS' do
178178
inherit! :search_paths

Firestore/Example/ProtobufCpp.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Pod::Spec.new do |s|
5858

5959
s.header_mappings_dir = 'src/'
6060

61-
s.dependency 'abseil', '~> 1.20240116.1'
61+
s.dependency 'abseil', '~> 1.20240722.0'
6262

6363
# Set a CPP symbol so the code knows to use framework imports.
6464
s.pod_target_xcconfig = {

Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1350,7 +1350,7 @@ func abseilDependency() -> Package.Dependency {
13501350
if ProcessInfo.processInfo.environment["FIREBASE_SOURCE_FIRESTORE"] != nil {
13511351
packageInfo = (
13521352
"https://github.com/firebase/abseil-cpp-SwiftPM.git",
1353-
"0.20240116.1" ..< "0.20240117.0"
1353+
"0.20240722.0" ..< "0.20240723.0"
13541354
)
13551355
} else {
13561356
packageInfo = (
@@ -1368,7 +1368,7 @@ func grpcDependency() -> Package.Dependency {
13681368
// If building Firestore from source, abseil will need to be built as source
13691369
// as the headers in the binary version of abseil are unusable.
13701370
if ProcessInfo.processInfo.environment["FIREBASE_SOURCE_FIRESTORE"] != nil {
1371-
packageInfo = ("https://github.com/grpc/grpc-ios.git", "1.65.0" ..< "1.66.0")
1371+
packageInfo = ("https://github.com/grpc/grpc-ios.git", "1.69.0" ..< "1.70.0")
13721372
} else {
13731373
packageInfo = ("https://github.com/google/grpc-binary.git", "1.65.1" ..< "1.66.0")
13741374
}

0 commit comments

Comments
 (0)