-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
fix: ISR only for GET/HEAD requests #17011
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
teemingc
wants to merge
14
commits into
version-3
Choose a base branch
from
teemingc-fix-vercel-isr-routing
base: version-3
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
6c8df2f
fix(adapter-vercel): bypass ISR for request bodies
teemingc a1027d1
Update test.ts
teemingc 7eb1db4
Update test.ts
teemingc 87b2225
Merge branch 'version-3' into teemingc-fix-vercel-isr-routing
teemingc 2473aba
test(adapter-vercel): label ISR method steps
teemingc 4336904
Merge remote-tracking branch 'origin/version-3' into teemingc-fix-ver…
teemingc 44b6743
format
teemingc 8cebbfa
fix(adapter-vercel): omit unsupported QUERY ISR routing
teemingc 2c2837a
fix(adapter-vercel): restore QUERY ISR bypass
teemingc 322b33d
test(adapter-vercel): cover QUERY beside ISR page
teemingc 1de33f8
Update utils.js
teemingc c2d4921
Merge remote-tracking branch 'origin/version-3' into teemingc-fix-ver…
teemingc a8246e7
test(adapter-vercel): cover QUERY ISR routing
teemingc 82f3690
Update test.ts
teemingc File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| --- | ||
| '@sveltejs/adapter-vercel': patch | ||
| --- | ||
|
|
||
| fix: enable ISR only for `GET` and `HEAD` requests |
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
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
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
11 changes: 11 additions & 0 deletions
11
packages/adapter-vercel/test/apps/basic/src/routes/isr-endpoint/+page.server.ts
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| export const config = { | ||
| isr: { | ||
| expiration: 60 | ||
| } | ||
| }; | ||
|
|
||
| export function load() { | ||
| return { | ||
| rendered_at: Date.now() | ||
| }; | ||
| } |
6 changes: 6 additions & 0 deletions
6
packages/adapter-vercel/test/apps/basic/src/routes/isr-endpoint/+page.svelte
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| <script lang="ts"> | ||
| let { data } = $props(); | ||
| </script> | ||
|
|
||
| <h1>ISR Page with endpoint</h1> | ||
| <p id="rendered-at">{data.rendered_at}</p> |
12 changes: 12 additions & 0 deletions
12
packages/adapter-vercel/test/apps/basic/src/routes/isr-endpoint/+server.ts
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| import type { RequestHandler } from './$types'; | ||
|
|
||
| const respond_with_method: RequestHandler = async ({ request }) => { | ||
| return Response.json({ method: request.method, body: await request.text() }); | ||
| }; | ||
|
|
||
| export const POST = respond_with_method; | ||
| export const PUT = respond_with_method; | ||
| export const PATCH = respond_with_method; | ||
| export const DELETE = respond_with_method; | ||
| export const OPTIONS = respond_with_method; | ||
| export const QUERY = respond_with_method; |
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
10 changes: 9 additions & 1 deletion
10
packages/adapter-vercel/test/apps/basic/src/routes/isr/+page.svelte
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,14 @@ | ||
| <script lang="ts"> | ||
| let { data } = $props(); | ||
| let { data, form } = $props(); | ||
| </script> | ||
|
|
||
| <h1>ISR Page</h1> | ||
| <p id="rendered-at">{data.rendered_at}</p> | ||
|
|
||
| <form method="POST"> | ||
| <button>Submit</button> | ||
| </form> | ||
|
|
||
| {#if form?.success} | ||
| <p id="form-success">success</p> | ||
| {/if} |
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
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
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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We already have specific build-time errors for this if they don't have the same config but we never documented it