[PR #4133] [CLOSED] docs: Add feature flags community plugin #22109

Closed
opened 2026-04-15 20:49:38 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/better-auth/better-auth/pull/4133
Author: @ping-maxwell
Created: 8/21/2025
Status: Closed

Base: canaryHead: docs/community-plugins/feature-flags


📝 Commits (10+)

📊 Changes

18 files changed (+745 additions, -33 deletions)

View changed files

📝 docs/components/features.tsx (+4 -4)
📝 docs/components/landing/hero.tsx (+5 -5)
📝 docs/components/landing/testimonials.tsx (+4 -12)
📝 docs/components/sidebar-content.tsx (+20 -0)
📝 docs/content/docs/concepts/users-accounts.mdx (+1 -1)
docs/content/docs/guides/auth0-migration-guide.mdx (+654 -0)
📝 docs/content/docs/integrations/svelte-kit.mdx (+1 -1)
📝 docs/content/docs/plugins/2fa.mdx (+2 -0)
📝 docs/content/docs/plugins/community-plugins.mdx (+7 -5)
📝 docs/content/docs/plugins/sso.mdx (+5 -0)
📝 packages/better-auth/package.json (+1 -1)
📝 packages/better-auth/src/client/client.test.ts (+14 -0)
📝 packages/better-auth/src/client/proxy.ts (+3 -0)
📝 packages/cli/package.json (+1 -1)
📝 packages/expo/package.json (+1 -1)
📝 packages/sso/package.json (+1 -1)
📝 packages/sso/src/index.ts (+20 -0)
📝 packages/stripe/package.json (+1 -1)

📄 Description

Awaiting the Github repo to be ready before this should be merged.


Summary by cubic

Adds the feature flags community plugin to the docs and introduces an Auth0 → Better Auth migration guide with a ready-to-run script. Also improves the landing UI and includes small core fixes.

  • New Features

    • Auth0 migration guide added with sidebar link.
    • Community plugins: added better-auth-feature-flags and Attio entries.
  • Bug Fixes

    • SSO: require org membership before creating an SSO provider.
    • Client: prevent proxy from appearing Promise-like (then/catch/finally); added tests.
    • Docs/UI: hero alignment and spacing tweaks, testimonials component rename; corrected SvelteKit min version, clarified 2FA table label, fixed token encryption and users-accounts example.

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/better-auth/better-auth/pull/4133 **Author:** [@ping-maxwell](https://github.com/ping-maxwell) **Created:** 8/21/2025 **Status:** ❌ Closed **Base:** `canary` ← **Head:** `docs/community-plugins/feature-flags` --- ### 📝 Commits (10+) - [`eb69d75`](https://github.com/better-auth/better-auth/commit/eb69d752795caf8051fa73c3e53031d6dcb6fd16) fix(docs): ugly whitespace in example code - [`4f753d3`](https://github.com/better-auth/better-auth/commit/4f753d3d52d6caaa91262211bf1e6e98caa558bb) add(docs): Error code reference list - [`be5a743`](https://github.com/better-auth/better-auth/commit/be5a7437bfbfee435247cc7864ae5a3b92bc8b61) Delete error-codes.mdx - [`26aad6a`](https://github.com/better-auth/better-auth/commit/26aad6a65a3b147cdfdda07b20c3ba32c1775936) Merge branch 'main' of https://github.com/Multinite/better-auth - [`809f49e`](https://github.com/better-auth/better-auth/commit/809f49e1d4e6c55d4eeedee06f93bc715d708d63) Merge branch 'better-auth:main' into main - [`0b06522`](https://github.com/better-auth/better-auth/commit/0b06522e4daceef9aaf739240408cb5253f6e64d) Merge branch 'main' of https://github.com/Multinite/better-auth - [`fc4a4f2`](https://github.com/better-auth/better-auth/commit/fc4a4f23d4286d89a550e84f1d54b642e44fe6e6) Merge branch 'better-auth:main' into main - [`924007b`](https://github.com/better-auth/better-auth/commit/924007bf5e512092a16f11f1cad3a63cd546284a) fix(docs): code highlight typo in plugin docs - [`81514e2`](https://github.com/better-auth/better-auth/commit/81514e2b5ead5af878507a15be289d0727ec5dba) Merge branch 'main' of https://github.com/Multinite/better-auth - [`9f24036`](https://github.com/better-auth/better-auth/commit/9f240367a88c91177b41a2fa640e76faa02c7fd1) Merge branch 'main' of https://github.com/Multinite/better-auth ### 📊 Changes **18 files changed** (+745 additions, -33 deletions) <details> <summary>View changed files</summary> 📝 `docs/components/features.tsx` (+4 -4) 📝 `docs/components/landing/hero.tsx` (+5 -5) 📝 `docs/components/landing/testimonials.tsx` (+4 -12) 📝 `docs/components/sidebar-content.tsx` (+20 -0) 📝 `docs/content/docs/concepts/users-accounts.mdx` (+1 -1) ➕ `docs/content/docs/guides/auth0-migration-guide.mdx` (+654 -0) 📝 `docs/content/docs/integrations/svelte-kit.mdx` (+1 -1) 📝 `docs/content/docs/plugins/2fa.mdx` (+2 -0) 📝 `docs/content/docs/plugins/community-plugins.mdx` (+7 -5) 📝 `docs/content/docs/plugins/sso.mdx` (+5 -0) 📝 `packages/better-auth/package.json` (+1 -1) 📝 `packages/better-auth/src/client/client.test.ts` (+14 -0) 📝 `packages/better-auth/src/client/proxy.ts` (+3 -0) 📝 `packages/cli/package.json` (+1 -1) 📝 `packages/expo/package.json` (+1 -1) 📝 `packages/sso/package.json` (+1 -1) 📝 `packages/sso/src/index.ts` (+20 -0) 📝 `packages/stripe/package.json` (+1 -1) </details> ### 📄 Description Awaiting the Github repo to be ready before this should be merged. <!-- This is an auto-generated description by cubic. --> --- ## Summary by cubic Adds the feature flags community plugin to the docs and introduces an Auth0 → Better Auth migration guide with a ready-to-run script. Also improves the landing UI and includes small core fixes. - New Features - Auth0 migration guide added with sidebar link. - Community plugins: added better-auth-feature-flags and Attio entries. - Bug Fixes - SSO: require org membership before creating an SSO provider. - Client: prevent proxy from appearing Promise-like (then/catch/finally); added tests. - Docs/UI: hero alignment and spacing tweaks, testimonials component rename; corrected SvelteKit min version, clarified 2FA table label, fixed token encryption and users-accounts example. <!-- End of auto-generated description by cubic. --> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-04-15 20:49:38 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/better-auth#22109