[fix] handle paths consistently between dev and various production adapters#2171
Merged
Rich-Harris merged 2 commits intomasterfrom Aug 12, 2021
Merged
[fix] handle paths consistently between dev and various production adapters#2171Rich-Harris merged 2 commits intomasterfrom
Rich-Harris merged 2 commits intomasterfrom
Conversation
🦋 Changeset detectedLatest commit: 64087f8 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 |
5 tasks
ecc6080 to
647ebff
Compare
fc6b657 to
ff2ef9b
Compare
35836a0 to
c3d0d41
Compare
Rich-Harris
reviewed
Aug 12, 2021
0e758b9 to
64087f8
Compare
Member
Author
|
Yeah, I think it's the better behavior to return the path as it was received. There are some edge cases that are impossible to handle otherwise. E.g. see this post where Netlify started out giving users the decoded path and had to switch: https://answers.netlify.com/t/bug-fix-url-encoding-preserved-in-function-event/27080. This is also inline with how Express and most other libraries work, so I think it's generally more expected as well |
Member
|
Ah, gotcha. That makes sense |
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.


fixes #2166
dev and
adapter-nodewere passing decoded paths while the other adapters were passing the encoded path sent by the browserThe way to handle the path is to split it on forward slashes and then call
decodeURIComponenton each path component. That allows you to handle edge cases like%2f. Luckily, that's whatbuildis currently doing:kit/packages/kit/src/core/build/index.js
Line 614 in c3ca3fb
Otherwise, we shouldn't touch the path. We should just leave it alone and pass along exactly what we received, which is exactly how Express behaves
Previously there was another bug because we were doing
decodeURIfollowed bydecodeURIComponentwhich would cause each component to be double-decoded. By leaving the path alone we don't run into this issue