-
Notifications
You must be signed in to change notification settings - Fork 275
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
prep release: v1.48.1 #5390
Merged
Merged
prep release: v1.48.1 #5390
Conversation
This file contains 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
This bump actually took place in v1.48.0 via #5269, but we hadn't updated the documentation in the release preparation.
abernix
requested review from
dariuszkuc,
sachindshinde,
goto-bus-stop,
SimonSapin and
a team
as code owners
June 10, 2024 12:41
CI performance tests
|
IvanGoncharov
approved these changes
Jun 10, 2024
bnjjj
requested changes
Jun 10, 2024
abernix
commented
Jun 10, 2024
Co-authored-by: Coenen Benjamin <benjamin.coenen@hotmail.com>
bnjjj
approved these changes
Jun 10, 2024
goto-bus-stop
approved these changes
Jun 10, 2024
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
Improve error message produced when a subgraph response doesn't include an expected
content-type
header value (Issue #5359)To improve a common debugability challenge when a subgraph response doesn't contain an expected
content-type
header value, the error message produced will include additional details about the error.Some examples of the improved error message:
By @IvanGoncharov in #5223
Update
apollo-compiler
for two small improvements (PR #5347)Updated our underlying
apollo-rs
dependency on ourapollo-compiler
crate to bring in two nice improvements:Fix validation performance bug
Adds a cache in fragment spread validation, fixing a situation where validating a query with many fragment spreads against a schema with many interfaces could take multiple seconds to validate.
Remove ariadne byte/char mapping
Generating JSON or CLI reports for apollo-compiler diagnostics used a translation layer between byte offsets and character offsets, which cost some computation and memory proportional to the size of the source text. The latest version of
ariadne
allows us to remove this translation.By @goto-bus-stop in #5347
📃 Configuration
Rename the telemetry selector which obtains the GraphOS operation id (PR #5337)
Renames a misnamed
trace_id
selector introduced in v1.48.0 to the value which it actually represents which is an Apollo GraphOS operation ID, rather than a trace ID. Apologies for the confusion! Unfortunately, we aren't able to produce an Apollo GraphOS trace ID at this time.If you want to access this operation ID selector, here is an example of how to apply it to your tracing spans:
This can be useful for more easily locating the operation in GraphOS' Insights feature and finding applicable traces in Studio.
By @bnjjj in #5337