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 focuses on porting existing spec tests to support a new 'realtime pipeline' mode. It involves adapting the test infrastructure to allow tests to run against both traditional query implementations and the new pipeline, ensuring compatibility and correctness for future features. The changes primarily affect test-related code and data structures, laying the groundwork for comprehensive testing of the pipeline.

Highlights

  • New Pipeline Test Modes: Introduced MemoryPipelineSpecTest.java and SQLitePipelineSpecTest.java to enable testing against a new 'realtime pipeline' mode. These new test classes extend existing spec tests and activate the pipeline mode.
  • QueryEvent and SpecTestCase Adaptations: Modified QueryEvent.java to support QueryOrPipeline objects, allowing it to handle both traditional queries and the new pipeline representations. SpecTestCase.java was updated to conditionally use the pipeline mode for query listeners, unlisteners, and event assertions, based on a usePipelineMode flag.
  • Updated Spec Test Data: Numerous JSON spec test files (e.g., collection_spec_test.json, garbage_collection_spec_test.json, orderby_spec_test.json) were updated to include pipelines objects within their expected state and event structures, reflecting the data representation for the new pipeline mode.
  • Test Skipping Logic: Added logic to SpecTestCase.java to skip tests tagged with no-pipeline-conversion when running in pipeline mode, and temporarily skip tests with 'Newer ' in their name.
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 ports the spec tests to support a new "pipeline mode" for realtime queries. The changes introduce a usePipelineMode flag in SpecTestCase and conditionally create and validate QueryOrPipeline objects. The test data files are also updated with expected pipeline definitions. The changes are logical and well-contained. I have a few suggestions to improve code maintainability by reducing duplication and making test configuration more robust.

Comment on lines +590 to +597
QueryOrPipeline queryOrPipeline;
if (usePipelineMode) {
queryOrPipeline =
new QueryOrPipeline.PipelineWrapper(
query.toRealtimePipeline(db, new UserDataReader(databaseInfo.getDatabaseId())));
} else {
queryOrPipeline = new QueryOrPipeline.QueryWrapper(query);
}
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 logic for creating a QueryOrPipeline from a Query is duplicated in doListen() and doUnlisten(). A similar pattern for creating RealtimePipeline instances exists in assertEventMatches(), validateExpectedSnapshotEvents(), and validateActiveTargets(). To improve maintainability and reduce code duplication, consider extracting this logic into a helper method.

For example:

private RealtimePipeline toRealtimePipeline(Query query) {
    return query.toRealtimePipeline(db, new UserDataReader(databaseInfo.getDatabaseId()));
}

private QueryOrPipeline createQueryOrPipeline(Query query) {
    if (usePipelineMode) {
        return new QueryOrPipeline.PipelineWrapper(toRealtimePipeline(query));
    } else {
        return new QueryOrPipeline.QueryWrapper(query);
    }
}

target.getFilters(),
target.getOrderBy(),
target.getLimit(),
Query.LimitType.LIMIT_TO_FIRST,
Copy link
Contributor

Choose a reason for hiding this comment

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

medium

When reconstructing a Query from a Target to validate active targets in pipeline mode, Query.LimitType.LIMIT_TO_FIRST is hardcoded. This could lead to incorrect behavior if any spec tests use limitToLast. While it seems no current tests are affected, this makes the test logic brittle. It might be worth investigating if the limitType can be preserved in the Target object or if this limitation should be documented.

Comment on lines +1455 to +1457
if (name.contains("Newer ")) {
info("Skipping test: " + name);
}
Copy link
Contributor

Choose a reason for hiding this comment

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

medium

This check to skip tests containing "Newer " in their name seems like a temporary debugging tool. For better maintainability, it would be preferable to use a test tag, similar to NO_PIPELINE_CONVERSION_TAG, to control test execution.

@@ -0,0 +1,3 @@
These json files are generated from the web test sources.

TODO(mikelehen): Re-add instructions for generating these.
Copy link
Contributor

Choose a reason for hiding this comment

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

medium

It's good that you've added a TODO here. To ensure this doesn't get lost, you might want to create a ticket in your issue tracking system to track this task.

@google-oss-bot
Copy link
Contributor

google-oss-bot commented Sep 9, 2025

Coverage Report 1

Affected Products

No changes between base commit (34bbc4a) and merge commit (002490f).

Test Logs

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

Copy link
Contributor

github-actions bot commented Sep 9, 2025

Test Results

0 tests  ±0   0 ✅ ±0   0s ⏱️ ±0s
0 suites ±0   0 💤 ±0 
0 files   ±0   0 ❌ ±0 

Results for commit 748f6cf. ± Comparison against base commit 34bbc4a.

♻️ This comment has been updated with latest results.

@google-oss-bot
Copy link
Contributor

The public api surface has changed for the subproject firebase-firestore:
error: Removed class com.google.firebase.firestore.AbstractPipeline [RemovedClass]
error: Added method com.google.firebase.firestore.FirebaseFirestore.realtimePipeline() [AddedMethod]
error: Class com.google.firebase.firestore.Pipeline superclass changed from com.google.firebase.firestore.AbstractPipeline to java.lang.Object [ChangedSuperclass]
error: Removed method com.google.firebase.firestore.Pipeline.execute(com.google.firebase.firestore.pipeline.RealtimePipelineOptions) [RemovedMethod]
error: Removed method com.google.firebase.firestore.PipelineSource.pipeline(com.google.firebase.firestore.pipeline.CollectionGroupSource) [RemovedMethod]
error: Class com.google.firebase.firestore.RealtimePipeline superclass changed from com.google.firebase.firestore.AbstractPipeline to java.lang.Object [ChangedSuperclass]
error: Added method com.google.firebase.firestore.RealtimePipeline.canonicalId() [AddedMethod]
error: Removed method com.google.firebase.firestore.RealtimePipeline.execute() [RemovedMethod]
error: Removed method com.google.firebase.firestore.RealtimePipeline.execute(com.google.firebase.firestore.pipeline.PipelineOptions) [RemovedMethod]
error: Added method com.google.firebase.firestore.RealtimePipelineSource.collectionGroup(com.google.firebase.firestore.pipeline.CollectionGroupSource) [AddedMethod]
error: Added method com.google.firebase.firestore.RealtimePipelineSource.convertFrom(com.google.firebase.firestore.Query) [AddedMethod]
error: Removed method com.google.firebase.firestore.RealtimePipelineSource.pipeline(com.google.firebase.firestore.pipeline.CollectionGroupSource) [RemovedMethod]
error: Removed method com.google.firebase.firestore.pipeline.AbstractOptions.with(String,com.google.firebase.firestore.pipeline.GenericOptions) [RemovedMethod]
error: Added method com.google.firebase.firestore.pipeline.AbstractOptions.with(String,com.google.firebase.firestore.pipeline.RawOptions) [AddedMethod]
error: Added constructor com.google.firebase.firestore.pipeline.CollectionGroupSource(String,com.google.firebase.firestore.pipeline.InternalOptions) [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.CollectionGroupSource.canonicalId() [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.CollectionGroupSource.getCollectionId() [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.CollectionSource.canonicalId() [AddedMethod]
error: Removed method com.google.firebase.firestore.pipeline.CollectionSource.of(String) [RemovedMethod]
error: Removed method com.google.firebase.firestore.pipeline.CollectionSource.of(com.google.firebase.firestore.CollectionReference) [RemovedMethod]
error: Removed method com.google.firebase.firestore.pipeline.CollectionSource.Companion.of(String) [RemovedMethod]
error: Removed method com.google.firebase.firestore.pipeline.CollectionSource.Companion.of(com.google.firebase.firestore.CollectionReference) [RemovedMethod]
error: Removed class com.google.firebase.firestore.pipeline.ExplainOptions [RemovedClass]
error: Added method com.google.firebase.firestore.pipeline.Expr.mapGet(com.google.firebase.firestore.pipeline.Expr) [AddedMethod]
error: Attempted to change parameter name from key to keyExpression in method com.google.firebase.firestore.pipeline.Expr.mapRemove [ParameterNameChange]
error: Added method com.google.firebase.firestore.pipeline.ExprWithAlias.canonicalId() [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.ExprWithAlias.getAlias() [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.ExprWithAlias.getExpr() [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.Field.canonicalId() [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.FunctionExpr.canonicalId() [AddedMethod]
error: Removed class com.google.firebase.firestore.pipeline.GenericOptions [RemovedClass]
error: Added method com.google.firebase.firestore.pipeline.Ordering.canonicalId() [AddedMethod]
error: Removed method com.google.firebase.firestore.pipeline.PipelineOptions.withExplainOptions(com.google.firebase.firestore.pipeline.ExplainOptions) [RemovedMethod]
error: Added class com.google.firebase.firestore.pipeline.RawOptions [AddedClass]
error: Removed method com.google.firebase.firestore.pipeline.Stage.getName() [RemovedMethod]
error: Removed method com.google.firebase.firestore.pipeline.Stage.with(String,String) [RemovedMethod]
error: Removed method com.google.firebase.firestore.pipeline.Stage.with(String,boolean) [RemovedMethod]
error: Removed method com.google.firebase.firestore.pipeline.Stage.with(String,com.google.firebase.firestore.pipeline.Field) [RemovedMethod]
error: Removed method com.google.firebase.firestore.pipeline.Stage.with(String,double) [RemovedMethod]
error: Removed method com.google.firebase.firestore.pipeline.Stage.with(String,error.NonExistentClass) [RemovedMethod]
error: Removed method com.google.firebase.firestore.pipeline.Stage.with(String,long) [RemovedMethod]
error: Added method com.google.firebase.firestore.pipeline.Stage.withOption(String,String) [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.Stage.withOption(String,boolean) [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.Stage.withOption(String,com.google.firebase.firestore.pipeline.Field) [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.Stage.withOption(String,double) [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.Stage.withOption(String,error.NonExistentClass) [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.Stage.withOption(String,long) [AddedMethod]

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.

@google-oss-bot
Copy link
Contributor

Size Report 1

Affected Products

  • base

    TypeBase (bfc920f)Merge (dd5f0e0)Diff
    apk (aggressive)?8.80 kB? (?)
    apk (release)?9.77 kB? (?)
  • firebase-firestore

    TypeBase (bfc920f)Merge (dd5f0e0)Diff
    aar?2.15 MB? (?)
    apk (aggressive)?559 kB? (?)
    apk (release)?12.1 MB? (?)
  • protolite-well-known-types

    TypeBase (bfc920f)Merge (dd5f0e0)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/3qLjPJnUjw.html

@google-oss-bot
Copy link
Contributor

The public api surface has changed for the subproject firebase-firestore:
error: Removed class com.google.firebase.firestore.AbstractPipeline [RemovedClass]
error: Added method com.google.firebase.firestore.FirebaseFirestore.realtimePipeline() [AddedMethod]
error: Class com.google.firebase.firestore.Pipeline superclass changed from com.google.firebase.firestore.AbstractPipeline to java.lang.Object [ChangedSuperclass]
error: Removed method com.google.firebase.firestore.Pipeline.execute(com.google.firebase.firestore.pipeline.RealtimePipelineOptions) [RemovedMethod]
error: Removed method com.google.firebase.firestore.PipelineSource.pipeline(com.google.firebase.firestore.pipeline.CollectionGroupSource) [RemovedMethod]
error: Class com.google.firebase.firestore.RealtimePipeline superclass changed from com.google.firebase.firestore.AbstractPipeline to java.lang.Object [ChangedSuperclass]
error: Added method com.google.firebase.firestore.RealtimePipeline.canonicalId() [AddedMethod]
error: Removed method com.google.firebase.firestore.RealtimePipeline.execute() [RemovedMethod]
error: Removed method com.google.firebase.firestore.RealtimePipeline.execute(com.google.firebase.firestore.pipeline.PipelineOptions) [RemovedMethod]
error: Added method com.google.firebase.firestore.RealtimePipelineSource.collectionGroup(com.google.firebase.firestore.pipeline.CollectionGroupSource) [AddedMethod]
error: Added method com.google.firebase.firestore.RealtimePipelineSource.convertFrom(com.google.firebase.firestore.Query) [AddedMethod]
error: Removed method com.google.firebase.firestore.RealtimePipelineSource.pipeline(com.google.firebase.firestore.pipeline.CollectionGroupSource) [RemovedMethod]
error: Removed method com.google.firebase.firestore.pipeline.AbstractOptions.with(String,com.google.firebase.firestore.pipeline.GenericOptions) [RemovedMethod]
error: Added method com.google.firebase.firestore.pipeline.AbstractOptions.with(String,com.google.firebase.firestore.pipeline.RawOptions) [AddedMethod]
error: Added constructor com.google.firebase.firestore.pipeline.CollectionGroupSource(String,com.google.firebase.firestore.pipeline.InternalOptions) [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.CollectionGroupSource.canonicalId() [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.CollectionGroupSource.getCollectionId() [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.CollectionSource.canonicalId() [AddedMethod]
error: Removed method com.google.firebase.firestore.pipeline.CollectionSource.of(String) [RemovedMethod]
error: Removed method com.google.firebase.firestore.pipeline.CollectionSource.of(com.google.firebase.firestore.CollectionReference) [RemovedMethod]
error: Removed method com.google.firebase.firestore.pipeline.CollectionSource.Companion.of(String) [RemovedMethod]
error: Removed method com.google.firebase.firestore.pipeline.CollectionSource.Companion.of(com.google.firebase.firestore.CollectionReference) [RemovedMethod]
error: Removed class com.google.firebase.firestore.pipeline.ExplainOptions [RemovedClass]
error: Added method com.google.firebase.firestore.pipeline.Expr.mapGet(com.google.firebase.firestore.pipeline.Expr) [AddedMethod]
error: Attempted to change parameter name from key to keyExpression in method com.google.firebase.firestore.pipeline.Expr.mapRemove [ParameterNameChange]
error: Added method com.google.firebase.firestore.pipeline.ExprWithAlias.canonicalId() [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.ExprWithAlias.getAlias() [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.ExprWithAlias.getExpr() [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.Field.canonicalId() [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.FunctionExpr.canonicalId() [AddedMethod]
error: Removed class com.google.firebase.firestore.pipeline.GenericOptions [RemovedClass]
error: Added method com.google.firebase.firestore.pipeline.Ordering.canonicalId() [AddedMethod]
error: Removed method com.google.firebase.firestore.pipeline.PipelineOptions.withExplainOptions(com.google.firebase.firestore.pipeline.ExplainOptions) [RemovedMethod]
error: Added class com.google.firebase.firestore.pipeline.RawOptions [AddedClass]
error: Removed method com.google.firebase.firestore.pipeline.Stage.getName() [RemovedMethod]
error: Removed method com.google.firebase.firestore.pipeline.Stage.with(String,String) [RemovedMethod]
error: Removed method com.google.firebase.firestore.pipeline.Stage.with(String,boolean) [RemovedMethod]
error: Removed method com.google.firebase.firestore.pipeline.Stage.with(String,com.google.firebase.firestore.pipeline.Field) [RemovedMethod]
error: Removed method com.google.firebase.firestore.pipeline.Stage.with(String,double) [RemovedMethod]
error: Removed method com.google.firebase.firestore.pipeline.Stage.with(String,error.NonExistentClass) [RemovedMethod]
error: Removed method com.google.firebase.firestore.pipeline.Stage.with(String,long) [RemovedMethod]
error: Added method com.google.firebase.firestore.pipeline.Stage.withOption(String,String) [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.Stage.withOption(String,boolean) [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.Stage.withOption(String,com.google.firebase.firestore.pipeline.Field) [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.Stage.withOption(String,double) [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.Stage.withOption(String,error.NonExistentClass) [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.Stage.withOption(String,long) [AddedMethod]

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.

1 similar comment
@google-oss-bot
Copy link
Contributor

The public api surface has changed for the subproject firebase-firestore:
error: Removed class com.google.firebase.firestore.AbstractPipeline [RemovedClass]
error: Added method com.google.firebase.firestore.FirebaseFirestore.realtimePipeline() [AddedMethod]
error: Class com.google.firebase.firestore.Pipeline superclass changed from com.google.firebase.firestore.AbstractPipeline to java.lang.Object [ChangedSuperclass]
error: Removed method com.google.firebase.firestore.Pipeline.execute(com.google.firebase.firestore.pipeline.RealtimePipelineOptions) [RemovedMethod]
error: Removed method com.google.firebase.firestore.PipelineSource.pipeline(com.google.firebase.firestore.pipeline.CollectionGroupSource) [RemovedMethod]
error: Class com.google.firebase.firestore.RealtimePipeline superclass changed from com.google.firebase.firestore.AbstractPipeline to java.lang.Object [ChangedSuperclass]
error: Added method com.google.firebase.firestore.RealtimePipeline.canonicalId() [AddedMethod]
error: Removed method com.google.firebase.firestore.RealtimePipeline.execute() [RemovedMethod]
error: Removed method com.google.firebase.firestore.RealtimePipeline.execute(com.google.firebase.firestore.pipeline.PipelineOptions) [RemovedMethod]
error: Added method com.google.firebase.firestore.RealtimePipelineSource.collectionGroup(com.google.firebase.firestore.pipeline.CollectionGroupSource) [AddedMethod]
error: Added method com.google.firebase.firestore.RealtimePipelineSource.convertFrom(com.google.firebase.firestore.Query) [AddedMethod]
error: Removed method com.google.firebase.firestore.RealtimePipelineSource.pipeline(com.google.firebase.firestore.pipeline.CollectionGroupSource) [RemovedMethod]
error: Removed method com.google.firebase.firestore.pipeline.AbstractOptions.with(String,com.google.firebase.firestore.pipeline.GenericOptions) [RemovedMethod]
error: Added method com.google.firebase.firestore.pipeline.AbstractOptions.with(String,com.google.firebase.firestore.pipeline.RawOptions) [AddedMethod]
error: Added constructor com.google.firebase.firestore.pipeline.CollectionGroupSource(String,com.google.firebase.firestore.pipeline.InternalOptions) [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.CollectionGroupSource.canonicalId() [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.CollectionGroupSource.getCollectionId() [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.CollectionSource.canonicalId() [AddedMethod]
error: Removed method com.google.firebase.firestore.pipeline.CollectionSource.of(String) [RemovedMethod]
error: Removed method com.google.firebase.firestore.pipeline.CollectionSource.of(com.google.firebase.firestore.CollectionReference) [RemovedMethod]
error: Removed method com.google.firebase.firestore.pipeline.CollectionSource.Companion.of(String) [RemovedMethod]
error: Removed method com.google.firebase.firestore.pipeline.CollectionSource.Companion.of(com.google.firebase.firestore.CollectionReference) [RemovedMethod]
error: Removed class com.google.firebase.firestore.pipeline.ExplainOptions [RemovedClass]
error: Added method com.google.firebase.firestore.pipeline.Expr.mapGet(com.google.firebase.firestore.pipeline.Expr) [AddedMethod]
error: Attempted to change parameter name from key to keyExpression in method com.google.firebase.firestore.pipeline.Expr.mapRemove [ParameterNameChange]
error: Added method com.google.firebase.firestore.pipeline.ExprWithAlias.canonicalId() [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.ExprWithAlias.getAlias() [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.ExprWithAlias.getExpr() [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.Field.canonicalId() [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.FunctionExpr.canonicalId() [AddedMethod]
error: Removed class com.google.firebase.firestore.pipeline.GenericOptions [RemovedClass]
error: Added method com.google.firebase.firestore.pipeline.Ordering.canonicalId() [AddedMethod]
error: Removed method com.google.firebase.firestore.pipeline.PipelineOptions.withExplainOptions(com.google.firebase.firestore.pipeline.ExplainOptions) [RemovedMethod]
error: Added class com.google.firebase.firestore.pipeline.RawOptions [AddedClass]
error: Removed method com.google.firebase.firestore.pipeline.Stage.getName() [RemovedMethod]
error: Removed method com.google.firebase.firestore.pipeline.Stage.with(String,String) [RemovedMethod]
error: Removed method com.google.firebase.firestore.pipeline.Stage.with(String,boolean) [RemovedMethod]
error: Removed method com.google.firebase.firestore.pipeline.Stage.with(String,com.google.firebase.firestore.pipeline.Field) [RemovedMethod]
error: Removed method com.google.firebase.firestore.pipeline.Stage.with(String,double) [RemovedMethod]
error: Removed method com.google.firebase.firestore.pipeline.Stage.with(String,error.NonExistentClass) [RemovedMethod]
error: Removed method com.google.firebase.firestore.pipeline.Stage.with(String,long) [RemovedMethod]
error: Added method com.google.firebase.firestore.pipeline.Stage.withOption(String,String) [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.Stage.withOption(String,boolean) [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.Stage.withOption(String,com.google.firebase.firestore.pipeline.Field) [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.Stage.withOption(String,double) [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.Stage.withOption(String,error.NonExistentClass) [AddedMethod]
error: Added method com.google.firebase.firestore.pipeline.Stage.withOption(String,long) [AddedMethod]

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