2024-07-29.0
github-actions
released this
29 Jul 16:30
·
2735 commits
to main
since this release
- π 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