Logto v1.37.0 is here with a built-in Account Center app, richer JWT customization using application context, and configurable ID token claims. It also fixes custom-domain redirect issues and improves sign-up and social linking flow stability.
Darcy YeDeveloper
Stop wasting weeks on user auth
Launch secure apps faster with Logto. Integrate user auth in minutes, and focus on your core product.
Fixed an invalid_redirect_uri issue for built-in Account Center and Demo app under custom-domain requests.
Root cause: Built-in client metadata was generated from default tenant URLs only, while runtime redirect_uri could be based on a custom domain.
Fix: getTenantUrls now accepts an optional runtime endpoint. Built-in metadata generation for Account Center and Demo app now includes envSet.endpoint, so redirect/logout URIs automatically include the active custom domain.
Fixed a broken social account linking flow in this scenario:
username + email are both enabled as required sign-up identifiers.
"Require users to provide missing sign-up identifiers for social sign-in" is enabled.
The social IdP returns no verified email.
The user fulfills username, then enters an already-registered email.
Previously, the link_social parameter was not propagated after username fulfillment, causing link context to be lost before email verification. The flow now appends and preserves link_social so the expected link-and-sign-in behavior works correctly.