Skip to content

Commit

Permalink
release: 6.33.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Salakar committed Sep 23, 2020
1 parent 8f47637 commit 8c5af96
Show file tree
Hide file tree
Showing 28 changed files with 215 additions and 34 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.17.1'
firebase_firestore_version = '1.18.0'

Pod::Spec.new do |s|
s.name = 'FirebaseFirestore'
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
20 changes: 10 additions & 10 deletions FirebaseFirestore/FirebaseFirestore.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -6,45 +6,45 @@
<array>
<dict>
<key>LibraryIdentifier</key>
<string>ios-x86_64-maccatalyst</string>
<string>ios-armv7_arm64</string>
<key>LibraryPath</key>
<string>FirebaseFirestore.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>
<dict>
<key>LibraryIdentifier</key>
<string>ios-armv7_arm64</string>
<string>ios-i386_x86_64-simulator</string>
<key>LibraryPath</key>
<string>FirebaseFirestore.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>
<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 @@ -109,6 +109,30 @@ NS_SWIFT_NAME(Query)
- (FIRQuery *)queryWhereField:(NSString *)field
isEqualTo:(id)value NS_SWIFT_NAME(whereField(_:isEqualTo:));

/**
* Creates and returns a new `FIRQuery` with the additional filter that documents must
* contain the specified field and the value does not equal the specified value.
*
* @param path The path of the field to compare.
* @param value The value the field must be equal to.
*
* @return The created `FIRQuery`.
*/
- (FIRQuery *)queryWhereFieldPath:(FIRFieldPath *)path
isNotEqualTo:(id)value NS_SWIFT_NAME(whereField(_:isNotEqualTo:));

/**
* Creates and returns a new `FIRQuery` with the additional filter that documents must
* contain the specified field and the value does not equal the specified value.
*
* @param field The name of the field to compare.
* @param value The value the field must be equal to.
*
* @return The created `FIRQuery`.
*/
- (FIRQuery *)queryWhereField:(NSString *)field
isNotEqualTo:(id)value NS_SWIFT_NAME(whereField(_:isNotEqualTo:));

/**
* Creates and returns a new `FIRQuery` with the additional filter that documents must
* contain the specified field and the value must be equal to the specified value.
Expand Down Expand Up @@ -308,6 +332,42 @@ NS_SWIFT_NAME(Query)
- (FIRQuery *)queryWhereFieldPath:(FIRFieldPath *)path
in:(NSArray<id> *)values NS_SWIFT_NAME(whereField(_:in:));

/**
* Creates and returns a new `FIRQuery` with the additional filter that documents must contain
* the specified field and the value does not equal any of the values from the provided array.
*
* One special case is that `notIn` filters cannot match `nil` values. To query for documents
* where a field exists and is `nil`, use a `notEqual` filter, which can handle this special case.
*
* A query can have only one `notIn` filter, and it cannot be combined with an `arrayContains`,
* `arrayContainsAny`, `in`, or `notEqual` filter.
*
* @param field The name of the field to search.
* @param values The array that contains the values to match.
*
* @return The created `FIRQuery`.
*/
- (FIRQuery *)queryWhereField:(NSString *)field
notIn:(NSArray<id> *)values NS_SWIFT_NAME(whereField(_:notIn:));

/**
* Creates and returns a new `FIRQuery` with the additional filter that documents must contain
* the specified field and the value does not equal any of the values from the provided array.
*
* One special case is that `notIn` filters cannot match `nil` values. To query for documents
* where a field exists and is `nil`, use a `notEqual` filter, which can handle this special case.
*
* Passing in a `null` value into the `values` array results in no document matches. To query
* for documents where a field is not `null`, use a `notEqual` filter.
*
* @param path The path of the field to search.
* @param values The array that contains the values to match.
*
* @return The created `FIRQuery`.
*/
- (FIRQuery *)queryWhereFieldPath:(FIRFieldPath *)path
notIn:(NSArray<id> *)values NS_SWIFT_NAME(whereField(_:notIn:));

/**
* Creates and returns a new `FIRQuery` with the additional filter that documents must
* satisfy the specified predicate.
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,30 @@ NS_SWIFT_NAME(Query)
- (FIRQuery *)queryWhereField:(NSString *)field
isEqualTo:(id)value NS_SWIFT_NAME(whereField(_:isEqualTo:));

/**
* Creates and returns a new `FIRQuery` with the additional filter that documents must
* contain the specified field and the value does not equal the specified value.
*
* @param path The path of the field to compare.
* @param value The value the field must be equal to.
*
* @return The created `FIRQuery`.
*/
- (FIRQuery *)queryWhereFieldPath:(FIRFieldPath *)path
isNotEqualTo:(id)value NS_SWIFT_NAME(whereField(_:isNotEqualTo:));

/**
* Creates and returns a new `FIRQuery` with the additional filter that documents must
* contain the specified field and the value does not equal the specified value.
*
* @param field The name of the field to compare.
* @param value The value the field must be equal to.
*
* @return The created `FIRQuery`.
*/
- (FIRQuery *)queryWhereField:(NSString *)field
isNotEqualTo:(id)value NS_SWIFT_NAME(whereField(_:isNotEqualTo:));

/**
* Creates and returns a new `FIRQuery` with the additional filter that documents must
* contain the specified field and the value must be equal to the specified value.
Expand Down Expand Up @@ -308,6 +332,42 @@ NS_SWIFT_NAME(Query)
- (FIRQuery *)queryWhereFieldPath:(FIRFieldPath *)path
in:(NSArray<id> *)values NS_SWIFT_NAME(whereField(_:in:));

/**
* Creates and returns a new `FIRQuery` with the additional filter that documents must contain
* the specified field and the value does not equal any of the values from the provided array.
*
* One special case is that `notIn` filters cannot match `nil` values. To query for documents
* where a field exists and is `nil`, use a `notEqual` filter, which can handle this special case.
*
* A query can have only one `notIn` filter, and it cannot be combined with an `arrayContains`,
* `arrayContainsAny`, `in`, or `notEqual` filter.
*
* @param field The name of the field to search.
* @param values The array that contains the values to match.
*
* @return The created `FIRQuery`.
*/
- (FIRQuery *)queryWhereField:(NSString *)field
notIn:(NSArray<id> *)values NS_SWIFT_NAME(whereField(_:notIn:));

/**
* Creates and returns a new `FIRQuery` with the additional filter that documents must contain
* the specified field and the value does not equal any of the values from the provided array.
*
* One special case is that `notIn` filters cannot match `nil` values. To query for documents
* where a field exists and is `nil`, use a `notEqual` filter, which can handle this special case.
*
* Passing in a `null` value into the `values` array results in no document matches. To query
* for documents where a field is not `null`, use a `notEqual` filter.
*
* @param path The path of the field to search.
* @param values The array that contains the values to match.
*
* @return The created `FIRQuery`.
*/
- (FIRQuery *)queryWhereFieldPath:(FIRFieldPath *)path
notIn:(NSArray<id> *)values NS_SWIFT_NAME(whereField(_:notIn:));

/**
* Creates and returns a new `FIRQuery` with the additional filter that documents must
* satisfy the specified predicate.
Expand Down
Loading

0 comments on commit 8c5af96

Please sign in to comment.