This repository was archived by the owner on Feb 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9.7k
[local_auth_android] update java complie sdk version to green tree #7121
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The red is on
local_auth
compilation, notlocal_auth_android
. That's why it was post-publish (from c9f6bee); if it were in the_android
subpackage it would have shown up in presubmit. So we'll need to updatelocal_auth
's example.@camsim99 we'll need to be careful about updating the examples of app-facing packages as well when we do this kind of dependabot roll.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh, shoot I see. Sorry about missing that. So, in the future, we need to bump in the app facing package as well as the android sub-package?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This passes the tests now, should I update both?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ah, that test isn't running here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I didn't think of it either. Unfortunately we still have holes in presubmit testing of things that only break dependencies, because running all of our tests twice would be a lot. But it seems like we still need to find the right line.
If we know something will affect any clients of the plugin, then all clients in our repo (which is usually just the app-facing package; occasionally we have cross-plugin dependencies in examples, like
camera
's example depending onvideo_player
) should be updated.The trick is knowing when it will affect clients, but having to update the in-package example is a good warning sign.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That makes sense. Would it be helpful to provide some guidance on this in the wiki? I'm not sure how many folks will run into this, though.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It wouldn't hurt, but I suspect we'll hit it infrequently enough that we'll forget even if we write it down.
I left flutter/flutter#52115 (comment) to capture considering adding CI that would catch this.