You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
✨ Bug fixes
[nextjs][App Router] searchParams empty on statically generated pages when Draft Mode is enabled (Vercel only) (#448)
searchParams are not expected to be accessible in draftMode (this is a known Next.js issue). By design, preview data should be passed via request headers. To support this, we introduced the client.getPreviewInputs helper method. At the same time, preview data continues to be available via searchParams for backward compatibility. See more details in 'What's New' section of the release notes.
[nextjs] Preview allows users to access pages without proper permissions (#448)(#455)(#456)
App Router & Pages Router: Import and use PreviewMiddleware to gate preview requests. See more details in 'What's New' section of the release notes.
[react] Form component loses interactivity and state between rerenders (#447)