-
Notifications
You must be signed in to change notification settings - Fork 29.7k
[ CP-stable] [ Tool ] Roll DDS 5.0.3 (#170880) #171002
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
This pull request was opened against a branch other than master. Since Flutter pull requests should not normally be opened against branches other than master, I have changed the base to master. If this was intended, you may modify the base back to stable. See the Release Process for information about how other branches get updated. Reviewers: Use caution before merging pull requests to branches other than master, unless this is an intentional hotfix/cherrypick. |
matanlurey
left a comment
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 is not possible to merge against stable, which is why the bot is trying to prevent you.
|
This pull request was opened from and to a release candidate branch. This should only be done as part of the official Flutter release process. If you are attempting to make a regular contribution to the Flutter project, please close this PR and follow the instructions at Tree Hygiene for detailed instructions on contributing to Flutter. Reviewers: Use caution before merging pull requests to release branches. Ensure the proper procedure has been followed. |
Whoops... switched to |
|
You'll need to push a blank commit, or recreate this PR, this is a corner-case in our CI infrastructure. |
|
@bkonyi Looks like it might be merging cleanly/safely (see test failures)? |
|
Looks like this updated DWDS for some reason... Let me take a look. |
|
Looks like this is good to go now @matanlurey. |
Issue Link:
dart-lang/sdk#60851
Changelog Description:
Fixes unhandled exception on application shutdown in the debug adapter used by IDEs.
Impact Description:
The Debug Adapter (DAP) could crash if it is waiting on specific RPCs from a target application while the application is shutting down.
Workaround:
None.
Risk:
What is the risk level of this cherry-pick?
Test Coverage:
Are you confident that your fix is well-tested by automated tests?
Validation Steps:
This bug is extremely hard to reproduce reliably. Catching
RPCErrorand checking for the correct error code related to the VM service disappearing is simple and low risk.