-
Notifications
You must be signed in to change notification settings - Fork 89
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
[WIP] Add HTTP/3 columns #204
base: master
Are you sure you want to change the base?
Conversation
index.html
Outdated
@@ -440,6 +463,7 @@ <h3 id="cdn-paas"><a href="#cdn-paas">CDN & PaaS performance</a></h3> | |||
<td class="ok">yes</td> | |||
<td class="ok">yes</td> | |||
<td class="ok"><a href="https://blog.cloudflare.com/introducing-http2/">yes</a></td> | |||
<td class="ok"><a href="https://blog.cloudflare.com/http3-the-past-present-and-future/">no</a></td> |
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.
<td class="ok"><a href="https://blog.cloudflare.com/http3-the-past-present-and-future/">no</a></td> | |
<td class="ok"><a href="https://blog.cloudflare.com/http3-the-past-present-and-future/">yes</a></td> |
:)
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.
I put no because we don't support the yet-to-be-published RFC version of HTTP/3. However, the class should be alert
not ok
, which I just fixed up.
Add an HTTP/3 column to server and CDN/PaaS tables. In the interest of simplicity, this column reflects support for the final RFC version of HTTP/3. Since the IETF are yet to publish this version, all entries begin with the value of "no". Over time, we'll populate cells and amend this commit. Sensible thresholds might include HTTP/3 support merged into server mainline codebase (or module equivalents) and CDN/PaaS betas that have public announcements.
👍 Thinking out loud: we could note the QUIC version supported by some platforms but set level to alert, to indicate that this is a transitionary state. WDYT? |
Apologies for dropping the ball on this one. 2 years on, since RFC 9000 is published now and most implementations are moving to support HTTP/3 with QUIC v1, I think we can now just focus on that. I'll make some fixups to this PR and will prompt for another review. |
Fixes #203.
Add an HTTP/3 column to server and CDN/PaaS tables.
In the interest of simplicity, this column reflects
support for the final RFC version of HTTP/3. Since
the IETF are yet to publish this version, all entries
begin with the value of "no".
Over time, we'll populate cells and amend this commit.
Sensible thresholds might include HTTP/3 support merged
into server mainline codebase (or module equivalents)
and CDN/PaaS betas that have public announcements.