-
Notifications
You must be signed in to change notification settings - Fork 935
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
Add the release note for 1.32.0 #6136
base: main
Are you sure you want to change the base?
Conversation
if ("1.2.3.4".equals(ip.getAddress().getHostAddress())) { | ||
return false; | ||
} | ||
return true; |
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.
Indent?
if ("1.2.3.4".equals(ip.getAddress().getHostAddress())) { | |
return false; | |
} | |
return true; | |
if ("1.2.3.4".equals(ip.getAddress().getHostAddress())) { | |
return false; | |
} | |
return true; |
``` | ||
- **Backoff Builder**: You can now easily create a <type://Backoff> using builder. #5483 #5488 | ||
```java | ||
Backoff backoff2 = |
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.
Backoff backoff2 = | |
Backoff backoff = |
- <type://CircuitBreakerRuleBuilder#onTimeException()> and <Type://RetryRuleBuilder#onTimeoutException()>` | ||
now work when a connection or proxy establishment is timed out. #6107 | ||
- DNS refresh query is executed by the correct executor. #5891 #6092 | ||
- You can now choose whether to use the `json_name` field option when transcoding HTTP/JSON to gRPC messages. #5890 #6082 |
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.
Should we mention this in the breaking changes section as well?
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.
Forgot about that. Updated it. 😉
No description provided.