-
Notifications
You must be signed in to change notification settings - Fork 2.6k
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(remix-server-runtime): fix invalid character error in cookie serialize #2257
Conversation
465ef9b
to
09be2dd
Compare
Thank you for signing the Contributor License Agreement. Let's get this merged! 🥳 |
@mkrtchian Thanks for letting me know. I did not know that. |
One thing we need to be careful about: I'm not sure if all the JS runtimes we support will have The main other runtimes I'm concerned about at this point are Cloudflare and Deno, both of which we have support for. Polyfilling the environment is totally something we can do, I just want to make sure we have test coverage for both before merging something like this. |
@mjackson Thanks for the follow up.
Does this mean specifically that I should use the alternative code (see core-js) instead of using |
d16d501
to
09be2dd
Compare
I haven't received a reply yet, but I polyfilled |
d81a150
to
b26748a
Compare
🤖 Hello there, We just published version Thanks! |
Fixed a bug that caused an error when cookie serializing data containing non-ascii characters.
Closes #1282
Closes #2255