-
-
Notifications
You must be signed in to change notification settings - Fork 856
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
Ensure JSON representation is compact. #3363 #3367
Conversation
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.
Yep, thx.
@@ -4,6 +4,7 @@ | |||
import pytest | |||
|
|||
import httpx | |||
from httpx._content import encode_json |
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.
I've just noticed this accidentally snuck in a private import.
@BERRADA-Omar would you be up for refactoring these tests?
We can test this against public API using httpx.Request()
. Eg...
data = {...}
req = httpx.Request("POST", "https://www.example.com/", json=data)
assert req.content == ...
assert req.headers = ...
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.
Hello, i'll make the change.
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.
@tomchristie i see that this is already fixed ?
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.
Yes. Thanks, tho.
This broke the test suite on Starlette. ref.: encode/starlette#2773 |
Thanks for the feedback. |
@tomchristie This PR not only adjusts the ASCII representation but also alters the default JSON separators. These changes lead to unnecessary modifications of JSON objects, resulting in altered validation hashes that broke some of our tests. |
* Update pyproject.toml * Update test_server.py: hash is changed because of HTTPX changes: encode/httpx#3367
Thoughts...
|
@tomchristie More detailed CHANGELOG is a "must". While it won’t solve the technical issue, it will simplify the debugging. When moving forward a codebase, tough changes might be necessary, that is obvious. However, providing a grace period for users can ease the process. E.g., you could introduce a warning in the codebase and maintain it for two minor versions before enforcing the update. |
Summary
this PR solves the issues mentionned here #3363
Checklist