-
Notifications
You must be signed in to change notification settings - Fork 2k
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
Fix dollar not correctly handled on URI #2862
Conversation
Deploy preview for insomnia-storybook ready! Built with commit 7caf1a1 |
@reynolek do you know if this will be a breaking change? For example, perhaps there are current use-cases that depend on the $ being encoded. I feel like it's probably fine to do what this PR implements, but I'm not sure. |
I am honestly not sure. I feel like we probably should be encoding all special characters and in the event that they are expected to be non-encoded feels like a bug that it still worked. |
Small news: |
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.
Maybe I don't have the right context, but this seems like a legit bug when I read through the original issue (#2850).
@develohpanda please also take a look
@reynolek can you say more about what you mean by "special characters" in the context we're talking about. It seems like these characters should be allowed through from my reading of things.
Yeah looks like |
Hello everyone, I want only to say that I did some research some time ago and it turned out that usually:
Anyway, I'm not an expert so everyone is welcome to tell me I'm wrong. |
When will it be released? |
@SandGuardian It will come out with our next release. It is currently unscheduled due to a larger body of work that is happening atm, which requires us to do quite a bit of cherry picking and history re-writing to accomplish a release without the new feature (as the new feature isnt ready for release). I wish I could be more specific, but hopefully not too long, we have a lot of great OSS contributions to release, including this one. |
Co-authored-by: Dimitri Mitropoulos <[email protected]> Co-authored-by: Opender Singh <[email protected]>
Added dollar sign on
URL_PATH_CHARACTER_WHITELIST
.I don't know if there is a better place but seems working as expected.
On query parameters dollars it's still escaped as it should be.
Before
After
It closes #2850