-
Notifications
You must be signed in to change notification settings - Fork 193
chore: cleanup git history #2248
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
Conversation
- wgc@0.88.1 - @wundergraph/protographic@0.6.0 - router@0.238.0
- wgc@0.88.2 - @wundergraph/protographic@0.7.0 - router@0.239.0
The OperationKit.unmarshalOperation method checks if non-empty sha256 hash in GraphQLRequestExtensions.PersistedQuery.Sha256Hash is valid. It rejects hex strings that could not be sha256 hash and raises en error that it cannot parse the body. I have decided to do strict validation for SHA-256 hashes. I kept the old behvaiour of not accepting an empty hash value as valid. Tests now deal only with valid hash values. I have changed how we handle errors returned by operationKit.UnmarshalOperation* methods. Now the client will see the error returned by the "UnmarshalOperationFromBody". I added a couple of tests for "UnmarshalOperationFromURL".
- router@0.239.1
- router@0.239.2
- router@0.239.3
When operation names are sent to downstream subgraphs, send them in the
following format:
$operationName__$subgraphName__$fetchID
- router@0.239.4
- wgc@0.88.3 - @wundergraph/cosmo-connect@0.115.1 - controlplane@0.154.1 - @wundergraph/protographic@0.7.1 - @wundergraph/cosmo-shared@0.40.1 - studio@0.122.3
- wgc@0.88.4 - @wundergraph/protographic@0.7.2 - router@0.240.0 - router-plugin@0.3.0
- router@0.240.1 - router-plugin@0.3.1
Implement plans for subscriptions. Represent them the same way as Apollo does:
QueryPlan {
Subscription {
Primary: {
Fetch(service: "messages") {
{
messageInConversation(id: $id) {
id
text
sentTime
}
}
}
},
Rest: {
Fetch(service: "employees") {
{
...
}
}
},
}
}
"Primary" key contains the subscription that is setup to receive messages from subgraph.
"Rest" key contains the queries that willl be executed for each received message by the router.
Printing Query Plans was broken for PubSub subscriptions.
From now on, for this type we return empty Fetch node for "Primary" key.
This allows to print QueryPlanner nodes that would not be included because of directives like "skip", "include".
- wgc@0.89.0 - @wundergraph/protographic@0.8.0 - router@0.240.2
This index does not mean anything to the user, so we better remove it.
- router@0.253.1
- router@0.254.0
- router@0.254.1
|
Important Review skippedAuto reviews are disabled on base/target branches other than the default branch. Please check the settings in the CodeRabbit UI or the You can disable this status message by setting the 🧪 Early access (Sonnet 4.5): enabledWe are currently testing the Sonnet 4.5 model, which is expected to improve code review quality. However, this model may lead to increased noise levels in the review comments. Please disable the early access features if the noise level causes any inconvenience. Note:
Comment |
subgraph-checkerrole (feat: introduce thesubgraph-checkerrole #2198)@coderabbitai summary
Checklist