[PR #8439] [MERGED] chore: release v1.5.4 #16221

Closed
opened 2026-04-13 10:26:55 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/better-auth/better-auth/pull/8439
Author: @himself65
Created: 3/6/2026
Status: Merged
Merged: 3/6/2026
Merged by: @himself65

Base: mainHead: v1.5.4-staging-2


📝 Commits (10+)

  • a80c83c fix: move adapter packages to dependencies to fix missing module errors (#8401)
  • 512db4c fix(expo): handle origin override across mutable and immutable requests (#8405)
  • ebeed02 docs: fix default secret value in options reference (#8295)
  • 474fc9b docs: clarify strictNullChecks behavior under strict (#8294)
  • 71ad730 docs: add Openfort third party plugin (#5911)
  • 047843a docs: fix layout bugs related to the TOC (#8356)
  • ab72631 docs: add max-width to docs content area (#8383)
  • 735d2db docs: fix railway developer portal link (#8381)
  • 96fb2b8 docs: add warning to SQLite documentation for bun:sqlite (#8373)
  • e441404 docs: add background tasks (#8395)

📊 Changes

18 files changed (+859 additions, -50 deletions)

View changed files

📝 .cspell/third-party.txt (+1 -0)
📝 docs/content/docs/adapters/sqlite.mdx (+4 -0)
📝 docs/content/docs/authentication/railway.mdx (+1 -1)
📝 docs/content/docs/concepts/hooks.mdx (+46 -0)
📝 docs/content/docs/concepts/typescript.mdx (+2 -0)
📝 docs/content/docs/guides/optimizing-for-performance.mdx (+25 -0)
docs/content/docs/plugins/openfort.mdx (+579 -0)
📝 docs/content/docs/reference/options.mdx (+50 -1)
📝 landing/app/globals.css (+0 -6)
📝 landing/app/layout.tsx (+5 -5)
📝 landing/components/landing/staggered-nav-files.tsx (+1 -1)
📝 landing/components/sidebar-content.tsx (+17 -0)
📝 landing/package.json (+1 -0)
📝 packages/better-auth/package.json (+3 -15)
📝 packages/expo/src/index.ts (+11 -8)
📝 packages/expo/test/expo.test.ts (+100 -0)
📝 packages/prisma-adapter/package.json (+0 -3)
📝 pnpm-lock.yaml (+13 -10)

📄 Description

Summary

Cherry-picked fixes and doc updates from canary for the v1.5.4 stable release.

Fixes

  • fix: move adapter packages to dependencies to fix missing module errors (#8401)
  • fix(expo): handle origin override across mutable and immutable requests (#8405)

Documentation

  • docs: fix default secret value in options reference (#8295)
  • docs: clarify strictNullChecks behavior under strict (#8294)
  • docs: add Openfort third party plugin (#5911)
  • docs: fix layout bugs related to the TOC (#8356)
  • docs: add max-width to docs content area (#8383)
  • docs: fix railway developer portal link (#8381)
  • docs: add warning to SQLite documentation for bun:sqlite (#8373)
  • docs: add background tasks (#8395)
  • docs: resolve TOC jitter by removing nested scroll container (#8427)
  • docs: add Vercel Analytics component (#8431)

Verification

  • pnpm typecheck
  • pnpm lint
  • Expo tests (34/34) ✓
  • Prisma adapter tests ✓
  • Cookie tests (68/68) ✓

🔄 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/8439 **Author:** [@himself65](https://github.com/himself65) **Created:** 3/6/2026 **Status:** ✅ Merged **Merged:** 3/6/2026 **Merged by:** [@himself65](https://github.com/himself65) **Base:** `main` ← **Head:** `v1.5.4-staging-2` --- ### 📝 Commits (10+) - [`a80c83c`](https://github.com/better-auth/better-auth/commit/a80c83c75d671b9adf49ea714c7acbf19da945ce) fix: move adapter packages to dependencies to fix missing module errors (#8401) - [`512db4c`](https://github.com/better-auth/better-auth/commit/512db4c2456f2f53dd1b1b9db2e882050c6e1c8d) fix(expo): handle origin override across mutable and immutable requests (#8405) - [`ebeed02`](https://github.com/better-auth/better-auth/commit/ebeed02a894b37bceed5935217bc2f2da461a834) docs: fix default secret value in options reference (#8295) - [`474fc9b`](https://github.com/better-auth/better-auth/commit/474fc9b2302145e6a9008fe19be96295317af97b) docs: clarify `strictNullChecks` behavior under `strict` (#8294) - [`71ad730`](https://github.com/better-auth/better-auth/commit/71ad7305296a72b4475d46738baa68e634951b03) docs: add Openfort third party plugin (#5911) - [`047843a`](https://github.com/better-auth/better-auth/commit/047843afbc9f576cf15ff1970b0adc4b95c5803b) docs: fix layout bugs related to the TOC (#8356) - [`ab72631`](https://github.com/better-auth/better-auth/commit/ab72631f655fa5819ea47bd49ce2a91d8a32237e) docs: add max-width to docs content area (#8383) - [`735d2db`](https://github.com/better-auth/better-auth/commit/735d2dbcd089b2dffc65d75e7aa4e47888ae4a2d) docs: fix railway developer portal link (#8381) - [`96fb2b8`](https://github.com/better-auth/better-auth/commit/96fb2b8e56dea70c2f034f1f8922fb040f1d5e1e) docs: add warning to SQLite documentation for bun:sqlite (#8373) - [`e441404`](https://github.com/better-auth/better-auth/commit/e441404a88bc5e18317aff39d40e852e9d915893) docs: add background tasks (#8395) ### 📊 Changes **18 files changed** (+859 additions, -50 deletions) <details> <summary>View changed files</summary> 📝 `.cspell/third-party.txt` (+1 -0) 📝 `docs/content/docs/adapters/sqlite.mdx` (+4 -0) 📝 `docs/content/docs/authentication/railway.mdx` (+1 -1) 📝 `docs/content/docs/concepts/hooks.mdx` (+46 -0) 📝 `docs/content/docs/concepts/typescript.mdx` (+2 -0) 📝 `docs/content/docs/guides/optimizing-for-performance.mdx` (+25 -0) ➕ `docs/content/docs/plugins/openfort.mdx` (+579 -0) 📝 `docs/content/docs/reference/options.mdx` (+50 -1) 📝 `landing/app/globals.css` (+0 -6) 📝 `landing/app/layout.tsx` (+5 -5) 📝 `landing/components/landing/staggered-nav-files.tsx` (+1 -1) 📝 `landing/components/sidebar-content.tsx` (+17 -0) 📝 `landing/package.json` (+1 -0) 📝 `packages/better-auth/package.json` (+3 -15) 📝 `packages/expo/src/index.ts` (+11 -8) 📝 `packages/expo/test/expo.test.ts` (+100 -0) 📝 `packages/prisma-adapter/package.json` (+0 -3) 📝 `pnpm-lock.yaml` (+13 -10) </details> ### 📄 Description ## Summary Cherry-picked fixes and doc updates from `canary` for the v1.5.4 stable release. ### Fixes - fix: move adapter packages to dependencies to fix missing module errors (#8401) - fix(expo): handle origin override across mutable and immutable requests (#8405) ### Documentation - docs: fix default secret value in options reference (#8295) - docs: clarify `strictNullChecks` behavior under `strict` (#8294) - docs: add Openfort third party plugin (#5911) - docs: fix layout bugs related to the TOC (#8356) - docs: add max-width to docs content area (#8383) - docs: fix railway developer portal link (#8381) - docs: add warning to SQLite documentation for bun:sqlite (#8373) - docs: add background tasks (#8395) - docs: resolve TOC jitter by removing nested scroll container (#8427) - docs: add Vercel `Analytics` component (#8431) ## Verification - `pnpm typecheck` ✓ - `pnpm lint` ✓ - Expo tests (34/34) ✓ - Prisma adapter tests ✓ - Cookie tests (68/68) ✓ --- <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-13 10:26:55 -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#16221