Commit Graph

491 Commits

Author SHA1 Message Date
Alex Yang
fcb4456c45 docs: fix authors in testimonials.tsx 2026-01-16 20:15:05 -08:00
Alex Yang
2bc9656f75 docs: remove 3rd Party Payment section (#7425) 2026-01-16 19:43:54 -08:00
Alex Yang
206f3360f4 docs: update paymnet community plugins (#7257) 2026-01-16 19:43:53 -08:00
Bereket Engida
c1ae2ed9f3 refactor: simplify social provider handling and improve layout in Builder and SignIn components 2026-01-16 19:43:53 -08:00
Bereket Engida
032ead4790 chore: lint 2026-01-15 21:30:10 -08:00
Bereket Engida
bda8b3ec02 refactor: remove TrustedBy component and adjust layout in Features component 2026-01-15 20:32:28 -08:00
Bereket Engida
b53cd3a76c docs: refactor Trusted By section to use a dynamic logo grid and improve layout in EnterpriseHero component 2026-01-15 20:06:37 -08:00
Alex Yang
9a7085c8e0 chore: add lint rule useConst (#7369) 2026-01-14 19:20:18 -08:00
Joél Solano
60851b56b9 docs: improve create sign in box (#7349) 2026-01-14 19:20:18 -08:00
Leon Weber
5643f3caec docs: add better-auth-nostr community plugin (#7360)
Co-authored-by: Alex Yang <himself65@outlook.com>
2026-01-14 11:01:02 -08:00
Bereket Engida
49ff6e8386 docs: hide method/url from server-only API documentation (#7318)
Co-authored-by: Claude <noreply@anthropic.com>
2026-01-12 20:37:19 -08:00
Taesu
59d8dd18c0 docs: correct sequenzy-better-auth community plugin link (#7289) 2026-01-12 16:00:48 -08:00
Nicolay
80f10389e2 docs: add Sequenzy to community plugins (#7266)
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-12 02:50:02 -08:00
Taesu
1dfcbae549 docs: improve accessibility (#7253) 2026-01-12 02:50:02 -08:00
Taesu
fe358c5bf2 docs: fix SVG attributes and fumadocs type imports (#7192) 2026-01-09 23:55:40 -08:00
Fuma Nama
c31c92f3d2 chore: bump fumadocs (#7106)
Co-authored-by: Taesu <bytaesu@gmail.com>
2026-01-06 15:29:07 +08:00
Abdur Rahman
a4a388d6f5 docs: improve sidebar content filtering and simplify CodeBlockTabs ren… (#7109)
Co-authored-by: Alex Yang <himself65@outlook.com>
2026-01-04 02:04:36 +08:00
Bereket Engida
f19dcf10d4 Revert "docs: bump fumadocs (#7101)"
This reverts commit 0fda455ce5.
2026-01-04 02:04:16 +08:00
Fuma Nama
2112001623 docs: bump fumadocs (#7101) 2026-01-04 02:04:16 +08:00
Abdur Rahman
a4df0d96b6 docs: prevent sending empty message in AI chat (#7081) 2026-01-02 14:28:55 +08:00
Taesu
65528492e8 docs: switch to default logo (#7086) 2026-01-02 14:22:20 +08:00
Taesu
f2af5f6695 docs: add gradient mask image for TOCScrollArea (#7032) 2025-12-31 21:36:19 +08:00
Taesu
0f519fbfea docs: improve community plugins page (#7031) 2025-12-31 21:36:19 +08:00
Taesu
0a0c80e3a4 docs: add payments section (#7030) 2025-12-31 21:36:19 +08:00
Alex Yang
4d7d7d5a76 Reapply "docs: add Commet plugin documentation (#6827)"
This reverts commit 380d4c7cae.
2025-12-26 14:46:50 +08:00
Alex Yang
af8ffa278d docs: use data table for community plugin list (#6953)
Co-authored-by: cubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com>
2025-12-26 14:46:49 +08:00
Alex Yang
b081b7ad4d Revert "docs: add Commet plugin documentation (#6827)"
This reverts commit 0ca1431fc6.
2025-12-23 23:42:55 +08:00
Decker
d067a83113 docs: add Commet plugin documentation (#6827)
Co-authored-by: Alex Yang <himself65@outlook.com>
2025-12-23 09:39:18 +00:00
Taesu
06f4040689 docs: correct OAuth Provider sidebar icon color (#6935) 2025-12-23 03:08:48 +00:00
Dylan Vanmali
f1b90e4085 feat(oauth-provider): an oauth 2.1 compliant plugin (#4163)
An upgrade to oidc-provider plugin that makes it oauth2.1 compliant and has a configuration that is secure by default.

Plans for the deprecation of oidc-provider plugin due to many inherent flaws in its design. Internally, plugin functions now share logic, providing for better future extensibility if new code_grants need to be written or user/client jwt or opaque tokens need to be written. Furthermore, as an oAuth 2.1 provider, it provides logic valid for an MCP server. When using the scope "openid" (optional, enabled by default), the server acts like an OpenId server able to issue id tokens and provides a /userinfo endpoint.

Features

OAuth 2.1 by default
Properly supports authorization_code, refresh_token, and client_credentials grants
PKCE by default (removes plain completely)
Public and confidential client registration
JWT plugin is required by default, but can be disabled using disableJWTPlugin flag
Access tokens can now be received in JWT verifiable format using the resource parameter (ie JWT aud field)
Id tokens are still verifiable by JWKS when using JWT Plugin, or clientSecret if disabled. Fixes issue to prevent public clients when disableJWTPlugin: true from obtaining id tokens directly even when they shouldn't be allowed an id token and should use /userinfo instead.
Protects /userinfo with scope check
Separates Refresh Token and Access token on database schema to allow multiple access tokens per refresh and multiple refresh tokens per login session.
oauthAccessToken strictly deals with opaque tokens
Opaque tokens are given only when resource parameter (aka audience) is not provided
Option to Encode and Decode refresh tokens
allowDynamicClientRegistration with allowUnauthenticatedClientRegistration flags
Separation of default expiration times
Proper creation of public and confidential clients
Prevents misconfiguration between .well-known/openid-configuration endpoint and plugin settings
scopeExpirations to assign scopes specific expiration
Custom claims through separated functions: customAccessTokenClaims, customIdTokenClaims, and customUserInfoClaims
Organizational support through activeOrganizationalId on a session such as through the organizational plugin. Attaches to oAuthClient via reference_id.
Rp-initiated logout
Account Selection via prompt=select_account.
Account Creation via prompt=create.
Prompt combinations prompt=select_account+consent and prompt=login+consent

Docs available at https://www.better-auth.com/docs/plugins/oauth-provider (pr: https://github.com/better-auth/better-auth/blob/main/docs/content/docs/plugins/oauth-provider.mdx)
2025-12-22 19:16:54 +00:00
Taesu
646ff722a0 docs: fix AI chat code formatting issue (#6869) 2025-12-19 05:27:00 +00:00
Taesu
18e642ea1d docs: update logo for Christmas (#6806) 2025-12-18 01:14:23 +00:00
Taesu
73bc1113d2 docs: use actual logo colors for migration guide section (#6676) 2025-12-11 02:10:20 +00:00
Jonathan Samines
262df9b699 chore: remove unused variables (#6647) 2025-12-09 21:51:48 +00:00
Taesu
1c889b15cf docs: add WorkOS migration guide (#6577)
Co-authored-by: Bereket Engida <Bekacru@gmail.com>
Co-authored-by: Bereket Engida <86073083+Bekacru@users.noreply.github.com>
2025-12-08 22:19:11 +00:00
Taesu
c1773a3123 docs: improve ThemeToggle component and header layout (#6451)
Co-authored-by: cubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com>
2025-12-08 22:00:06 +00:00
Joél Solano
b1929e7e27 docs: fix layout (#6612) 2025-12-08 17:07:37 +00:00
Bereket Engida
e5909128ca docs: add enterprise page and form for support (#6607)
Co-authored-by: cubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com>
2025-12-08 09:46:01 +00:00
caykey
ed825d273b docs: correct spelling of 'Tiktok' to 'TikTok' (#6485) 2025-12-03 07:04:34 +00:00
Joél Solano
ea4a1235d2 docs: adjust sidebar breakpoint to same as navbar (#6471)
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Bereket Engida <86073083+Bekacru@users.noreply.github.com>
2025-12-02 10:35:05 -08:00
Jonathan Samines
fbe51c8f93 chore: add spell checker (#6319) 2025-12-01 10:33:38 -08:00
Bereket Engida
022ce29079 fix: return null early if userid isn't defined (#6418) 2025-11-29 22:47:12 -08:00
Bereket Engida
6d5e8a9338 docs: change theme toggle (#6416) 2025-11-29 21:43:39 -08:00
Taesu
0f97e281b4 docs: adjust social provider icon sizes and alignment (#6347) 2025-11-27 09:12:17 -08:00
Taesu
a4d200d8ea docs: cleanup new badge (#6337) 2025-11-26 17:53:47 -08:00
Ana Trajkovska
3ed454b257 feat: Add Vercel as OAuth provider (#6316) 2025-11-26 16:22:02 +00:00
Joél Solano
8c8c5adf39 docs(fix): navbar overflowing at certain viewport (#6279) 2025-11-24 18:04:06 -08:00
Bereket Engida
04936e128f docs: updated og image and add merch link to community section (#6251)
Co-authored-by: Maxwell <145994855+ping-maxwell@users.noreply.github.com>
Co-authored-by: Maxwell Weru <1645026+mburumaxwell@users.noreply.github.com>
Co-authored-by: Stephen Zhou <38493346+hyoban@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Slava Yultyyev <yultyyev@gmail.com>
Co-authored-by: Joél Solano <joelsolano@jsolano.de>
2025-11-23 20:35:38 -08:00
Maxwell
a41365ad0f chore(docs): fix ask ai query param (#6221) 2025-11-22 14:01:25 -08:00
Maxwell
53b8f7e0a2 docs: add new badge to SCIM (#6205) 2025-11-22 08:10:56 -08:00