SDK hosts must stay silent on dialog kinds they never declared instead of replying cancelled.
What's wrong with this entry?
The dialog protocol docs for SDK hosts were corrected. A host that receives a dialog_kind it did not declare must now leave the request unanswered rather than replying {behavior: "cancelled"}, because cancelled is a real settlement meaning the user dismissed the dialog.
- A kind is only sent to sessions where a client declared it in
initialize.supportedDialogKinds. - On multi-client transports the request still reaches every attached client, so an undeclared kind can legitimately arrive at a host that cannot show it.
- Dialogs left unanswered are cancelled by the CLI itself once the deadline passes.
which is a real settlement treated as the user dismissing the dialog
Strings lifted out of the shipped bundle, so the claim above can be checked against them.
Related
Other releases about the same thing. Found by shared names or similar wording; neither means one caused the other.