-
Notifications
You must be signed in to change notification settings - Fork 30k
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
querystring: don't stringify bad surrogate pair #5858
querystring: don't stringify bad surrogate pair #5858
Conversation
LGTM |
1a97620
to
0617099
Compare
LGTM, this behavior makes a lot more sense. |
LGTM. The CI failure looks unrelated. |
LGTM I know this is technically restoring a throw that was there previously, but since this adds the throw back in it's technically a semver-major. How do we want to treat this one? |
@jasnell The backwards incompatibility was not intentional so I would see this as a bug fix and thus not |
Ok, then on that point this should also make it's way into v4 and should likely be noted in the notable changes on the relevant releases. |
Fixes: nodejs#3702 PR-URL: nodejs#5858 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
0617099
to
c169ac6
Compare
@mscdex this is not landing cleanly, would you be able to backport? |
Fixes: nodejs#3702 PR-URL: nodejs#5858 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Notable Changes: deps: - Fix `--gdbjit` for embedders. Backported from v8 upstream. (Ben Noordhuis) #5577 etw: - Correctly display descriptors for ETW events 9 and 23 on the windows platform. (João Reis) #5742 querystring: - Restore throw when attempting to stringify bad surrogate pair. (Brian White) #5858
Notable Changes: deps: - Fix `--gdbjit` for embedders. Backported from v8 upstream. (Ben Noordhuis) #5577 etw: - Correctly display descriptors for ETW events 9 and 23 on the windows platform. (João Reis) #5742 querystring: - Restore throw when attempting to stringify bad surrogate pair. (Brian White) #5858
Pull Request check-list
make -j8 test
(UNIX) orvcbuild test nosign
(Windows) pass withthis change (including linting)?
test (or a benchmark) included?
Affected core subsystem(s)
Description of change
Fixes: #3702