Skip to content

v1.25.0 bool query parameters; GoogleWebAuthorizationBroker cancellation

Compare
Choose a tag to compare
@chrisdunelm chrisdunelm released this 10 Apr 09:55

Bug fixes:

  • #970 Bools use lower-case strings in client->server params
  • #968 GoogleWebAuthorizationBroker does not honour CancellationToken when waiting for browser response

#970 fixes a very long-standing bug where boolean query parameters used incorrect casing. The server requires lower-case ("false", "true"), but the query parameter was sent with the first letter capitalized ("False", "True") which was ignored by the server in some cases.
Therefore this release may result in a change of client behaviour, as previously ignored boolean query parameters will now be successfully parsed by the server.