-
Notifications
You must be signed in to change notification settings - Fork 2.9k
[next] rewrite headers bug fix while rewriting #13229
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
Merged
wyattjoh
merged 4 commits into
main
from
04-07-fix_rewrite_headers_bug_fix_while_rewriting
Apr 7, 2025
Merged
[next] rewrite headers bug fix while rewriting #13229
wyattjoh
merged 4 commits into
main
from
04-07-fix_rewrite_headers_bug_fix_while_rewriting
Apr 7, 2025
Conversation
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
When rewriting, this prevents checking after a non-rewrite operation and instead uses the `continue: true` option to preserve the order of routing operations.
🦋 Changeset detectedLatest commit: ca7d306 The changes in this PR will be included in the next version bump. This PR includes changesets to release 2 packages
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
ijjk
approved these changes
Apr 7, 2025
devjiwonchoi
approved these changes
Apr 7, 2025
Merged
github-merge-queue bot
pushed a commit
that referenced
this pull request
Apr 10, 2025
This PR was opened by the [Changesets release](https://github.com/changesets/action) 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 ## vercel@41.6.0 ### Minor Changes - `vercel dev` will now automatically refresh the `VERCEL_OIDC_TOKEN` environment ([#13226](#13226)) variable and restart the development server before it expires. ### Patch Changes - fix(auth): fix rendering fallback verification link ([#13232](#13232)) - Updated dependencies \[[`b696b2dc8e6a2bb6c9dc1c6ce99cddf375b61559`](b696b2d), [`a640944c6e2c69afab5b7f03080d8363ef4bcf5b`](a640944), [`f0730d4b77f158c75b119544ee8756a609f22fdf`](f0730d4)]: - @vercel/next@4.7.7 ## @vercel/firewall@0.1.7 ### Patch Changes - fix(readme): updated link to documentation about the SDK ([#13210](#13210)) ## @vercel/next@4.7.7 ### Patch Changes - Fix for rewrite headers that ensures that we don't check post-non rewrite operations (like adding headers). ([#13229](#13229)) - [next] ensure app router 404 page is still included in functions when using pages i18n ([#13222](#13222)) - [next] improve error message for "No Next.js version" ([#13239](#13239)) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
QuietCraftsmanship
pushed a commit
to QuietCraftsmanship/Vercel
that referenced
this pull request
Jul 6, 2025
This PR was opened by the [Changesets release](https://github.com/changesets/action) 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 ## vercel@41.6.0 ### Minor Changes - `vercel dev` will now automatically refresh the `VERCEL_OIDC_TOKEN` environment ([#13226](vercel/vercel#13226)) variable and restart the development server before it expires. ### Patch Changes - fix(auth): fix rendering fallback verification link ([#13232](vercel/vercel#13232)) - Updated dependencies \[[`8e1620805349484a3ee7944c4076c5d2c6f19ecc`](vercel/vercel@8e16208), [`134ea04feb1d534c6e6ebba8fdb2c698dc9477cf`](vercel/vercel@134ea04), [`d24262e058ee55fedfd03ab8f8197f840cd9c282`](vercel/vercel@d24262e)]: - @vercel/next@4.7.7 ## @vercel/firewall@0.1.7 ### Patch Changes - fix(readme): updated link to documentation about the SDK ([#13210](vercel/vercel#13210)) ## @vercel/next@4.7.7 ### Patch Changes - Fix for rewrite headers that ensures that we don't check post-non rewrite operations (like adding headers). ([#13229](vercel/vercel#13229)) - [next] ensure app router 404 page is still included in functions when using pages i18n ([#13222](vercel/vercel#13222)) - [next] improve error message for "No Next.js version" ([#13239](vercel/vercel#13239)) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
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.
When rewriting, this prevents checking after a non-rewrite operation and instead uses the
continue: true
option to preserve the order of routing operations.