Skip to content

Commit 61f849e

Browse files
committed
release: 6.26.0
1 parent 74341e4 commit 61f849e

File tree

30 files changed

+98
-112
lines changed

30 files changed

+98
-112
lines changed

FirebaseFirestore.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
firebase_firestore_version = '1.14.0'
1+
firebase_firestore_version = '1.15.0'
22

33
Pod::Spec.new do |s|
44
s.name = 'FirebaseFirestore'

FirebaseFirestore/BoringSSL-GRPC.xcframework/Info.plist

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,17 @@
66
<array>
77
<dict>
88
<key>LibraryIdentifier</key>
9-
<string>ios-armv7_arm64</string>
9+
<string>ios-x86_64-maccatalyst</string>
1010
<key>LibraryPath</key>
1111
<string>BoringSSL-GRPC.framework</string>
1212
<key>SupportedArchitectures</key>
1313
<array>
14-
<string>armv7</string>
15-
<string>arm64</string>
14+
<string>x86_64</string>
1615
</array>
1716
<key>SupportedPlatform</key>
1817
<string>ios</string>
18+
<key>SupportedPlatformVariant</key>
19+
<string>maccatalyst</string>
1920
</dict>
2021
<dict>
2122
<key>LibraryIdentifier</key>
@@ -34,17 +35,16 @@
3435
</dict>
3536
<dict>
3637
<key>LibraryIdentifier</key>
37-
<string>ios-x86_64-maccatalyst</string>
38+
<string>ios-armv7_arm64</string>
3839
<key>LibraryPath</key>
3940
<string>BoringSSL-GRPC.framework</string>
4041
<key>SupportedArchitectures</key>
4142
<array>
42-
<string>x86_64</string>
43+
<string>armv7</string>
44+
<string>arm64</string>
4345
</array>
4446
<key>SupportedPlatform</key>
4547
<string>ios</string>
46-
<key>SupportedPlatformVariant</key>
47-
<string>maccatalyst</string>
4848
</dict>
4949
</array>
5050
<key>CFBundlePackageType</key>

FirebaseFirestore/FirebaseFirestore.xcframework/Info.plist

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,32 +19,32 @@
1919
</dict>
2020
<dict>
2121
<key>LibraryIdentifier</key>
22-
<string>ios-x86_64-maccatalyst</string>
22+
<string>ios-i386_x86_64-simulator</string>
2323
<key>LibraryPath</key>
2424
<string>FirebaseFirestore.framework</string>
2525
<key>SupportedArchitectures</key>
2626
<array>
27+
<string>i386</string>
2728
<string>x86_64</string>
2829
</array>
2930
<key>SupportedPlatform</key>
3031
<string>ios</string>
3132
<key>SupportedPlatformVariant</key>
32-
<string>maccatalyst</string>
33+
<string>simulator</string>
3334
</dict>
3435
<dict>
3536
<key>LibraryIdentifier</key>
36-
<string>ios-i386_x86_64-simulator</string>
37+
<string>ios-x86_64-maccatalyst</string>
3738
<key>LibraryPath</key>
3839
<string>FirebaseFirestore.framework</string>
3940
<key>SupportedArchitectures</key>
4041
<array>
41-
<string>i386</string>
4242
<string>x86_64</string>
4343
</array>
4444
<key>SupportedPlatform</key>
4545
<string>ios</string>
4646
<key>SupportedPlatformVariant</key>
47-
<string>simulator</string>
47+
<string>maccatalyst</string>
4848
</dict>
4949
</array>
5050
<key>CFBundlePackageType</key>

FirebaseFirestore/FirebaseFirestore.xcframework/ios-armv7_arm64/FirebaseFirestore.framework/Headers/FIRFirestore.h

Lines changed: 18 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -211,21 +211,17 @@ NS_SWIFT_NAME(Firestore)
211211
- (void)waitForPendingWritesWithCompletion:(void (^)(NSError *_Nullable error))completion;
212212

213213
/**
214-
* Attaches a listener for a snapshots-in-sync event. Server-generated
215-
* updates and local changes can affect multiple snapshot listeners.
216-
* The snapshots-in-sync event indicates that all listeners affected by
217-
* a given change have fired.
214+
* Attaches a listener for a snapshots-in-sync event. The snapshots-in-sync event indicates that all
215+
* listeners affected by a given change have fired, even if a single server-generated change affects
216+
* multiple listeners.
218217
*
219-
* NOTE: The snapshots-in-sync event only indicates that listeners are
220-
* in sync with each other, but does not relate to whether those
221-
* snapshots are in sync with the server. Use SnapshotMetadata in the
222-
* individual listeners to determine if a snapshot is from the cache or
223-
* the server.
218+
* NOTE: The snapshots-in-sync event only indicates that listeners are in sync with each other, but
219+
* does not relate to whether those snapshots are in sync with the server. Use SnapshotMetadata in
220+
* the individual listeners to determine if a snapshot is from the cache or the server.
224221
*
225-
* @param listener A callback to be called every time all snapshot
226-
* listeners are in sync with each other.
227-
* @return A FIRListenerRegistration object that can be used to remove the
228-
* listener.
222+
* @param listener A callback to be called every time all snapshot listeners are in sync with each
223+
* other.
224+
* @return A FIRListenerRegistration object that can be used to remove the listener.
229225
*/
230226
- (id<FIRListenerRegistration>)addSnapshotsInSyncListener:(void (^)(void))listener
231227
NS_SWIFT_NAME(addSnapshotsInSyncListener(_:));
@@ -235,20 +231,19 @@ NS_SWIFT_NAME(Firestore)
235231
/**
236232
* Terminates this `FIRFirestore` instance.
237233
*
238-
* After calling `terminate` only the `clearPersistence` method may be used. Any other method
239-
* will throw an error.
234+
* After calling `terminate` only the `clearPersistence` method may be used. Any other method will
235+
* throw an error.
240236
*
241-
* To restart after termination, simply create a new instance of FIRFirestore with
242-
* `firestore` or `firestoreForApp` methods.
237+
* To restart after termination, simply create a new instance of FIRFirestore with `firestore` or
238+
* `firestoreForApp` methods.
243239
*
244240
* Termination does not cancel any pending writes and any tasks that are awaiting a response from
245-
* the server will not be resolved. The next time you start this instance, it will resume
246-
* attempting to send these writes to the server.
241+
* the server will not be resolved. The next time you start this instance, it will resume attempting
242+
* to send these writes to the server.
247243
*
248-
* Note: Under normal circumstances, calling this method is not required. This
249-
* method is useful only when you want to force this instance to release all of its resources or
250-
* in combination with `clearPersistence` to ensure that all local state is destroyed
251-
* between test runs.
244+
* Note: Under normal circumstances, calling this method is not required. This method is useful only
245+
* when you want to force this instance to release all of its resources or in combination with
246+
* `clearPersistence` to ensure that all local state is destroyed between test runs.
252247
*
253248
* @param completion A block to execute once everything has been terminated.
254249
*/

FirebaseFirestore/FirebaseFirestore.xcframework/ios-i386_x86_64-simulator/FirebaseFirestore.framework/Headers/FIRFirestore.h

Lines changed: 18 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -211,21 +211,17 @@ NS_SWIFT_NAME(Firestore)
211211
- (void)waitForPendingWritesWithCompletion:(void (^)(NSError *_Nullable error))completion;
212212

213213
/**
214-
* Attaches a listener for a snapshots-in-sync event. Server-generated
215-
* updates and local changes can affect multiple snapshot listeners.
216-
* The snapshots-in-sync event indicates that all listeners affected by
217-
* a given change have fired.
214+
* Attaches a listener for a snapshots-in-sync event. The snapshots-in-sync event indicates that all
215+
* listeners affected by a given change have fired, even if a single server-generated change affects
216+
* multiple listeners.
218217
*
219-
* NOTE: The snapshots-in-sync event only indicates that listeners are
220-
* in sync with each other, but does not relate to whether those
221-
* snapshots are in sync with the server. Use SnapshotMetadata in the
222-
* individual listeners to determine if a snapshot is from the cache or
223-
* the server.
218+
* NOTE: The snapshots-in-sync event only indicates that listeners are in sync with each other, but
219+
* does not relate to whether those snapshots are in sync with the server. Use SnapshotMetadata in
220+
* the individual listeners to determine if a snapshot is from the cache or the server.
224221
*
225-
* @param listener A callback to be called every time all snapshot
226-
* listeners are in sync with each other.
227-
* @return A FIRListenerRegistration object that can be used to remove the
228-
* listener.
222+
* @param listener A callback to be called every time all snapshot listeners are in sync with each
223+
* other.
224+
* @return A FIRListenerRegistration object that can be used to remove the listener.
229225
*/
230226
- (id<FIRListenerRegistration>)addSnapshotsInSyncListener:(void (^)(void))listener
231227
NS_SWIFT_NAME(addSnapshotsInSyncListener(_:));
@@ -235,20 +231,19 @@ NS_SWIFT_NAME(Firestore)
235231
/**
236232
* Terminates this `FIRFirestore` instance.
237233
*
238-
* After calling `terminate` only the `clearPersistence` method may be used. Any other method
239-
* will throw an error.
234+
* After calling `terminate` only the `clearPersistence` method may be used. Any other method will
235+
* throw an error.
240236
*
241-
* To restart after termination, simply create a new instance of FIRFirestore with
242-
* `firestore` or `firestoreForApp` methods.
237+
* To restart after termination, simply create a new instance of FIRFirestore with `firestore` or
238+
* `firestoreForApp` methods.
243239
*
244240
* Termination does not cancel any pending writes and any tasks that are awaiting a response from
245-
* the server will not be resolved. The next time you start this instance, it will resume
246-
* attempting to send these writes to the server.
241+
* the server will not be resolved. The next time you start this instance, it will resume attempting
242+
* to send these writes to the server.
247243
*
248-
* Note: Under normal circumstances, calling this method is not required. This
249-
* method is useful only when you want to force this instance to release all of its resources or
250-
* in combination with `clearPersistence` to ensure that all local state is destroyed
251-
* between test runs.
244+
* Note: Under normal circumstances, calling this method is not required. This method is useful only
245+
* when you want to force this instance to release all of its resources or in combination with
246+
* `clearPersistence` to ensure that all local state is destroyed between test runs.
252247
*
253248
* @param completion A block to execute once everything has been terminated.
254249
*/

0 commit comments

Comments
 (0)