Browse Source
Merge branch 'master' into feat/enhanced-json-decode-errors
pull/14089/head
Arif Dogan
8 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
3 additions and
2 deletions
-
docs/en/docs/release-notes.md
-
fastapi/security/oauth2.py
|
|
|
@ -9,6 +9,7 @@ hide: |
|
|
|
|
|
|
|
### Docs |
|
|
|
|
|
|
|
* ✏️ Fix typos in OAuth2 password request forms. PR [#14112](https://github.com/fastapi/fastapi/pull/14112) by [@alv2017](https://github.com/alv2017). |
|
|
|
* 📝 Update contributing guidelines for installing requirements. PR [#14095](https://github.com/fastapi/fastapi/pull/14095) by [@alejsdev](https://github.com/alejsdev). |
|
|
|
|
|
|
|
### Translations |
|
|
|
|
|
|
|
@ -89,7 +89,7 @@ class OAuth2PasswordRequestForm: |
|
|
|
Doc( |
|
|
|
""" |
|
|
|
`password` string. The OAuth2 spec requires the exact field name |
|
|
|
`password". |
|
|
|
`password`. |
|
|
|
""" |
|
|
|
), |
|
|
|
], |
|
|
|
@ -243,7 +243,7 @@ class OAuth2PasswordRequestFormStrict(OAuth2PasswordRequestForm): |
|
|
|
Doc( |
|
|
|
""" |
|
|
|
`password` string. The OAuth2 spec requires the exact field name |
|
|
|
`password". |
|
|
|
`password`. |
|
|
|
""" |
|
|
|
), |
|
|
|
], |
|
|
|
|