-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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
GraphQL to terminate the request even if it was active #26934
Conversation
Signed-off-by: Phillip Kruger <[email protected]>
Hmmm, too bad we missed it when reviewing. I'm wondering what I should do:
If we do 2/, we could skip 1/ but we might want to release a 2.10.4.Final with just this fix to have a safe upgrade target for users of 2.10? Other option is to just wait for 2.11.1.Final in a week or so but I don't think it's acceptable. /cc @geoand |
I prefer this solution. |
@geoand so release both 2.10.4.Final and 2.11.1.Final? |
Yeah, I think given the severity of this, it's the best thing to do. |
Agreed even if I'm not terribly excited about it :). |
Failing Jobs - Building 08e5c31
Full information is available in the Build summary check run. Failures⚙️ Gradle Tests - JDK 11 Windows #- Failing: integration-tests/gradle
📦 integration-tests/gradle✖
|
Milestone is already set for some of the items: We haven't automatically updated the milestones for these items.
|
if (ctx.getBody() != null) { | ||
return ctx.getBodyAsString(); | ||
if (ctx.body() != null) { | ||
return ctx.body().asString(); |
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.
Next time, let's avoid to shoe in this type of change in a security fix as this is not backportable to 2.10.
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 fixed it, no need for additional work on your side)
Fix #26748
(Again)
Thanks @cescoffier for the help :)
Signed-off-by: Phillip Kruger [email protected]