Skip to content

Commit

Permalink
address comments by @minwoox
Browse files Browse the repository at this point in the history
  • Loading branch information
jrhee17 committed Nov 11, 2024
1 parent 3ddae6c commit 9b107c4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions site/src/pages/release-notes/1.31.0.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ date: 2024-11-13

## 🌟 New features

- You can now set TLS configurations dynamically using `TlsProvider` #5033 #5228
- You can now set TLS configurations dynamically using <type://TlsProvider> #5033 #5228
- You can create a <type://TlsProvider> which specifies <type://TlsKeyPair> dynamically.
```java
// return a TlsKeyPair for host patterns
Expand Down Expand Up @@ -33,7 +33,7 @@ date: 2024-11-13
```java
ServiceRequestContext ctx = ...;
String rawPath = ctx.rawPath();
```
```
- More static factory methods are added for <type://ResponseEntity>. #5954
```java
ResponseEntity<Object> response = ResponseEntity.of(200);
Expand All @@ -57,7 +57,7 @@ a [Nacos](https://nacos.io/) registry server. #5365 #5409
NacosUpdatingListener.builder(nacosUri, "my-service")
...
.build());
```
```
- Use <type://NacosEndpointGroup> for clients:
```java
EndpointGroup group = NacosEndpointGroup.of(nacosUri, "my-service");
Expand All @@ -67,7 +67,7 @@ a [Nacos](https://nacos.io/) registry server. #5365 #5409
## 📈 Improvements

- The GraalVM native image metadata has been updated to reflect recent code changes. #5946
- <type://XdsEndpointGroup> now supports `disable_active_health_check` #5879
- <type://XdsEndpointGroup> now supports `disable_active_health_check`. #5879

## 🛠️ Bug fixes

Expand Down

0 comments on commit 9b107c4

Please sign in to comment.