Skip to content

Commit

Permalink
release: 6.26.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Salakar committed Jun 12, 2020
1 parent 74341e4 commit 61f849e
Show file tree
Hide file tree
Showing 30 changed files with 98 additions and 112 deletions.
2 changes: 1 addition & 1 deletion FirebaseFirestore.podspec
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
firebase_firestore_version = '1.14.0'
firebase_firestore_version = '1.15.0'

Pod::Spec.new do |s|
s.name = 'FirebaseFirestore'
Expand Down
14 changes: 7 additions & 7 deletions FirebaseFirestore/BoringSSL-GRPC.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,17 @@
<array>
<dict>
<key>LibraryIdentifier</key>
<string>ios-armv7_arm64</string>
<string>ios-x86_64-maccatalyst</string>
<key>LibraryPath</key>
<string>BoringSSL-GRPC.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>armv7</string>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>maccatalyst</string>
</dict>
<dict>
<key>LibraryIdentifier</key>
Expand All @@ -34,17 +35,16 @@
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>ios-x86_64-maccatalyst</string>
<string>ios-armv7_arm64</string>
<key>LibraryPath</key>
<string>BoringSSL-GRPC.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>x86_64</string>
<string>armv7</string>
<string>arm64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>maccatalyst</string>
</dict>
</array>
<key>CFBundlePackageType</key>
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
10 changes: 5 additions & 5 deletions FirebaseFirestore/FirebaseFirestore.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -19,32 +19,32 @@
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>ios-x86_64-maccatalyst</string>
<string>ios-i386_x86_64-simulator</string>
<key>LibraryPath</key>
<string>FirebaseFirestore.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>i386</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>maccatalyst</string>
<string>simulator</string>
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>ios-i386_x86_64-simulator</string>
<string>ios-x86_64-maccatalyst</string>
<key>LibraryPath</key>
<string>FirebaseFirestore.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>i386</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
<string>maccatalyst</string>
</dict>
</array>
<key>CFBundlePackageType</key>
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -211,21 +211,17 @@ NS_SWIFT_NAME(Firestore)
- (void)waitForPendingWritesWithCompletion:(void (^)(NSError *_Nullable error))completion;

/**
* Attaches a listener for a snapshots-in-sync event. Server-generated
* updates and local changes can affect multiple snapshot listeners.
* The snapshots-in-sync event indicates that all listeners affected by
* a given change have fired.
* Attaches a listener for a snapshots-in-sync event. The snapshots-in-sync event indicates that all
* listeners affected by a given change have fired, even if a single server-generated change affects
* multiple listeners.
*
* NOTE: The snapshots-in-sync event only indicates that listeners are
* in sync with each other, but does not relate to whether those
* snapshots are in sync with the server. Use SnapshotMetadata in the
* individual listeners to determine if a snapshot is from the cache or
* the server.
* NOTE: The snapshots-in-sync event only indicates that listeners are in sync with each other, but
* does not relate to whether those snapshots are in sync with the server. Use SnapshotMetadata in
* the individual listeners to determine if a snapshot is from the cache or the server.
*
* @param listener A callback to be called every time all snapshot
* listeners are in sync with each other.
* @return A FIRListenerRegistration object that can be used to remove the
* listener.
* @param listener A callback to be called every time all snapshot listeners are in sync with each
* other.
* @return A FIRListenerRegistration object that can be used to remove the listener.
*/
- (id<FIRListenerRegistration>)addSnapshotsInSyncListener:(void (^)(void))listener
NS_SWIFT_NAME(addSnapshotsInSyncListener(_:));
Expand All @@ -235,20 +231,19 @@ NS_SWIFT_NAME(Firestore)
/**
* Terminates this `FIRFirestore` instance.
*
* After calling `terminate` only the `clearPersistence` method may be used. Any other method
* will throw an error.
* After calling `terminate` only the `clearPersistence` method may be used. Any other method will
* throw an error.
*
* To restart after termination, simply create a new instance of FIRFirestore with
* `firestore` or `firestoreForApp` methods.
* To restart after termination, simply create a new instance of FIRFirestore with `firestore` or
* `firestoreForApp` methods.
*
* Termination does not cancel any pending writes and any tasks that are awaiting a response from
* the server will not be resolved. The next time you start this instance, it will resume
* attempting to send these writes to the server.
* the server will not be resolved. The next time you start this instance, it will resume attempting
* to send these writes to the server.
*
* Note: Under normal circumstances, calling this method is not required. This
* method is useful only when you want to force this instance to release all of its resources or
* in combination with `clearPersistence` to ensure that all local state is destroyed
* between test runs.
* Note: Under normal circumstances, calling this method is not required. This method is useful only
* when you want to force this instance to release all of its resources or in combination with
* `clearPersistence` to ensure that all local state is destroyed between test runs.
*
* @param completion A block to execute once everything has been terminated.
*/
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -211,21 +211,17 @@ NS_SWIFT_NAME(Firestore)
- (void)waitForPendingWritesWithCompletion:(void (^)(NSError *_Nullable error))completion;

/**
* Attaches a listener for a snapshots-in-sync event. Server-generated
* updates and local changes can affect multiple snapshot listeners.
* The snapshots-in-sync event indicates that all listeners affected by
* a given change have fired.
* Attaches a listener for a snapshots-in-sync event. The snapshots-in-sync event indicates that all
* listeners affected by a given change have fired, even if a single server-generated change affects
* multiple listeners.
*
* NOTE: The snapshots-in-sync event only indicates that listeners are
* in sync with each other, but does not relate to whether those
* snapshots are in sync with the server. Use SnapshotMetadata in the
* individual listeners to determine if a snapshot is from the cache or
* the server.
* NOTE: The snapshots-in-sync event only indicates that listeners are in sync with each other, but
* does not relate to whether those snapshots are in sync with the server. Use SnapshotMetadata in
* the individual listeners to determine if a snapshot is from the cache or the server.
*
* @param listener A callback to be called every time all snapshot
* listeners are in sync with each other.
* @return A FIRListenerRegistration object that can be used to remove the
* listener.
* @param listener A callback to be called every time all snapshot listeners are in sync with each
* other.
* @return A FIRListenerRegistration object that can be used to remove the listener.
*/
- (id<FIRListenerRegistration>)addSnapshotsInSyncListener:(void (^)(void))listener
NS_SWIFT_NAME(addSnapshotsInSyncListener(_:));
Expand All @@ -235,20 +231,19 @@ NS_SWIFT_NAME(Firestore)
/**
* Terminates this `FIRFirestore` instance.
*
* After calling `terminate` only the `clearPersistence` method may be used. Any other method
* will throw an error.
* After calling `terminate` only the `clearPersistence` method may be used. Any other method will
* throw an error.
*
* To restart after termination, simply create a new instance of FIRFirestore with
* `firestore` or `firestoreForApp` methods.
* To restart after termination, simply create a new instance of FIRFirestore with `firestore` or
* `firestoreForApp` methods.
*
* Termination does not cancel any pending writes and any tasks that are awaiting a response from
* the server will not be resolved. The next time you start this instance, it will resume
* attempting to send these writes to the server.
* the server will not be resolved. The next time you start this instance, it will resume attempting
* to send these writes to the server.
*
* Note: Under normal circumstances, calling this method is not required. This
* method is useful only when you want to force this instance to release all of its resources or
* in combination with `clearPersistence` to ensure that all local state is destroyed
* between test runs.
* Note: Under normal circumstances, calling this method is not required. This method is useful only
* when you want to force this instance to release all of its resources or in combination with
* `clearPersistence` to ensure that all local state is destroyed between test runs.
*
* @param completion A block to execute once everything has been terminated.
*/
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -211,21 +211,17 @@ NS_SWIFT_NAME(Firestore)
- (void)waitForPendingWritesWithCompletion:(void (^)(NSError *_Nullable error))completion;

/**
* Attaches a listener for a snapshots-in-sync event. Server-generated
* updates and local changes can affect multiple snapshot listeners.
* The snapshots-in-sync event indicates that all listeners affected by
* a given change have fired.
* Attaches a listener for a snapshots-in-sync event. The snapshots-in-sync event indicates that all
* listeners affected by a given change have fired, even if a single server-generated change affects
* multiple listeners.
*
* NOTE: The snapshots-in-sync event only indicates that listeners are
* in sync with each other, but does not relate to whether those
* snapshots are in sync with the server. Use SnapshotMetadata in the
* individual listeners to determine if a snapshot is from the cache or
* the server.
* NOTE: The snapshots-in-sync event only indicates that listeners are in sync with each other, but
* does not relate to whether those snapshots are in sync with the server. Use SnapshotMetadata in
* the individual listeners to determine if a snapshot is from the cache or the server.
*
* @param listener A callback to be called every time all snapshot
* listeners are in sync with each other.
* @return A FIRListenerRegistration object that can be used to remove the
* listener.
* @param listener A callback to be called every time all snapshot listeners are in sync with each
* other.
* @return A FIRListenerRegistration object that can be used to remove the listener.
*/
- (id<FIRListenerRegistration>)addSnapshotsInSyncListener:(void (^)(void))listener
NS_SWIFT_NAME(addSnapshotsInSyncListener(_:));
Expand All @@ -235,20 +231,19 @@ NS_SWIFT_NAME(Firestore)
/**
* Terminates this `FIRFirestore` instance.
*
* After calling `terminate` only the `clearPersistence` method may be used. Any other method
* will throw an error.
* After calling `terminate` only the `clearPersistence` method may be used. Any other method will
* throw an error.
*
* To restart after termination, simply create a new instance of FIRFirestore with
* `firestore` or `firestoreForApp` methods.
* To restart after termination, simply create a new instance of FIRFirestore with `firestore` or
* `firestoreForApp` methods.
*
* Termination does not cancel any pending writes and any tasks that are awaiting a response from
* the server will not be resolved. The next time you start this instance, it will resume
* attempting to send these writes to the server.
* the server will not be resolved. The next time you start this instance, it will resume attempting
* to send these writes to the server.
*
* Note: Under normal circumstances, calling this method is not required. This
* method is useful only when you want to force this instance to release all of its resources or
* in combination with `clearPersistence` to ensure that all local state is destroyed
* between test runs.
* Note: Under normal circumstances, calling this method is not required. This method is useful only
* when you want to force this instance to release all of its resources or in combination with
* `clearPersistence` to ensure that all local state is destroyed between test runs.
*
* @param completion A block to execute once everything has been terminated.
*/
Expand Down
Binary file not shown.
14 changes: 7 additions & 7 deletions FirebaseFirestore/abseil.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -21,30 +21,30 @@
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>ios-armv7_arm64</string>
<string>ios-x86_64-maccatalyst</string>
<key>LibraryPath</key>
<string>abseil.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>armv7</string>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>maccatalyst</string>
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>ios-x86_64-maccatalyst</string>
<string>ios-armv7_arm64</string>
<key>LibraryPath</key>
<string>abseil.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>x86_64</string>
<string>armv7</string>
<string>arm64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>maccatalyst</string>
</dict>
</array>
<key>CFBundlePackageType</key>
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
16 changes: 8 additions & 8 deletions FirebaseFirestore/gRPC-C++.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -20,31 +20,31 @@
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>ios-i386_x86_64-simulator</string>
<string>ios-armv7_arm64</string>
<key>LibraryPath</key>
<string>gRPC-C++.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>i386</string>
<string>x86_64</string>
<string>armv7</string>
<string>arm64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>ios-armv7_arm64</string>
<string>ios-i386_x86_64-simulator</string>
<key>LibraryPath</key>
<string>gRPC-C++.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>armv7</string>
<string>arm64</string>
<string>i386</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
</array>
<key>CFBundlePackageType</key>
Expand Down
Loading

0 comments on commit 61f849e

Please sign in to comment.