[PR #3435] [CLOSED] Fix/type issue/stripe zod4 #30420

Closed
opened 2026-04-17 21:31:16 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/better-auth/better-auth/pull/3435
Author: @ping-maxwell
Created: 7/17/2025
Status: Closed

Base: mainHead: fix/type-issue/stripe-zod4


📝 Commits (10+)

  • be3face feat(username): Check username availability (#3025)
  • 4e38645 feat: sveltekit cookie helper plugin (#3049)
  • a6a66d9 feat: SSO plugin with OIDC and SAML support (#3185)
  • df987c1 chore: release v1.3.0-beta.1
  • dff5eb6 docs: add installtion guide on sso plugin
  • 002cacb Merge remote-tracking branch 'origin/main' into v1.3
  • 5f76b04 chore: release v1.3.0-beta.2
  • 422e5bf Merge remote-tracking branch 'origin/main' into v1.3
  • bb19306 chore: release v1.3.0-beta.3
  • 0bd7d61 chore: fix pnpm lock file

📊 Changes

145 files changed (+13788 additions, -2106 deletions)

View changed files

📝 demo/nextjs/app/(auth)/two-factor/otp/page.tsx (+4 -4)
📝 docs/app/docs/[[...slug]]/page.tsx (+4 -0)
docs/components/api-method.tsx (+715 -0)
📝 docs/components/builder/social-provider.tsx (+28 -0)
📝 docs/components/endpoint.tsx (+34 -24)
docs/components/generate-apple-jwt.tsx (+232 -0)
📝 docs/components/landing/hero.tsx (+149 -119)
📝 docs/components/side-bar.tsx (+5 -5)
📝 docs/components/sidebar-content.tsx (+59 -3)
📝 docs/content/docs/authentication/apple.mdx (+7 -4)
📝 docs/content/docs/authentication/email-password.mdx (+98 -41)
docs/content/docs/authentication/linear.mdx (+75 -0)
docs/content/docs/authentication/notion.mdx (+82 -0)
📝 docs/content/docs/authentication/other-social-providers.mdx (+0 -32)
docs/content/docs/authentication/slack.mdx (+105 -0)
📝 docs/content/docs/integrations/svelte-kit.mdx (+21 -0)
📝 docs/content/docs/plugins/2fa.mdx (+185 -91)
📝 docs/content/docs/plugins/admin.mdx (+258 -82)
📝 docs/content/docs/plugins/api-key.mdx (+208 -203)
📝 docs/content/docs/plugins/dub.mdx (+9 -3)

...and 80 more files

📄 Description

Summary by cubic

Fixed type issues in the Stripe plugin and updated all Stripe-related code to use Zod v4 for schema validation. This ensures compatibility with the latest Zod version and resolves type errors in the Stripe integration.


🔄 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/3435 **Author:** [@ping-maxwell](https://github.com/ping-maxwell) **Created:** 7/17/2025 **Status:** ❌ Closed **Base:** `main` ← **Head:** `fix/type-issue/stripe-zod4` --- ### 📝 Commits (10+) - [`be3face`](https://github.com/better-auth/better-auth/commit/be3face70cccf2e183e8d3f1c2061b568288c20a) feat(username): Check username availability (#3025) - [`4e38645`](https://github.com/better-auth/better-auth/commit/4e38645b448d972214ee6bcad75b5184ad25b6af) feat: sveltekit cookie helper plugin (#3049) - [`a6a66d9`](https://github.com/better-auth/better-auth/commit/a6a66d9c7ea078b5ce3a9db7a9354b2fff341ee6) feat: SSO plugin with OIDC and SAML support (#3185) - [`df987c1`](https://github.com/better-auth/better-auth/commit/df987c166e70f71188950b12f9785016d61b042c) chore: release v1.3.0-beta.1 - [`dff5eb6`](https://github.com/better-auth/better-auth/commit/dff5eb651bf885ea6504045149d7861b2a506fb8) docs: add installtion guide on sso plugin - [`002cacb`](https://github.com/better-auth/better-auth/commit/002cacbf2ac4276b8926241c4922b468f0ac3911) Merge remote-tracking branch 'origin/main' into v1.3 - [`5f76b04`](https://github.com/better-auth/better-auth/commit/5f76b0416f0cb72a6a238d0aeddbb14af1974163) chore: release v1.3.0-beta.2 - [`422e5bf`](https://github.com/better-auth/better-auth/commit/422e5bf4f5152fd63b0ac75828a51b100d213501) Merge remote-tracking branch 'origin/main' into v1.3 - [`bb19306`](https://github.com/better-auth/better-auth/commit/bb1930623640b808f8218c09e42cf6bbe13c87ea) chore: release v1.3.0-beta.3 - [`0bd7d61`](https://github.com/better-auth/better-auth/commit/0bd7d61a6e998c5bb13927dc8060d231facff8bd) chore: fix pnpm lock file ### 📊 Changes **145 files changed** (+13788 additions, -2106 deletions) <details> <summary>View changed files</summary> 📝 `demo/nextjs/app/(auth)/two-factor/otp/page.tsx` (+4 -4) 📝 `docs/app/docs/[[...slug]]/page.tsx` (+4 -0) ➕ `docs/components/api-method.tsx` (+715 -0) 📝 `docs/components/builder/social-provider.tsx` (+28 -0) 📝 `docs/components/endpoint.tsx` (+34 -24) ➕ `docs/components/generate-apple-jwt.tsx` (+232 -0) 📝 `docs/components/landing/hero.tsx` (+149 -119) 📝 `docs/components/side-bar.tsx` (+5 -5) 📝 `docs/components/sidebar-content.tsx` (+59 -3) 📝 `docs/content/docs/authentication/apple.mdx` (+7 -4) 📝 `docs/content/docs/authentication/email-password.mdx` (+98 -41) ➕ `docs/content/docs/authentication/linear.mdx` (+75 -0) ➕ `docs/content/docs/authentication/notion.mdx` (+82 -0) 📝 `docs/content/docs/authentication/other-social-providers.mdx` (+0 -32) ➕ `docs/content/docs/authentication/slack.mdx` (+105 -0) 📝 `docs/content/docs/integrations/svelte-kit.mdx` (+21 -0) 📝 `docs/content/docs/plugins/2fa.mdx` (+185 -91) 📝 `docs/content/docs/plugins/admin.mdx` (+258 -82) 📝 `docs/content/docs/plugins/api-key.mdx` (+208 -203) 📝 `docs/content/docs/plugins/dub.mdx` (+9 -3) _...and 80 more files_ </details> ### 📄 Description <!-- This is an auto-generated description by cubic. --> ## Summary by cubic Fixed type issues in the Stripe plugin and updated all Stripe-related code to use Zod v4 for schema validation. This ensures compatibility with the latest Zod version and resolves type errors in the Stripe integration. <!-- 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 21:31:16 -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#30420