Skip to content

2024-07-29.0

Compare
Choose a tag to compare
@github-actions github-actions released this 29 Jul 16:30
· 1708 commits to main since this release
6ef6a21
  • πŸ” Account Deletion is now supported in SDKs, use "deleteAccount()" method to trigger the account deletion page directly without going to the /settings page.
  • βœ… Improve usability of AuthUI under no-script environment. The authentication process can be completed without any JavaScript.
  • ✨ "Issue Access Tokens in JWTs" are default enabled for SPA and native applications.
  • πŸ—“οΈ Changed date format in the Portal to use the month names instead of numbers to avoid confusion.
  • πŸ§‘β€πŸ’Ό New Account Management API: Manual Linking for OAuth is supported. Similar to Auth Flow API, it helps you build the account management page. Call these 2 new endpoints to link an OAuth identity to an authenticated user.
    • POST /api/v1/account/identification
    • POST /api/v1/account/identification/oauth
    • (Pending documentation, see spec here)
  • πŸ”— Auto Account Linking for Login IDs: When signup using a username/email/phone number, and this ID conflicts with an existing user who used OAuth connection to sign up before, the account can be linked.
  • πŸ›‘οΈ Behind the scene: Support DPoP protocol to bind the sessions to the device. Update to the latest SDK to use the new protocol. See: OAuth 2.0 Demonstrating Proof-of-Possession (DPoP)
  • πŸ” Pre-authenticated URLs are supported in the backend. (Pending documentation, see spec here)
  • 🐞 Misc bug fixes