Skip to content

Commit 4abc7b7

Browse files
authored
Release notes for 1.34.1 (#6536)
<img width="926" height="517" alt="스크린샷 2025-12-03 오후 3 47 09" src="https://github.com/user-attachments/assets/058a8a93-2061-4968-a10f-559b801db26b" /> <img width="1034" height="890" alt="localhost_8000_release-notes_1 34 1" src="https://github.com/user-attachments/assets/3efb37f9-4000-41b1-b6ff-d583b37db51a" />
1 parent 6d55108 commit 4abc7b7

File tree

2 files changed

+28
-0
lines changed

2 files changed

+28
-0
lines changed

site/src/pages/release-notes/1.34.0.mdx

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,13 +103,24 @@ date: 2025-11-28
103103
.relayStateMaxLength(256) // 👈👈👈 Default is 80
104104
...
105105
```
106+
- **Easier Certificate Chain Testing**: You can now use <type://SignedCertificateExtension> to generate certificate chains. #6519
107+
```java
108+
@Order(1)
109+
@RegisterExtension
110+
static var caCert = new SelfSignedCertificateExtension();
111+
112+
@Order(2)
113+
@RegisterExtension
114+
static var leafCert = new SignedCertificateExtension(caCert);
115+
```
106116

107117
## 📈 Improvements
108118

109119
- Comprehensive improvements to the `armeria-xds` module. #6470 #6469 #6468 #6474 #6475 #6403 #6366 #6461
110120
- Improved logs and metrics for better observability.
111121
- `protoc-gen-validate` is applied for all xDS resources by default.
112122
- Support for Envoy's `RetryPolicy` has been added.
123+
- You may adjust stacktrace generation for <type://CancelledSubscriptionException> using `verboseExceptionSampler`. #6525
113124

114125
## 🛠️ Bug fixes
115126

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
date: 2025-12-03
3+
---
4+
5+
## 🛠️ Bug fixes
6+
7+
- You can now generate self-signed certificates with one or more Subject Alternative Names. #6534
8+
- The `xds` module no longer brings in dependencies with binary incompatibility. #6532
9+
10+
## 🙇 Thank you
11+
12+
<ThankYou usernames={[
13+
'ikhoon',
14+
'jrhee17',
15+
'minwoox',
16+
'trustin'
17+
]} />

0 commit comments

Comments
 (0)