Skip to content

Conversation

wu-hui
Copy link
Contributor

@wu-hui wu-hui commented Sep 9, 2025

No description provided.

Copy link
Contributor

github-actions bot commented Sep 9, 2025

Firebase AI Mock Responses Check ⚠️

A newer major version of the mock responses for Firebase AI unit tests is available. update_responses.sh should be updated to clone the latest version of the responses: v14.9

Copy link
Contributor

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Summary of Changes

Hello @wu-hui, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

This pull request introduces significant refactoring and expansion to the Firestore Pipeline API. The changes aim to enhance the API's structure, consistency, and extensibility by introducing dedicated options classes for various pipeline stages, renaming existing components for better clarity, and adding new functional capabilities.

Highlights

  • API Refactoring and Renaming: Several methods and classes within the Firestore Pipeline API have been renamed for improved clarity and consistency. Examples include replace becoming replaceWith, convertFrom becoming createFrom, and AggregateWithAlias being renamed to AliasedAggregate.
  • Introduction of Dedicated Options Classes: New options classes have been introduced for various pipeline stages, such as AggregateOptions, FindNearestOptions, CollectionSourceOptions, CollectionGroupOptions, and UnnestOptions. This provides a more structured and extensible way to configure pipeline operations.
  • New Functional Capabilities: The API now includes new functions like countDistinct within AggregateFunction and strReverse for string manipulation in Expr and Functions.
  • API Simplification and Consolidation: Some redundant or less flexible API methods have been removed, such as certain FindNearestStage.of overloads and the offset and select methods from RealtimePipeline.
Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point in your pull request via creating an issue comment (i.e. comment on the pull request page) using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in issue comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here.

You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

@google-oss-bot
Copy link
Contributor

1 Warning
⚠️ Did you forget to add a changelog entry? (Add the 'no-changelog' label to the PR to silence this warning.)

Generated by 🚫 Danger

Copy link
Contributor

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request introduces several significant and beneficial refactorings to the Pipeline API, such as renaming methods for clarity (e.g., replace to replaceWith) and introducing options objects for better extensibility (e.g., FindNearestOptions, AggregateOptions). These changes improve the overall API design and maintainability.

However, the pull request title "Add code samples to comments" is misleading as the core changes are API refactorings, not just comment updates. It would be helpful to update the title to reflect the actual changes.

My review includes a critical issue regarding a potential NullPointerException and a suggestion to improve API consistency.

ctor public FindNearestOptions();
method public com.google.firebase.firestore.pipeline.FindNearestOptions self(com.google.firebase.firestore.pipeline.InternalOptions options);
method public com.google.firebase.firestore.pipeline.FindNearestOptions withDistanceField(com.google.firebase.firestore.pipeline.Field distanceField);
method public com.google.firebase.firestore.pipeline.FindNearestOptions? withDistanceField(String? distanceField);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

critical

The signature for withDistanceField(String? distanceField) allows a nullable String and returns a nullable FindNearestOptions?. This is inconsistent with other builder methods in this class which return non-nullable types.

More critically, the current implementation for this method in stage.kt uses a non-null assertion (!!) on the distanceField parameter without a null check, which will lead to a NullPointerException if null is passed.

// stage.kt
fun withDistanceField(distanceField: String?): FindNearestOptions? {
  return withDistanceField(field(distanceField!!))
}

To fix this, the implementation should handle the null case gracefully, and the return type in the API should be non-nullable (FindNearestOptions) for consistency.

    method public com.google.firebase.firestore.pipeline.FindNearestOptions withDistanceField(String? distanceField);

Comment on lines 1241 to 1243
method public final com.google.firebase.firestore.pipeline.Expr strReverse();
method public static final com.google.firebase.firestore.pipeline.Expr strReverse(com.google.firebase.firestore.pipeline.Expr stringExpression);
method public static final com.google.firebase.firestore.pipeline.Expr strReverse(String fieldName);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The addition of strReverse is a good step towards a more explicit API, especially since arrayReverse also exists. However, the API now also contains a reverse method that also operates on strings. This creates redundancy and potential confusion for developers.

To improve API clarity and consistency, consider deprecating the reverse method for strings in favor of strReverse.

@google-oss-bot
Copy link
Contributor

google-oss-bot commented Sep 9, 2025

Coverage Report 1

Affected Products

  • firebase-firestore

    Overall coverage changed from ? (2851bf4) to 44.74% (5ef007f) by ?.

    364 individual files with coverage change

    FilenameBase (2851bf4)Merge (5ef007f)Diff
    AbstractStream.java?78.65%?
    ActivityScope.java?0.00%?
    AggregateField.java?28.13%?
    AggregateQuery.java?23.81%?
    AggregateQuerySnapshot.java?59.52%?
    aggregates.kt?0.00%?
    AggregateSource.java?0.00%?
    AggregationResult.java?0.00%?
    AggregationResultOrBuilder.java?0.00%?
    AggregationResultProto.java?0.00%?
    AndroidConnectivityMonitor.java?46.91%?
    ApiUtil.java?12.50%?
    ArrayContainsAnyFilter.java?100.00%?
    ArrayContainsFilter.java?100.00%?
    ArrayTransformOperation.java?86.49%?
    ArrayValue.java?48.60%?
    ArrayValueOrBuilder.java?0.00%?
    Assert.java?60.00%?
    AsyncEventListener.java?0.00%?
    AsyncQueue.java?74.13%?
    AutoValue_FieldIndex.java?58.33%?
    AutoValue_FieldIndex_IndexOffset.java?58.62%?
    AutoValue_FieldIndex_IndexState.java?59.09%?
    AutoValue_FieldIndex_Segment.java?54.17%?
    AutoValue_IndexEntry.java?34.21%?
    AutoValue_Overlay.java?54.55%?
    AutoValue_TestingHooks_ExistenceFilterBloomFilterInfo.java?20.00%?
    AutoValue_TestingHooks_ExistenceFilterMismatchInfo.java?23.08%?
    BackgroundQueue.java?81.25%?
    BasePath.java?81.25%?
    BatchGetDocumentsRequest.java?0.00%?
    BatchGetDocumentsRequestOrBuilder.java?0.00%?
    BatchGetDocumentsResponse.java?0.00%?
    BatchGetDocumentsResponseOrBuilder.java?0.00%?
    BeginTransactionRequest.java?0.00%?
    BeginTransactionRequestOrBuilder.java?0.00%?
    BeginTransactionResponse.java?0.00%?
    BeginTransactionResponseOrBuilder.java?0.00%?
    BiFunction.java?0.00%?
    BitSequence.java?43.48%?
    BitSequenceOrBuilder.java?0.00%?
    Blob.java?76.92%?
    BloomFilter.java?87.72%?
    BloomFilterOrBuilder.java?0.00%?
    BloomFilterProto.java?0.00%?
    Bound.java?39.29%?
    BundleCache.java?0.00%?
    BundleCallback.java?0.00%?
    BundledDocumentMetadata.java?0.00%?
    BundledDocumentMetadataOrBuilder.java?0.00%?
    BundleDocument.java?90.00%?
    BundledQuery.java?34.57%?
    BundledQueryOrBuilder.java?0.00%?
    BundleElement.java?0.00%?
    BundleElementOrBuilder.java?0.00%?
    BundleLoader.java?100.00%?
    BundleMetadata.java?0.00%?
    BundleMetadataOrBuilder.java?0.00%?
    BundleProto.java?0.00%?
    BundleReader.java?95.29%?
    BundleSerializer.java?89.52%?
    ByteBufferInputStream.java?83.33%?
    CollectionReference.java?36.36%?
    CommitRequest.java?0.00%?
    CommitRequestOrBuilder.java?0.00%?
    CommitResponse.java?0.00%?
    CommitResponseOrBuilder.java?0.00%?
    CommonProto.java?0.00%?
    ComponentProvider.java?100.00%?
    CompositeFilter.java?90.54%?
    ConnectivityMonitor.java?0.00%?
    Consumer.java?0.00%?
    CreateDocumentRequest.java?0.00%?
    CreateDocumentRequestOrBuilder.java?0.00%?
    CredentialsProvider.java?100.00%?
    Cursor.java?35.29%?
    CursorOrBuilder.java?0.00%?
    CustomClassMapper.java?83.74%?
    DatabaseId.java?85.19%?
    DatabaseInfo.java?90.91%?
    Datastore.java?17.29%?
    DatastoreTestTrace.java?0.00%?
    DeleteDocumentRequest.java?0.00%?
    DeleteDocumentRequestOrBuilder.java?0.00%?
    DeleteMutation.java?90.48%?
    DirectionalIndexByteEncoder.java?100.00%?
    Document.java?100.00%?
    DocumentChange.java?75.00%?
    DocumentChangeOrBuilder.java?0.00%?
    DocumentCollections.java?83.33%?
    DocumentDelete.java?34.59%?
    DocumentDeleteOrBuilder.java?0.00%?
    DocumentId.java?0.00%?
    DocumentKey.java?97.14%?
    DocumentMask.java?40.66%?
    DocumentMaskOrBuilder.java?0.00%?
    DocumentOrBuilder.java?0.00%?
    DocumentOverlayCache.java?0.00%?
    DocumentProto.java?0.00%?
    DocumentReference.java?19.87%?
    DocumentRemove.java?28.57%?
    DocumentRemoveOrBuilder.java?0.00%?
    DocumentSet.java?83.78%?
    DocumentSnapshot.java?52.58%?
    DocumentTransform.java?29.31%?
    DocumentTransformOrBuilder.java?0.00%?
    DocumentViewChange.java?90.91%?
    DocumentViewChangeSet.java?87.88%?
    Emitters.kt?0.00%?
    EncodedPath.java?93.22%?
    EvaluateResult.kt?90.63%?
    evaluation.kt?66.84%?
    EventListener.java?0.00%?
    EventManager.java?92.37%?
    Exclude.java?0.00%?
    ExecutePipelineRequest.java?0.00%?
    ExecutePipelineRequestOrBuilder.java?0.00%?
    ExecutePipelineResponse.java?0.00%?
    ExecutePipelineResponseOrBuilder.java?0.00%?
    Executors.java?100.00%?
    ExistenceFilter.java?90.00%?
    ExistenceFilterOrBuilder.java?0.00%?
    ExponentialBackoff.java?69.57%?
    expressions.kt?34.96%?
    FieldFilter.java?78.90%?
    FieldIndex.java?98.18%?
    FieldMask.java?57.89%?
    FieldPath.java?93.10%?
    FieldTransform.java?64.71%?
    FieldValue.java?82.76%?
    FileUtil.java?0.00%?
    Filter.java?78.57%?
    FirebaseAppCheckTokenProvider.java?93.75%?
    FirebaseAuthCredentialsProvider.java?100.00%?
    FirebaseClientGrpcMetadataProvider.java?44.00%?
    FirebaseFirestore.java?41.76%?
    FirebaseFirestoreException.java?83.72%?
    FirebaseFirestoreSettings.java?77.53%?
    Firestore.kt?42.31%?
    FirestoreCallCredentials.java?18.60%?
    FirestoreChannel.java?41.67%?
    FirestoreClient.java?37.76%?
    FirestoreClientProvider.java?63.64%?
    FirestoreGrpc.java?2.96%?
    FirestoreIndexValueWriter.java?82.11%?
    FirestoreMultiDbComponent.java?100.00%?
    FirestoreProto.java?0.00%?
    FirestoreRegistrar.java?100.00%?
    Function.java?0.00%?
    FunctionOrBuilder.java?0.00%?
    FunctionRegistry.kt?100.00%?
    GeoPoint.java?91.67%?
    GetDocumentRequest.java?0.00%?
    GetDocumentRequestOrBuilder.java?0.00%?
    GlobalsCache.java?0.00%?
    GrpcCallProvider.java?69.41%?
    GrpcMetadataProvider.java?0.00%?
    IgnoreExtraProperties.java?0.00%?
    IncomingStreamObserver.java?0.00%?
    Index.java?30.02%?
    IndexBackfiller.java?100.00%?
    IndexByteEncoder.java?88.57%?
    IndexEntry.java?100.00%?
    IndexManager.java?100.00%?
    IndexOrBuilder.java?0.00%?
    IndexProto.java?0.00%?
    InFilter.java?100.00%?
    IntFunction.java?0.00%?
    IntMath.java?41.67%?
    KeyFieldFilter.java?66.67%?
    KeyFieldInFilter.java?0.00%?
    KeyFieldNotInFilter.java?0.00%?
    LimboDocumentChange.java?70.59%?
    ListCollectionIdsRequest.java?0.00%?
    ListCollectionIdsRequestOrBuilder.java?0.00%?
    ListCollectionIdsResponse.java?0.00%?
    ListCollectionIdsResponseOrBuilder.java?0.00%?
    ListDocumentsRequest.java?0.00%?
    ListDocumentsRequestOrBuilder.java?0.00%?
    ListDocumentsResponse.java?0.00%?
    ListDocumentsResponseOrBuilder.java?0.00%?
    Listener.java?0.00%?
    ListenerRegistration.java?0.00%?
    ListenRequest.java?10.66%?
    ListenRequestOrBuilder.java?0.00%?
    ListenResponse.java?32.64%?
    ListenResponseOrBuilder.java?0.00%?
    ListenSequence.java?100.00%?
    ListenSource.java?100.00%?
    LoadBundleTask.java?25.26%?
    LoadBundleTaskProgress.java?60.47%?
    LocalCacheSettings.java?0.00%?
    LocalDocumentsResult.java?100.00%?
    LocalDocumentsView.java?99.02%?
    LocalSerializer.java?97.53%?
    LocalStore.java?99.12%?
    LocalViewChanges.java?100.00%?
    Logger.java?91.67%?
    LogicUtils.java?96.67%?
    LruDelegate.java?0.00%?
    LruGarbageCollector.java?93.64%?
    MapValue.java?53.00%?
    MapValueOrBuilder.java?0.00%?
    MemoryBundleCache.java?100.00%?
    MemoryCacheSettings.java?87.50%?
    MemoryComponentProvider.java?86.49%?
    MemoryDocumentOverlayCache.java?100.00%?
    MemoryEagerGcSettings.java?71.43%?
    MemoryEagerReferenceDelegate.java?100.00%?
    MemoryGarbageCollectorSettings.java?0.00%?
    MemoryGlobalsCache.java?100.00%?
    MemoryIndexManager.java?64.52%?
    MemoryLruGcSettings.java?62.50%?
    MemoryLruReferenceDelegate.java?96.00%?
    MemoryMutationQueue.java?100.00%?
    MemoryOverlayMigrationManager.java?100.00%?
    MemoryPersistence.java?100.00%?
    MemoryRemoteDocumentCache.java?98.39%?
    MemoryTargetCache.java?100.00%?
    MetadataChanges.java?100.00%?
    MutableDocument.java?98.59%?
    Mutation.java?100.00%?
    MutationBatch.java?89.23%?
    MutationBatchResult.java?100.00%?
    MutationQueue.java?0.00%?
    MutationResult.java?100.00%?
    NamedQuery.java?0.00%?
    NamedQueryOrBuilder.java?0.00%?
    NotInFilter.java?88.89%?
    NumberComparisonHelper.java?100.00%?
    NumericIncrementTransformOperation.java?87.50%?
    ObjectValue.java?99.04%?
    OnlineState.java?100.00%?
    OnlineStateTracker.java?98.11%?
    OnProgressListener.java?0.00%?
    options.kt?12.50%?
    OrderBy.java?96.55%?
    OrderedCodeWriter.java?68.52%?
    Overlay.java?100.00%?
    OverlayedDocument.java?100.00%?
    OverlayMigrationManager.java?0.00%?
    PatchMutation.java?100.00%?
    Persistence.java?100.00%?
    PersistentCacheIndexManager.java?0.00%?
    PersistentCacheSettings.java?62.50%?
    Pipeline.java?24.57%?
    Pipeline.kt?0.00%?
    PipelineOrBuilder.java?0.00%?
    PipelineProto.java?0.00%?
    PipelineUtil.kt?81.98%?
    Precondition.java?37.82%?
    PreconditionOrBuilder.java?0.00%?
    Preconditions.java?57.89%?
    Predicate.java?0.00%?
    PropertyName.java?0.00%?
    Query.java?4.10%?
    QueryContext.java?100.00%?
    QueryDocumentSnapshot.java?64.71%?
    QueryEngine.java?97.27%?
    QueryListener.java?98.73%?
    QueryProto.java?0.00%?
    QueryPurpose.java?100.00%?
    QueryResult.java?100.00%?
    QuerySnapshot.java?78.33%?
    QueryView.java?100.00%?
    RealtimePipeline.kt?48.32%?
    ReferenceDelegate.java?0.00%?
    ReferenceSet.java?92.45%?
    RemoteComponenetProvider.java?100.00%?
    RemoteDocumentCache.java?0.00%?
    RemoteEvent.java?92.31%?
    RemoteSerializer.java?82.64%?
    RemoteStore.java?87.45%?
    ResourcePath.java?94.74%?
    RollbackRequest.java?0.00%?
    RollbackRequestOrBuilder.java?0.00%?
    RunAggregationQueryRequest.java?0.00%?
    RunAggregationQueryRequestOrBuilder.java?0.00%?
    RunAggregationQueryResponse.java?0.00%?
    RunAggregationQueryResponseOrBuilder.java?0.00%?
    RunQueryRequest.java?0.00%?
    RunQueryRequestOrBuilder.java?0.00%?
    RunQueryResponse.java?0.00%?
    RunQueryResponseOrBuilder.java?0.00%?
    SafeCollector.common.kt?0.00%?
    Scheduler.java?0.00%?
    ServerTimestamp.java?0.00%?
    ServerTimestampOperation.java?100.00%?
    ServerTimestamps.java?96.00%?
    SetMutation.java?97.22%?
    SetOptions.java?22.86%?
    SnapshotListenOptions.java?0.00%?
    SnapshotMetadata.java?68.75%?
    SnapshotVersion.java?87.50%?
    Source.java?0.00%?
    SQLiteBundleCache.java?90.00%?
    SQLiteComponentProvider.java?100.00%?
    SQLiteDocumentOverlayCache.java?97.85%?
    SQLiteGlobalsCache.java?100.00%?
    SQLiteIndexManager.java?99.51%?
    SQLiteLruReferenceDelegate.java?98.75%?
    SQLiteMutationQueue.java?82.76%?
    SQLiteOverlayMigrationManager.java?90.48%?
    SQLitePersistence.java?86.41%?
    SQLiteRemoteDocumentCache.java?98.36%?
    SQLiteSchema.java?96.70%?
    SQLiteTargetCache.java?98.47%?
    stage.kt?28.75%?
    Stream.java?100.00%?
    StructuredAggregationQuery.java?0.00%?
    StructuredAggregationQueryOrBuilder.java?0.00%?
    StructuredPipeline.java?22.14%?
    StructuredPipelineOrBuilder.java?0.00%?
    StructuredQuery.java?32.48%?
    StructuredQueryOrBuilder.java?0.00%?
    Supplier.java?0.00%?
    SyncEngine.java?89.22%?
    Target.java?96.26%?
    TargetCache.java?0.00%?
    TargetChange.java?80.00%?
    TargetChangeOrBuilder.java?0.00%?
    TargetData.java?78.26%?
    TargetIdGenerator.java?100.00%?
    TargetIndexMatcher.java?96.81%?
    TargetOrBuilder.java?0.00%?
    TargetState.java?97.78%?
    TestingHooks.java?66.67%?
    ThrottledForwardingExecutor.java?100.00%?
    ThrowOnExtraProperties.java?0.00%?
    Token.java?0.00%?
    Transaction.java?0.00%?
    TransactionOptions.java?0.00%?
    TransactionOptionsOrBuilder.java?0.00%?
    TransactionRunner.java?0.00%?
    TransformOperation.java?0.00%?
    UpdateDocumentRequest.java?0.00%?
    UpdateDocumentRequestOrBuilder.java?0.00%?
    User.java?78.57%?
    UserData.java?68.00%?
    UserDataReader.java?65.14%?
    UserDataWriter.java?44.64%?
    Util.java?75.18%?
    Value.java?39.00%?
    ValueOrBuilder.java?0.00%?
    Values.kt?94.40%?
    VectorValue.java?36.36%?
    VerifyMutation.java?46.15%?
    View.java?96.17%?
    ViewChange.java?100.00%?
    ViewSnapshot.java?89.23%?
    WatchChange.java?70.51%?
    WatchChangeAggregator.java?98.64%?
    WatchStream.java?17.86%?
    Write.java?36.06%?
    WriteBatch.java?0.00%?
    WriteOrBuilder.java?0.00%?
    WriteProto.java?0.00%?
    WriteRequest.java?26.24%?
    WriteRequestOrBuilder.java?0.00%?
    WriteResponse.java?25.86%?
    WriteResponseOrBuilder.java?0.00%?
    WriteResult.java?7.25%?
    WriteResultOrBuilder.java?0.00%?
    WriteStream.java?100.00%?

Test Logs

  1. https://storage.googleapis.com/firebase-sdk-metric-reports/aCCjrJNcih.html

Copy link
Contributor

github-actions bot commented Sep 9, 2025

Test Results

  240 files  ±0    240 suites  ±0   4m 35s ⏱️ -16s
2 353 tests ±0  2 322 ✅ ±0  31 💤 ±0  0 ❌ ±0 
4 706 runs  ±0  4 644 ✅ ±0  62 💤 ±0  0 ❌ ±0 

Results for commit f7956c7. ± Comparison against base commit 2851bf4.

♻️ This comment has been updated with latest results.

@google-oss-bot
Copy link
Contributor

google-oss-bot commented Sep 9, 2025

Size Report 1

Affected Products

  • base

    TypeBase (2851bf4)Merge (5ef007f)Diff
    apk (aggressive)?8.80 kB? (?)
    apk (release)?9.77 kB? (?)
  • firebase-firestore

    TypeBase (2851bf4)Merge (5ef007f)Diff
    aar?2.21 MB? (?)
    apk (aggressive)?559 kB? (?)
    apk (release)?12.2 MB? (?)
  • protolite-well-known-types

    TypeBase (2851bf4)Merge (5ef007f)Diff
    aar?1.02 MB? (?)
    apk (aggressive)?134 kB? (?)
    apk (release)?1.71 MB? (?)

Test Logs

  1. https://storage.googleapis.com/firebase-sdk-metric-reports/iY3NHQCCDW.html

@wu-hui wu-hui force-pushed the wuandy/PortMoreExpr branch from c713424 to 2851bf4 Compare September 18, 2025 19:10
@wu-hui wu-hui force-pushed the wuandy/AddCodeSamples branch 2 times, most recently from 7918ce5 to 8eb1f21 Compare September 18, 2025 19:12
@google-oss-bot
Copy link
Contributor

The public api surface has changed for the subproject firebase-firestore:
error: Method com.google.firebase.firestore.Pipeline.execute has changed return type from com.google.android.gms.tasks.Task<com.google.firebase.firestore.PipelineSnapshot> to com.google.android.gms.tasks.Task<com.google.firebase.firestore.Pipeline.Snapshot> [ChangedType]
error: Added method com.google.firebase.firestore.Pipeline.execute(com.google.firebase.firestore.Pipeline.ExecuteOptions) [AddedMethod]
error: Removed method com.google.firebase.firestore.Pipeline.execute(com.google.firebase.firestore.pipeline.PipelineOptions) [RemovedMethod]
error: Removed method com.google.firebase.firestore.Pipeline.findNearest(String,com.google.firebase.firestore.pipeline.Expr,com.google.firebase.firestore.pipeline.FindNearestStage.DistanceMeasure) [RemovedMethod]
error: Added method com.google.firebase.firestore.Pipeline.findNearest(String,com.google.firebase.firestore.pipeline.Expression,com.google.firebase.firestore.pipeline.FindNearestStage.DistanceMeasure) [AddedMethod]
error: Removed method com.google.firebase.firestore.Pipeline.findNearest(String,com.google.firebase.firestore.pipeline.Expr,com.google.firebase.firestore.pipeline.FindNearestStage.DistanceMeasure,com.google.firebase.firestore.pipeline.FindNearestOptions) [RemovedMethod]
error: Added method com.google.firebase.firestore.Pipeline.findNearest(String,com.google.firebase.firestore.pipeline.Expression,com.google.firebase.firestore.pipeline.FindNearestStage.DistanceMeasure,com.google.firebase.firestore.pipeline.FindNearestOptions) [AddedMethod]
error: Removed method com.google.firebase.firestore.Pipeline.replaceWith(com.google.firebase.firestore.pipeline.Expr) [RemovedMethod]
error: Added method com.google.firebase.firestore.Pipeline.replaceWith(com.google.firebase.firestore.pipeline.Expression) [AddedMethod]
error: Removed method com.google.firebase.firestore.Pipeline.where(com.google.firebase.firestore.pipeline.BooleanExpr) [RemovedMethod]
error: Added method com.google.firebase.firestore.Pipeline.where(com.google.firebase.firestore.pipeline.BooleanExpression) [AddedMethod]
error: Added class com.google.firebase.firestore.Pipeline.ExecuteOptions [AddedClass]
error: Added class com.google.firebase.firestore.Pipeline.Snapshot [AddedClass]
error: Removed class com.google.firebase.firestore.PipelineSnapshot [RemovedClass]
error: Removed method com.google.firebase.firestore.RealtimePipeline.where(com.google.firebase.firestore.pipeline.BooleanExpr) [RemovedMethod]
error: Added method com.google.firebase.firestore.RealtimePipeline.where(com.google.firebase.firestore.pipeline.BooleanExpression) [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.AggregateFunction.average(String) [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.AggregateFunction.average(com.google.firebase.firestore.pipeline.Expression) [AddedMethod]
error: Removed method com.google.firebase.firestore.pipeline.AggregateFunction.avg(String) [RemovedMethod]
error: Removed method com.google.firebase.firestore.pipeline.AggregateFunction.avg(com.google.firebase.firestore.pipeline.Expr) [RemovedMethod]
error: Removed method com.google.firebase.firestore.pipeline.AggregateFunction.count(com.google.firebase.firestore.pipeline.Expr) [RemovedMethod]
error: Added method com.google.firebase.firestore.pipeline.AggregateFunction.count(com.google.firebase.firestore.pipeline.Expression) [AddedMethod]
error: Removed method com.google.firebase.firestore.pipeline.AggregateFunction.countDistinct(com.google.firebase.firestore.pipeline.Expr) [RemovedMethod]
error: Added method com.google.firebase.firestore.pipeline.AggregateFunction.countDistinct(com.google.firebase.firestore.pipeline.Expression) [AddedMethod]
error: Removed method com.google.firebase.firestore.pipeline.AggregateFunction.countIf(com.google.firebase.firestore.pipeline.BooleanExpr) [RemovedMethod]
error: Added method com.google.firebase.firestore.pipeline.AggregateFunction.countIf(com.google.firebase.firestore.pipeline.BooleanExpression) [AddedMethod]
error: Removed method com.google.firebase.firestore.pipeline.AggregateFunction.generic(String,com.google.firebase.firestore.pipeline.Expr...) [RemovedMethod]
error: Added method com.google.firebase.firestore.pipeline.AggregateFunction.generic(String,com.google.firebase.firestore.pipeline.Expression...) [AddedMethod]
error: Removed method com.google.firebase.firestore.pipeline.AggregateFunction.maximum(com.google.firebase.firestore.pipeline.Expr) [RemovedMethod]
error: Added method com.google.firebase.firestore.pipeline.AggregateFunction.maximum(com.google.firebase.firestore.pipeline.Expression) [AddedMethod]
error: Removed method com.google.firebase.firestore.pipeline.AggregateFunction.minimum(com.google.firebase.firestore.pipeline.Expr) [RemovedMethod]
error: Added method com.google.firebase.firestore.pipeline.AggregateFunction.minimum(com.google.firebase.firestore.pipeline.Expression) [AddedMethod]
error: Removed method com.google.firebase.firestore.pipeline.AggregateFunction.sum(com.google.firebase.firestore.pipeline.Expr) [RemovedMethod]
error: Added method com.google.firebase.firestore.pipeline.AggregateFunction.sum(com.google.firebase.firestore.pipeline.Expression) [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.AggregateFunction.Companion.average(String) [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.AggregateFunction.Companion.average(com.google.firebase.firestore.pipeline.Expression) [AddedMethod]
error: Removed method com.google.firebase.firestore.pipeline.AggregateFunction.Companion.avg(String) [RemovedMethod]
error: Removed method com.google.firebase.firestore.pipeline.AggregateFunction.Companion.avg(com.google.firebase.firestore.pipeline.Expr) [RemovedMethod]
error: Removed method com.google.firebase.firestore.pipeline.AggregateFunction.Companion.count(com.google.firebase.firestore.pipeline.Expr) [RemovedMethod]
error: Added method com.google.firebase.firestore.pipeline.AggregateFunction.Companion.count(com.google.firebase.firestore.pipeline.Expression) [AddedMethod]
error: Removed method com.google.firebase.firestore.pipeline.AggregateFunction.Companion.countDistinct(com.google.firebase.firestore.pipeline.Expr) [RemovedMethod]
error: Added method com.google.firebase.firestore.pipeline.AggregateFunction.Companion.countDistinct(com.google.firebase.firestore.pipeline.Expression) [AddedMethod]
error: Removed method com.google.firebase.firestore.pipeline.AggregateFunction.Companion.countIf(com.google.firebase.firestore.pipeline.BooleanExpr) [RemovedMethod]
error: Added method com.google.firebase.firestore.pipeline.AggregateFunction.Companion.countIf(com.google.firebase.firestore.pipeline.BooleanExpression) [AddedMethod]
error: Removed method com.google.firebase.firestore.pipeline.AggregateFunction.Companion.generic(String,com.google.firebase.firestore.pipeline.Expr...) [RemovedMethod]
error: Added method com.google.firebase.firestore.pipeline.AggregateFunction.Companion.generic(String,com.google.firebase.firestore.pipeline.Expression...) [AddedMethod]
error: Removed method com.google.firebase.firestore.pipeline.AggregateFunction.Companion.maximum(com.google.firebase.firestore.pipeline.Expr) [RemovedMethod]
error: Added method com.google.firebase.firestore.pipeline.AggregateFunction.Companion.maximum(com.google.firebase.firestore.pipeline.Expression) [AddedMethod]
error: Removed method com.google.firebase.firestore.pipeline.AggregateFunction.Companion.minimum(com.google.firebase.firestore.pipeline.Expr) [RemovedMethod]
error: Added method com.google.firebase.firestore.pipeline.AggregateFunction.Companion.minimum(com.google.firebase.firestore.pipeline.Expression) [AddedMethod]
error: Removed method com.google.firebase.firestore.pipeline.AggregateFunction.Companion.sum(com.google.firebase.firestore.pipeline.Expr) [RemovedMethod]
error: Added method com.google.firebase.firestore.pipeline.AggregateFunction.Companion.sum(com.google.firebase.firestore.pipeline.Expression) [AddedMethod]
error: Removed class com.google.firebase.firestore.pipeline.AliasedExpr [RemovedClass]
error: Added class com.google.firebase.firestore.pipeline.AliasedExpression [AddedClass]
error: Removed class com.google.firebase.firestore.pipeline.BooleanExpr [RemovedClass]
error: Added class com.google.firebase.firestore.pipeline.BooleanExpression [AddedClass]
error: Removed class com.google.firebase.firestore.pipeline.Expr [RemovedClass]
error: Added class com.google.firebase.firestore.pipeline.Expression [AddedClass]
error: Removed field com.google.firebase.firestore.pipeline.Field.DOCUMENT_ID [RemovedField]
error: Removed class com.google.firebase.firestore.pipeline.FunctionExpr [RemovedClass]
error: Added class com.google.firebase.firestore.pipeline.FunctionExpression [AddedClass]
error: Removed method com.google.firebase.firestore.pipeline.Ordering.ascending(com.google.firebase.firestore.pipeline.Expr) [RemovedMethod]
error: Added method com.google.firebase.firestore.pipeline.Ordering.ascending(com.google.firebase.firestore.pipeline.Expression) [AddedMethod]
error: Removed method com.google.firebase.firestore.pipeline.Ordering.descending(com.google.firebase.firestore.pipeline.Expr) [RemovedMethod]
error: Added method com.google.firebase.firestore.pipeline.Ordering.descending(com.google.firebase.firestore.pipeline.Expression) [AddedMethod]
error: Method com.google.firebase.firestore.pipeline.Ordering.getExpr has changed return type from com.google.firebase.firestore.pipeline.Expr to com.google.firebase.firestore.pipeline.Expression [ChangedType]
error: Removed method com.google.firebase.firestore.pipeline.Ordering.Companion.ascending(com.google.firebase.firestore.pipeline.Expr) [RemovedMethod]
error: Added method com.google.firebase.firestore.pipeline.Ordering.Companion.ascending(com.google.firebase.firestore.pipeline.Expression) [AddedMethod]
error: Removed method com.google.firebase.firestore.pipeline.Ordering.Companion.descending(com.google.firebase.firestore.pipeline.Expr) [RemovedMethod]
error: Added method com.google.firebase.firestore.pipeline.Ordering.Companion.descending(com.google.firebase.firestore.pipeline.Expression) [AddedMethod]
error: Class com.google.firebase.firestore.pipeline.Selectable superclass changed from com.google.firebase.firestore.pipeline.Expr to com.google.firebase.firestore.pipeline.Expression [ChangedSuperclass]

Please update the api.txt files for the subprojects being affected by this change by running ./gradlew ${subproject}:generateApiTxtFile. Also perform a major/minor bump accordingly.

@wu-hui wu-hui force-pushed the wuandy/AddCodeSamples branch from 8eb1f21 to f7956c7 Compare September 26, 2025 15:03
@google-oss-bot
Copy link
Contributor

The public api surface has changed for the subproject firebase-firestore:
error: Removed method com.google.firebase.firestore.RealtimePipeline.canonicalId() [RemovedMethod]
error: Removed method com.google.firebase.firestore.pipeline.AliasedExpression.canonicalId() [RemovedMethod]
error: Removed method com.google.firebase.firestore.pipeline.BooleanExpression.generic(String,com.google.firebase.firestore.pipeline.Expression...) [RemovedMethod]
error: Removed method com.google.firebase.firestore.pipeline.BooleanExpression.ifError(com.google.firebase.firestore.pipeline.BooleanExpression) [RemovedMethod]
error: Added method com.google.firebase.firestore.pipeline.BooleanExpression.rawFunction(String,com.google.firebase.firestore.pipeline.Expression...) [AddedMethod]
error: Removed method com.google.firebase.firestore.pipeline.BooleanExpression.Companion.generic(String,com.google.firebase.firestore.pipeline.Expression...) [RemovedMethod]
error: Added method com.google.firebase.firestore.pipeline.BooleanExpression.Companion.rawFunction(String,com.google.firebase.firestore.pipeline.Expression...) [AddedMethod]
error: Removed method com.google.firebase.firestore.pipeline.CollectionGroupSource.canonicalId() [RemovedMethod]
error: Removed method com.google.firebase.firestore.pipeline.CollectionSource.canonicalId() [RemovedMethod]
error: Added method com.google.firebase.firestore.pipeline.Expression.abs() [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.Expression.arraySum() [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.Expression.arraySum(String) [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.Expression.arraySum(com.google.firebase.firestore.pipeline.Expression) [AddedMethod]
error: Removed method com.google.firebase.firestore.pipeline.Expression.blob(byte[]) [RemovedMethod]
error: Added method com.google.firebase.firestore.pipeline.Expression.collectionId() [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.Expression.collectionId(String) [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.Expression.collectionId(com.google.firebase.firestore.pipeline.Expression) [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.Expression.concat(Object,java.lang.Object...) [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.Expression.concat(com.google.firebase.firestore.pipeline.Expression,java.lang.Object...) [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.Expression.concat(String,Object,java.lang.Object...) [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.Expression.concat(String,com.google.firebase.firestore.pipeline.Expression,java.lang.Object...) [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.Expression.concat(com.google.firebase.firestore.pipeline.Expression,Object,java.lang.Object...) [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.Expression.concat(com.google.firebase.firestore.pipeline.Expression,com.google.firebase.firestore.pipeline.Expression,java.lang.Object...) [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.Expression.countDistinct() [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.Expression.currentTimestamp() [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.Expression.error(String) [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.Expression.exp() [AddedMethod]
error: Removed method com.google.firebase.firestore.pipeline.Expression.generic(String,com.google.firebase.firestore.pipeline.Expression...) [RemovedMethod]
error: Added method com.google.firebase.firestore.pipeline.Expression.ifAbsent(Object) [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.Expression.ifAbsent(com.google.firebase.firestore.pipeline.Expression) [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.Expression.ifAbsent(String,Object) [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.Expression.ifAbsent(String,com.google.firebase.firestore.pipeline.Expression) [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.Expression.ifAbsent(com.google.firebase.firestore.pipeline.Expression,Object) [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.Expression.ifAbsent(com.google.firebase.firestore.pipeline.Expression,com.google.firebase.firestore.pipeline.Expression) [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.Expression.join(String) [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.Expression.join(com.google.firebase.firestore.pipeline.Expression) [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.Expression.join(String,String) [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.Expression.join(String,com.google.firebase.firestore.pipeline.Expression) [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.Expression.join(com.google.firebase.firestore.pipeline.Expression,String) [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.Expression.join(com.google.firebase.firestore.pipeline.Expression,com.google.firebase.firestore.pipeline.Expression) [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.Expression.length() [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.Expression.length(String) [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.Expression.length(com.google.firebase.firestore.pipeline.Expression) [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.Expression.ln() [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.Expression.log10() [AddedMethod]
error: Removed method com.google.firebase.firestore.pipeline.Expression.rand() [RemovedMethod]
error: Added method com.google.firebase.firestore.pipeline.Expression.rawFunction(String,com.google.firebase.firestore.pipeline.Expression...) [AddedMethod]
error: Removed method com.google.firebase.firestore.pipeline.Expression.replaceAll(String,String) [RemovedMethod]
error: Removed method com.google.firebase.firestore.pipeline.Expression.replaceAll(com.google.firebase.firestore.pipeline.Expression,com.google.firebase.firestore.pipeline.Expression) [RemovedMethod]
error: Removed method com.google.firebase.firestore.pipeline.Expression.replaceAll(String,String,String) [RemovedMethod]
error: Removed method com.google.firebase.firestore.pipeline.Expression.replaceAll(String,com.google.firebase.firestore.pipeline.Expression,com.google.firebase.firestore.pipeline.Expression) [RemovedMethod]
error: Removed method com.google.firebase.firestore.pipeline.Expression.replaceAll(com.google.firebase.firestore.pipeline.Expression,String,String) [RemovedMethod]
error: Removed method com.google.firebase.firestore.pipeline.Expression.replaceAll(com.google.firebase.firestore.pipeline.Expression,com.google.firebase.firestore.pipeline.Expression,com.google.firebase.firestore.pipeline.Expression) [RemovedMethod]
error: Removed method com.google.firebase.firestore.pipeline.Expression.replaceFirst(String,String) [RemovedMethod]
error: Removed method com.google.firebase.firestore.pipeline.Expression.replaceFirst(com.google.firebase.firestore.pipeline.Expression,com.google.firebase.firestore.pipeline.Expression) [RemovedMethod]
error: Removed method com.google.firebase.firestore.pipeline.Expression.replaceFirst(String,String,String) [RemovedMethod]
error: Removed method com.google.firebase.firestore.pipeline.Expression.replaceFirst(String,com.google.firebase.firestore.pipeline.Expression,com.google.firebase.firestore.pipeline.Expression) [RemovedMethod]
error: Removed method com.google.firebase.firestore.pipeline.Expression.replaceFirst(com.google.firebase.firestore.pipeline.Expression,String,String) [RemovedMethod]
error: Removed method com.google.firebase.firestore.pipeline.Expression.replaceFirst(com.google.firebase.firestore.pipeline.Expression,com.google.firebase.firestore.pipeline.Expression,com.google.firebase.firestore.pipeline.Expression) [RemovedMethod]
error: Added method com.google.firebase.firestore.pipeline.Expression.stringReverse() [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.Expression.stringReverse(String) [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.Expression.stringReverse(com.google.firebase.firestore.pipeline.Expression) [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.Expression.Companion.arraySum(String) [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.Expression.Companion.arraySum(com.google.firebase.firestore.pipeline.Expression) [AddedMethod]
error: Removed method com.google.firebase.firestore.pipeline.Expression.Companion.blob(byte[]) [RemovedMethod]
error: Added method com.google.firebase.firestore.pipeline.Expression.Companion.collectionId(String) [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.Expression.Companion.collectionId(com.google.firebase.firestore.pipeline.Expression) [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.Expression.Companion.concat(String,Object,java.lang.Object...) [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.Expression.Companion.concat(String,com.google.firebase.firestore.pipeline.Expression,java.lang.Object...) [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.Expression.Companion.concat(com.google.firebase.firestore.pipeline.Expression,Object,java.lang.Object...) [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.Expression.Companion.concat(com.google.firebase.firestore.pipeline.Expression,com.google.firebase.firestore.pipeline.Expression,java.lang.Object...) [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.Expression.Companion.currentTimestamp() [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.Expression.Companion.error(String) [AddedMethod]
error: Removed method com.google.firebase.firestore.pipeline.Expression.Companion.generic(String,com.google.firebase.firestore.pipeline.Expression...) [RemovedMethod]
error: Added method com.google.firebase.firestore.pipeline.Expression.Companion.ifAbsent(String,Object) [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.Expression.Companion.ifAbsent(String,com.google.firebase.firestore.pipeline.Expression) [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.Expression.Companion.ifAbsent(com.google.firebase.firestore.pipeline.Expression,Object) [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.Expression.Companion.ifAbsent(com.google.firebase.firestore.pipeline.Expression,com.google.firebase.firestore.pipeline.Expression) [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.Expression.Companion.join(String,String) [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.Expression.Companion.join(String,com.google.firebase.firestore.pipeline.Expression) [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.Expression.Companion.join(com.google.firebase.firestore.pipeline.Expression,String) [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.Expression.Companion.join(com.google.firebase.firestore.pipeline.Expression,com.google.firebase.firestore.pipeline.Expression) [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.Expression.Companion.length(String) [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.Expression.Companion.length(com.google.firebase.firestore.pipeline.Expression) [AddedMethod]
error: Removed method com.google.firebase.firestore.pipeline.Expression.Companion.rand() [RemovedMethod]
error: Added method com.google.firebase.firestore.pipeline.Expression.Companion.rawFunction(String,com.google.firebase.firestore.pipeline.Expression...) [AddedMethod]
error: Removed method com.google.firebase.firestore.pipeline.Expression.Companion.replaceAll(String,String,String) [RemovedMethod]
error: Removed method com.google.firebase.firestore.pipeline.Expression.Companion.replaceAll(String,com.google.firebase.firestore.pipeline.Expression,com.google.firebase.firestore.pipeline.Expression) [RemovedMethod]
error: Removed method com.google.firebase.firestore.pipeline.Expression.Companion.replaceAll(com.google.firebase.firestore.pipeline.Expression,String,String) [RemovedMethod]
error: Removed method com.google.firebase.firestore.pipeline.Expression.Companion.replaceAll(com.google.firebase.firestore.pipeline.Expression,com.google.firebase.firestore.pipeline.Expression,com.google.firebase.firestore.pipeline.Expression) [RemovedMethod]
error: Removed method com.google.firebase.firestore.pipeline.Expression.Companion.replaceFirst(String,String,String) [RemovedMethod]
error: Removed method com.google.firebase.firestore.pipeline.Expression.Companion.replaceFirst(String,com.google.firebase.firestore.pipeline.Expression,com.google.firebase.firestore.pipeline.Expression) [RemovedMethod]
error: Removed method com.google.firebase.firestore.pipeline.Expression.Companion.replaceFirst(com.google.firebase.firestore.pipeline.Expression,String,String) [RemovedMethod]
error: Removed method com.google.firebase.firestore.pipeline.Expression.Companion.replaceFirst(com.google.firebase.firestore.pipeline.Expression,com.google.firebase.firestore.pipeline.Expression,com.google.firebase.firestore.pipeline.Expression) [RemovedMethod]
error: Added method com.google.firebase.firestore.pipeline.Expression.Companion.stringReverse(String) [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.Expression.Companion.stringReverse(com.google.firebase.firestore.pipeline.Expression) [AddedMethod]
error: Removed method com.google.firebase.firestore.pipeline.Field.canonicalId() [RemovedMethod]
error: Removed method com.google.firebase.firestore.pipeline.FunctionExpression.canonicalId() [RemovedMethod]
error: Removed method com.google.firebase.firestore.pipeline.Ordering.canonicalId() [RemovedMethod]
error: Added method com.google.firebase.firestore.pipeline.Ordering.getDir() [AddedMethod]
error: Removed method com.google.firebase.firestore.pipeline.Ordering.reverse() [RemovedMethod]
error: Added class com.google.firebase.firestore.pipeline.Ordering.Direction [AddedClass]

Please update the api.txt files for the subprojects being affected by this change by running ./gradlew ${subproject}:generateApiTxtFile. Also perform a major/minor bump accordingly.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants