-
Notifications
You must be signed in to change notification settings - Fork 2.3k
[WIP] Support for HTTP/3 (server side) #20017
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| 98e80e8a575aa5cacd0db278a91fc4b34e4721fe |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| c9b6155713d6017a21e71dea3e041c4143facf5c |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| 7ecd8d1de6b3eb7eeb3dcdb1034780826e141f1c |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| 6a3e4398852f926c4b22f381d89dae2388446ae8 | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chain🏁 Script executed: #!/bin/bash
# Fetch the actual SHA-1 from Maven Central for the specified artifact
echo "Fetching SHA-1 from Maven Central..."
curl -s "https://repo1.maven.org/maven2/io/netty/incubator/netty-incubator-codec-native-quic/4.2.7.Final/netty-incubator-codec-native-quic-4.2.7.Final-linux-x86_64.jar.sha1"
echo ""
# Try to find latest versions available
echo "Checking available versions..."
curl -s "https://search.maven.org/solrsearch/select?q=g:io.netty.incubator+AND+a:netty-incubator-codec-native-quic&core=gav&rows=50&wt=json" | jq -r '.response.docs[] | .v' | sort -V | tail -10Repository: opensearch-project/OpenSearch Length of output: 202 🌐 Web query:
💡 Result: Short answer: There is no CVE that specifically names the artifact netty-incubator-codec-native-quic 4.2.7.Final. However, Netty 4.2.7.Final (the 4.2.x release line) includes security fixes — notably it addresses CVE-2025-59419 (SMTP command‑injection) and earlier 4.2.x releases fixed CVE-2025-58056 and CVE-2025-55163. If you rely on any Netty 4.2.x modules (including the incubator/native-quic artifact), use 4.2.7.Final or later to get those fixes. [1][2][3] Sources
🌐 Web query:
💡 Result: The latest released version is 0.0.74.Final (released Aug 18, 2025). [1][2] Sources:
Update netty-incubator-codec-native-quic to the latest version 0.0.74.Final. Version 4.2.7.Final is significantly outdated; the latest released version is 0.0.74.Final (August 2025). While 4.2.7.Final includes security fixes for CVE-2025-59419 and earlier vulnerabilities (CVE-2025-58056, CVE-2025-55163), it should be upgraded to 0.0.74.Final to obtain the most recent security patches and improvements. |
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| c30d746bd588c07bac4ac04abde576c05a3c0a28 |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| f3679a6cc103292931098b1dc835ffb831e27368 |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| c4f177d2a99668c209acc31b8b85df58e9166218 |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| d6a7141d5fab45c8d2f6c646965f2dd53a43b41e |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🏁 Script executed:
Repository: opensearch-project/OpenSearch
Length of output: 202
🌐 Web query:
Netty 4.2.7.Final netty-codec-native-quic netty-codec-classes-quic Maven Central💡 Result:
Sources:
[1] repo1.maven.org — io/netty/netty-codec-native-quic/4.2.7.Final.
[2] repo1.maven.org — io/netty/netty-codec-classes-quic/ (latest published: 4.2.6.Final).
Fix netty-codec-classes-quic version to 4.2.6.Final — artifact unavailable at 4.2.7.Final.
Verification shows that
netty-codec-native-quicis available at version 4.2.7.Final on Maven Central, butnetty-codec-classes-quicis not published at that version. The latest available release ofnetty-codec-classes-quicon Maven Central is 4.2.6.Final. Update line 153 to use version 4.2.6.Final to avoid dependency resolution failures.🤖 Prompt for AI Agents