Skip to content

Commit

Permalink
Add the release note for 1.29.2 (#5798)
Browse files Browse the repository at this point in the history
  • Loading branch information
minwoox authored Jul 10, 2024
1 parent a38bcf9 commit ebb0888
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 3 deletions.
6 changes: 3 additions & 3 deletions site/src/pages/release-notes/1.29.0.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ date: 2024-06-12
MultipartRemovalStrategy.ON_RESPONSE_COMPLETION)
...
```
- The default value is now <type://ON_RESPONSE_COMPLETION`> which removes the temporary files
when the response is completed.
- The default value is now <type://MultipartRemovalStrategy#ON_RESPONSE_COMPLETION> which removes
the temporary files when the response is completed.
- A <type://ClientConnectionTimings> now includes the time spent on the TLS handshake. #3647 #5647
```java
ClientConnectionTimings timings = ...
Expand All @@ -37,7 +37,7 @@ date: 2024-06-12
.build();
```
- You can now easily find both dynamic and static decorators that handle a request
via <type://ServiceRequestContext.findService(Class)>. #5670
via <type://ServiceRequestContext#findService(Class)>. #5670
```java
ServerBuilder sb = ...
sb.decorator(CorsService.builderForAnyOrigin().newDecorator());
Expand Down
22 changes: 22 additions & 0 deletions site/src/pages/release-notes/1.29.2.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
date: 2024-07-10
---

## 🛠️ Bug fixes

- Service binding builder methods now correctly return the self-types. #5797
- The peeled exception is now correctly passed to
<type://GrpcExceptionHandlerFunction#apply(RequestContext,Status,Throwable,Metadata)> method. #5796
- <type://Endpoint> selection calls to the ramping up <type://EndpointSelectionStrategy> succeeds
for <type://XdsEndpointGroup>. #5799
- The meter names in <type://ServerMetrics> no longer conflict with <type://MetricCollectingService>. #5804

## 🙇 Thank you

<ThankYou usernames={[
'ikhoon',
'jrhee17',
'ks-yim',
'minwoox',
'trustin'
]} />

0 comments on commit ebb0888

Please sign in to comment.