Skip to content

v0.12.1

Latest
Compare
Choose a tag to compare
@stephank stephank released this 03 Dec 10:30
· 5 commits to main since this release
  • It is now possible to retry the email code entry form.
  • Validation of redirect_uri in the OAuth authorization code flow could result in false negatives in some cases, when input does not match a reserialized version of the URL. For example, a URL without a path like https://example.com would always be rejected on the POST /token request, because during the POST /auth request it was parsed and stored as https://example.com/ (trailing slash), and no longer compared equal. This is now fixed.