Version Packages - #814
Merged
Merged
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
borisno2
enabled auto-merge (squash)
July 24, 2026 23:00
Contributor
Author
Coverage Report for Core Package Coverage (./packages/core)
File CoverageNo changed files found. |
Contributor
Author
Coverage Report for UI Package Coverage (./packages/ui)
File CoverageNo changed files found. |
Contributor
Author
Coverage Report for CLI Package Coverage (./packages/cli)
File CoverageNo changed files found. |
Contributor
Author
Coverage Report for Auth Package Coverage (./packages/auth)
File CoverageNo changed files found. |
Contributor
Author
Coverage Report for Storage Package Coverage (./packages/storage)
File CoverageNo changed files found. |
Contributor
Author
Coverage Report for RAG Package Coverage (./packages/rag)
File CoverageNo changed files found. |
Contributor
Author
Coverage Report for Storage S3 Package Coverage (./packages/storage-s3)
File CoverageNo changed files found. |
Contributor
Author
Coverage Report for Storage Vercel Package Coverage (./packages/storage-vercel)
File CoverageNo changed files found. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
@opensaas/stack-auth@0.32.0
Minor Changes
#813
5a6198cThanks @borisno2! - Auth forms now submit through app-owned server actions instead of the browserauthClientThe pre-built auth forms (
SignInForm,SignUpForm,ForgotPasswordForm, and the newResetPasswordForm) no longer take anauthClientprop that calls/api/auth/*from thebrowser. Instead each form takes server action props —
'use server'functions the appdefines against its own
authinstance. This keeps the auth network surface server-side andmatches the app's existing
lib/actions/*convention.createAuthnow auto-addsbetter-auth's
nextCookiesplugin, so the session cookie set inside a server action persists.See ADR-0020.
The package exports the action contract types (
AuthActionResult,SignInInput,SignUpInput,RequestPasswordResetInput,ResetPasswordInput, and the action aliases).createClientis unchanged for client-side session reading (useSession).Migration — define the actions in your app and pass them to the forms:
Social sign-in becomes a redirecting server action passed as
signInSocialAction. The CLIfeature-generator now scaffolds
lib/actions/auth.tsand areset-passwordpage, and nolonger emits
lib/auth-client.ts.@opensaas/stack-cli@0.32.0
Minor Changes
#813
5a6198cThanks @borisno2! - Auth forms now submit through app-owned server actions instead of the browserauthClientThe pre-built auth forms (
SignInForm,SignUpForm,ForgotPasswordForm, and the newResetPasswordForm) no longer take anauthClientprop that calls/api/auth/*from thebrowser. Instead each form takes server action props —
'use server'functions the appdefines against its own
authinstance. This keeps the auth network surface server-side andmatches the app's existing
lib/actions/*convention.createAuthnow auto-addsbetter-auth's
nextCookiesplugin, so the session cookie set inside a server action persists.See ADR-0020.
The package exports the action contract types (
AuthActionResult,SignInInput,SignUpInput,RequestPasswordResetInput,ResetPasswordInput, and the action aliases).createClientis unchanged for client-side session reading (useSession).Migration — define the actions in your app and pass them to the forms:
Social sign-in becomes a redirecting server action passed as
signInSocialAction. The CLIfeature-generator now scaffolds
lib/actions/auth.tsand areset-passwordpage, and nolonger emits
lib/auth-client.ts.Patch Changes
@opensaas/stack-core@0.32.0
@opensaas/stack-rag@0.32.0
@opensaas/stack-storage@0.32.0
@opensaas/stack-storage-s3@0.32.0
@opensaas/stack-storage-vercel@0.32.0
@opensaas/stack-tiptap@0.32.0
@opensaas/stack-ui@0.32.0