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

Upgrade reactor-netty-http to fix CVE-2023-34062 #948

Merged
merged 2 commits into from
Nov 17, 2023
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
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## Next release
### Upcoming Breaking Changes
- `--Xworker-pool-size` cli option will be removed in a future release. This option has been replaced with `--vertx-worker-pool-size`.

### Bugs fixed
- Update reactor-netty-http to fix CVE-2023-34062

### Features Added

## 23.11.0
### Upcoming Breaking Changes
- `--Xworker-pool-size` cli option will be removed in a future release. This option has been replaced with `--vertx-worker-pool-size`.
Expand Down
12 changes: 6 additions & 6 deletions gradle/versions.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,6 @@ dependencyManagement {
entry 'azure-security-keyvault-keys'
}
dependency 'com.azure:azure-identity:1.10.4'
dependency 'com.azure:azure-core-http-netty:1.13.9'

dependency 'com.zaxxer:HikariCP:5.0.1'
dependency 'org.postgresql:postgresql:42.5.3'
Expand Down Expand Up @@ -190,12 +189,13 @@ dependencyManagement {
entry 'netty-resolver-dns-native-macos'
}

/* io.projectreactor.netty:reactor-netty-http:1.0.18 // CVE-2022-31684
\--- com.azure:azure-core-http-netty:1.12.0
+--- com.azure:azure-security-keyvault-secrets:4.3.6 (requested com.azure:azure-core-http-netty:1.11.6)
| \--- tech.pegasys.signers.internal:keystorage-azure:2.2.3 (requested com.azure:azure-security-keyvault-secrets:4.4.2)
/* io.projectreactor.netty:reactor-netty-http:1.0.38 -> 1.0.39 // CVE-2023-34062
\--- com.azure:azure-core-http-netty:1.13.10
+--- com.azure:azure-security-keyvault-keys:4.7.1 (requested com.azure:azure-core-http-netty:1.13.9)
+--- com.azure:azure-identity:1.11.0
\--- com.azure:azure-security-keyvault-secrets:4.7.1 (requested com.azure:azure-core-http-netty:1.13.9)
*/
dependency 'io.projectreactor.netty:reactor-netty-http:1.0.26'
dependency 'io.projectreactor.netty:reactor-netty-http:1.0.39'

// manual overriding of commons-net to avoid CVE-2021-37533
/* commons-net:commons-net:3.8.0
Expand Down