Skip to content
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

Release notes for 1.31.1 #5995

Merged
merged 4 commits into from
Nov 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion dependencies.toml
Original file line number Diff line number Diff line change
Expand Up @@ -992,7 +992,10 @@ version.ref = "protobuf-gradle-plugin"
[libraries.protobuf-jackson]
module = "org.curioswitch.curiostack:protobuf-jackson"
version.ref = "protobuf-jackson"
exclusions = "javax.annotation:javax.annotation-api"
exclusions = [
'com.google.protobuf:protobuf-java',
"javax.annotation:javax.annotation-api",
]
javadocs = "https://developers.curioswitch.org/apidocs/java/"

[libraries.reactor-core]
Expand Down
4 changes: 1 addition & 3 deletions grpc/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,7 @@ dependencies {
optionalImplementation libs.grpc.kotlin
optionalImplementation libs.kotlin.coroutines.core

api(libs.protobuf.jackson) {
exclude group: 'com.google.protobuf', module: 'protobuf-java'
}
api libs.protobuf.jackson

testImplementation(libs.gax.grpc) {
exclude group: 'com.google.protobuf', module: 'protobuf-java'
Expand Down
25 changes: 25 additions & 0 deletions site/src/pages/release-notes/1.31.1.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
date: 2024-11-22
---

## 🛠️ Bug fixes

- Fixed a race condition which intermittently prevented <type://RequestLog> from completing. #5981 #5986
- `armeria-grpc` no longer exposes `protobuf-java` 4.x as a compile-time dependency. #5990 #5992

## 📈 Improvements

- Slightly improved performance when <type://AccessLogWriter#disabled()> is used. #5984 #5985

## 🙇 Thank you

<ThankYou usernames={[
'anuraaga',
'ikhoon',
'jrhee17',
'minwoox',
'smax48',
'trask',
'trustin',
'yzfeng2020'
]} />
Loading