[PR #5713] [CLOSED] feat: team roles #31774

Closed
opened 2026-04-17 22:39:23 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/better-auth/better-auth/pull/5713
Author: @XavierGeerinck
Created: 11/1/2025
Status: Closed

Base: canaryHead: feat-team-role


📝 Commits (10+)

  • 0088c63 fix(better-auth): moved email verification check after password check (#4835)
  • 15b00db fix(custom-session): don't overwrite the Set-Cookie header (#4388)
  • 4510153 fix(email-otp): call reset password callback (#4818)
  • ba147f3 chore: release v1.3.18
  • f8c2df9 chore: merge
  • 7ec8bfe docs: change banner
  • b635b8e docs: add link to auth.js team announcement
  • 633a793 fix: getSession shouldn't expose options and path types (#4947)
  • 8b61711 chore: move cookie state validation to state helper function
  • bd4bb56 chore: release v1.3.19

📊 Changes

639 files changed (+37339 additions, -9675 deletions)

View changed files

.github/workflows/branch-rules.yml (+0 -36)
📝 .github/workflows/ci.yml (+2 -2)
📝 .github/workflows/e2e.yml (+6 -5)
.github/workflows/main-protect.yml (+0 -18)
📝 .github/workflows/preview.yml (+2 -2)
📝 .github/workflows/release.yml (+11 -6)
📝 CONTRIBUTING.md (+30 -6)
📝 README.md (+1 -1)
📝 biome.json (+4 -2)
demo/expo-example/.env.example (+7 -0)
demo/expo-example/.gitignore (+20 -0)
demo/expo-example/README.md (+15 -0)
demo/expo-example/app.config.ts (+55 -0)
demo/expo-example/assets/bg-image.jpeg (+0 -0)
demo/expo-example/assets/fonts/SpaceMono-Regular.ttf (+0 -0)
demo/expo-example/assets/icon.png (+0 -0)
demo/expo-example/assets/images/adaptive-icon.png (+0 -0)
demo/expo-example/assets/images/favicon.png (+0 -0)
demo/expo-example/assets/images/logo.png (+0 -0)
demo/expo-example/assets/images/partial-react-logo.png (+0 -0)

...and 80 more files

📄 Description

Summary by cubic

Adds a new Expo demo app and docs chat/analytics endpoints, updates the Next.js demo with SSO, and streamlines CI/release workflows and dev setup.

  • New Features

    • Expo demo app with Better Auth client/server, social login, and NativeWind UI.
    • Docs APIs for chat, analytics events/conversations/feedback, support form, and OG defaults.
    • Next.js demo: SSO provider added, small UI fixes, and clearer README/env notes.
  • Refactors

    • CI/Release: bump actions/cache to v4.3.0, pin setup-node, simplify preview/e2e; remove branch protection workflows.
    • Docker: add separate Postgres services for Kysely/Prisma and MySQL; new volumes.
    • Build/Lint/CSS: update biome rules, Tailwind/global CSS cleanup, remove three.js canvas component.
    • Docs: CONTRIBUTING updated with nvm/corepack notes; README tagline updated.

Written for commit c743a40ac7. Summary will update automatically on new commits.


🔄 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/5713 **Author:** [@XavierGeerinck](https://github.com/XavierGeerinck) **Created:** 11/1/2025 **Status:** ❌ Closed **Base:** `canary` ← **Head:** `feat-team-role` --- ### 📝 Commits (10+) - [`0088c63`](https://github.com/better-auth/better-auth/commit/0088c63e104119bc1fb0008e912926a7dac45682) fix(better-auth): moved email verification check after password check (#4835) - [`15b00db`](https://github.com/better-auth/better-auth/commit/15b00db67964fa98b5555a5ac3dbe0be29006e4f) fix(custom-session): don't overwrite the `Set-Cookie` header (#4388) - [`4510153`](https://github.com/better-auth/better-auth/commit/4510153c83b32f0c4482ca9ab05b9fb06994b98d) fix(email-otp): call reset password callback (#4818) - [`ba147f3`](https://github.com/better-auth/better-auth/commit/ba147f36a4358bbfb893761d2ffd512973ec6a66) chore: release v1.3.18 - [`f8c2df9`](https://github.com/better-auth/better-auth/commit/f8c2df987f871b42c17413e110aa6d03944f5458) chore: merge - [`7ec8bfe`](https://github.com/better-auth/better-auth/commit/7ec8bfe14e5238c415164f7e59e732a7b1911ff2) docs: change banner - [`b635b8e`](https://github.com/better-auth/better-auth/commit/b635b8e474c33cd84b7f9e57fe5234f4156e4fb0) docs: add link to auth.js team announcement - [`633a793`](https://github.com/better-auth/better-auth/commit/633a7930004b7df571ef61bf377c1862f527af8e) fix: `getSession` shouldn't expose `options` and `path` types (#4947) - [`8b61711`](https://github.com/better-auth/better-auth/commit/8b617112b8ff0ece6752cd55bc6a2664234c8c21) chore: move cookie state validation to state helper function - [`bd4bb56`](https://github.com/better-auth/better-auth/commit/bd4bb56914692c3f6fc11438afde038e9f070061) chore: release v1.3.19 ### 📊 Changes **639 files changed** (+37339 additions, -9675 deletions) <details> <summary>View changed files</summary> ➖ `.github/workflows/branch-rules.yml` (+0 -36) 📝 `.github/workflows/ci.yml` (+2 -2) 📝 `.github/workflows/e2e.yml` (+6 -5) ➖ `.github/workflows/main-protect.yml` (+0 -18) 📝 `.github/workflows/preview.yml` (+2 -2) 📝 `.github/workflows/release.yml` (+11 -6) 📝 `CONTRIBUTING.md` (+30 -6) 📝 `README.md` (+1 -1) 📝 `biome.json` (+4 -2) ➕ `demo/expo-example/.env.example` (+7 -0) ➕ `demo/expo-example/.gitignore` (+20 -0) ➕ `demo/expo-example/README.md` (+15 -0) ➕ `demo/expo-example/app.config.ts` (+55 -0) ➕ `demo/expo-example/assets/bg-image.jpeg` (+0 -0) ➕ `demo/expo-example/assets/fonts/SpaceMono-Regular.ttf` (+0 -0) ➕ `demo/expo-example/assets/icon.png` (+0 -0) ➕ `demo/expo-example/assets/images/adaptive-icon.png` (+0 -0) ➕ `demo/expo-example/assets/images/favicon.png` (+0 -0) ➕ `demo/expo-example/assets/images/logo.png` (+0 -0) ➕ `demo/expo-example/assets/images/partial-react-logo.png` (+0 -0) _...and 80 more files_ </details> ### 📄 Description <!-- This is an auto-generated description by cubic. --> ## Summary by cubic Adds a new Expo demo app and docs chat/analytics endpoints, updates the Next.js demo with SSO, and streamlines CI/release workflows and dev setup. - **New Features** - Expo demo app with Better Auth client/server, social login, and NativeWind UI. - Docs APIs for chat, analytics events/conversations/feedback, support form, and OG defaults. - Next.js demo: SSO provider added, small UI fixes, and clearer README/env notes. - **Refactors** - CI/Release: bump actions/cache to v4.3.0, pin setup-node, simplify preview/e2e; remove branch protection workflows. - Docker: add separate Postgres services for Kysely/Prisma and MySQL; new volumes. - Build/Lint/CSS: update biome rules, Tailwind/global CSS cleanup, remove three.js canvas component. - Docs: CONTRIBUTING updated with nvm/corepack notes; README tagline updated. <sup>Written for commit c743a40ac7407298d7c1b5c1fcf1b0e3d4776c30. Summary will update automatically on new commits.</sup> <!-- 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-17 22:39:23 -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#31774