[PR #5564] [MERGED] v1.3.31 #22987

Closed
opened 2026-04-15 21:24:25 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/better-auth/better-auth/pull/5564
Author: @himself65
Created: 10/25/2025
Status: Merged
Merged: 10/25/2025
Merged by: @himself65

Base: mainHead: v1.3.31


📝 Commits (8)

  • d139045 docs: standardize term "authentication framework" project-wide (#5511)
  • a49ed54 docs: refactor to work without a tailwind.config file (#5501)
  • 84cea7e fix(docs): enable code block copying in documentation page (#5525)
  • e8df215 docs: add better-auth-opaque plugin to community plugins list (#5524)
  • 6683154 docs: clarify relationship between adminRoles and custom access control (#5406)
  • f94d7f0 docs: fix typo in README (#5520)
  • 270a4ca docs(builder): fix disabled 'built with' generating attribute (#5551)
  • fc1fecf fix(expo): origin check failing due to null origin in expo (#5545)

📊 Changes

25 files changed (+413 additions, -452 deletions)

View changed files

📝 README.md (+1 -1)
📝 demo/nextjs/app/layout.tsx (+1 -1)
📝 docs/app/blog/_components/changelog-layout.tsx (+3 -3)
📝 docs/app/blog/_components/default-changelog.tsx (+3 -3)
📝 docs/app/changelogs/_components/changelog-layout.tsx (+3 -3)
📝 docs/app/changelogs/_components/default-changelog.tsx (+3 -3)
📝 docs/app/docs/[[...slug]]/page.tsx (+5 -1)
📝 docs/app/global.css (+95 -119)
📝 docs/app/layout.tsx (+3 -2)
📝 docs/app/page.tsx (+1 -1)
📝 docs/components/builder/code-tabs/index.tsx (+1 -1)
📝 docs/components/builder/sign-up.tsx (+19 -10)
📝 docs/components/features.tsx (+7 -7)
📝 docs/components/landing/grid-pattern.tsx (+11 -3)
📝 docs/components/landing/hero.tsx (+151 -153)
📝 docs/content/docs/plugins/admin.mdx (+5 -3)
📝 docs/content/docs/plugins/community-plugins.mdx (+1 -0)
📝 docs/content/docs/plugins/email-otp.mdx (+1 -1)
docs/tailwind.config.js (+0 -129)
📝 packages/better-auth/README.md (+1 -1)

...and 5 more files

📄 Description

Summary by cubic

v1.3.31 standardizes “authentication framework” across the project, refactors docs to work without a Tailwind config, and fixes Expo origin handling. It also enables code copy in docs and improves rate-limit error handling.

  • Bug Fixes

    • Expo: set Origin to expo-origin by default when missing; add disableOriginOverride option to opt out; add tests.
    • API router: handle error middleware returning a Request by passing it to onRequestRateLimit.
    • Docs: fix code block copy not working on docs pages.
  • Refactors

    • Docs CSS: remove docs/tailwind.config.js; move utilities, animations, and theme tokens into global.css via @plugin/@utility/@theme.
    • Copy and content updates: use “authentication framework” in README, metadata, and pages; tweak hero/features/grid UI; use bg-border; minor type cleanups.
    • Builder: sign-up example now conditionally shows the “Secured by better-auth” label based on options and propagates builder options to generated code.
    • Docs content: clarify adminRoles vs custom access control; add better-auth-opaque to community plugins; fix typos.

🔄 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/5564 **Author:** [@himself65](https://github.com/himself65) **Created:** 10/25/2025 **Status:** ✅ Merged **Merged:** 10/25/2025 **Merged by:** [@himself65](https://github.com/himself65) **Base:** `main` ← **Head:** `v1.3.31` --- ### 📝 Commits (8) - [`d139045`](https://github.com/better-auth/better-auth/commit/d139045721407e6014e29f9232b5145462b57d36) docs: standardize term "authentication framework" project-wide (#5511) - [`a49ed54`](https://github.com/better-auth/better-auth/commit/a49ed5400b5fb3e8ac36f143309512edba8d02c7) docs: refactor to work without a tailwind.config file (#5501) - [`84cea7e`](https://github.com/better-auth/better-auth/commit/84cea7e6c75ab9b50290b088e0c2906077519db6) fix(docs): enable code block copying in documentation page (#5525) - [`e8df215`](https://github.com/better-auth/better-auth/commit/e8df2150f708de0df90d3bf4ecf05a4a0e32b50b) docs: add better-auth-opaque plugin to community plugins list (#5524) - [`6683154`](https://github.com/better-auth/better-auth/commit/668315445bbf8022f3227c97fdf40bee38d0fbd4) docs: clarify relationship between adminRoles and custom access control (#5406) - [`f94d7f0`](https://github.com/better-auth/better-auth/commit/f94d7f00b04fa0e2d7632f644549e7c5c257fcca) docs: fix typo in README (#5520) - [`270a4ca`](https://github.com/better-auth/better-auth/commit/270a4caccaa9d09743c66566d7bc37dacc979c61) docs(builder): fix disabled 'built with' generating attribute (#5551) - [`fc1fecf`](https://github.com/better-auth/better-auth/commit/fc1fecf51c225d960e8d06443a54de2a7167c093) fix(expo): origin check failing due to null origin in expo (#5545) ### 📊 Changes **25 files changed** (+413 additions, -452 deletions) <details> <summary>View changed files</summary> 📝 `README.md` (+1 -1) 📝 `demo/nextjs/app/layout.tsx` (+1 -1) 📝 `docs/app/blog/_components/changelog-layout.tsx` (+3 -3) 📝 `docs/app/blog/_components/default-changelog.tsx` (+3 -3) 📝 `docs/app/changelogs/_components/changelog-layout.tsx` (+3 -3) 📝 `docs/app/changelogs/_components/default-changelog.tsx` (+3 -3) 📝 `docs/app/docs/[[...slug]]/page.tsx` (+5 -1) 📝 `docs/app/global.css` (+95 -119) 📝 `docs/app/layout.tsx` (+3 -2) 📝 `docs/app/page.tsx` (+1 -1) 📝 `docs/components/builder/code-tabs/index.tsx` (+1 -1) 📝 `docs/components/builder/sign-up.tsx` (+19 -10) 📝 `docs/components/features.tsx` (+7 -7) 📝 `docs/components/landing/grid-pattern.tsx` (+11 -3) 📝 `docs/components/landing/hero.tsx` (+151 -153) 📝 `docs/content/docs/plugins/admin.mdx` (+5 -3) 📝 `docs/content/docs/plugins/community-plugins.mdx` (+1 -0) 📝 `docs/content/docs/plugins/email-otp.mdx` (+1 -1) ➖ `docs/tailwind.config.js` (+0 -129) 📝 `packages/better-auth/README.md` (+1 -1) _...and 5 more files_ </details> ### 📄 Description <!-- This is an auto-generated description by cubic. --> ## Summary by cubic v1.3.31 standardizes “authentication framework” across the project, refactors docs to work without a Tailwind config, and fixes Expo origin handling. It also enables code copy in docs and improves rate-limit error handling. - **Bug Fixes** - Expo: set Origin to expo-origin by default when missing; add disableOriginOverride option to opt out; add tests. - API router: handle error middleware returning a Request by passing it to onRequestRateLimit. - Docs: fix code block copy not working on docs pages. - **Refactors** - Docs CSS: remove docs/tailwind.config.js; move utilities, animations, and theme tokens into global.css via @plugin/@utility/@theme. - Copy and content updates: use “authentication framework” in README, metadata, and pages; tweak hero/features/grid UI; use bg-border; minor type cleanups. - Builder: sign-up example now conditionally shows the “Secured by better-auth” label based on options and propagates builder options to generated code. - Docs content: clarify adminRoles vs custom access control; add better-auth-opaque to community plugins; fix typos. <!-- 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 21:24:25 -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#22987