Skip to content

Commit

Permalink
Update QUICHE from c4d62db87 to bf33a4a6f (#37622)
Browse files Browse the repository at this point in the history
Update QUICHE from c4d62db87 to bf33a4a6f
    https://github.com/google/quiche/compare/c4d62db87..bf33a4a6f
    
    ```
$ git log c4d62db87..bf33a4a6f --date=short --no-merges --format="%ad
%al %s"
    
2024-12-11 martinduke Initialize dummy application data in
QuicStreamTest to quiet asan warnings.
2024-12-11 haoyuewang Add streamz to GfeQuicClientSession such that we
can get resumption rate at connection level and early-data rate at
stream level.
    2024-12-10 vasilvv Fix build errors in Chromium.
    2024-12-10 dschinazi Unblock quic_enable_chaos_protection_v2 flag
    2024-12-10 wub No public description
2024-12-10 martinduke Send-side RESET_STREAM_AT frame. Nothing utilizes
the API yet, so not protected.
2024-12-10 quiche-dev Return transport parameters from TlsChloExtractor
2024-12-10 wub Rename 'source_' in QuicSession to
'connection_close_source_'.
    2024-12-10 martinduke MoQT Outgoing ANNOUNCE life cycle.
2024-12-10 wub In QuicDispatcher::CleanUpSession, Only serialize close
packets if connection is self closed, i.e. not closed by peer.
    2024-12-10 quiche-dev Fix include of stddef.h.
2024-12-09 birenroy Extracts out a helper method to determine whether a
chunk extension character is valid.
    2024-12-09 martinduke Outgoing MoQT SUBSCRIBE_ANNOUNCES life cycle.
2024-12-08 danzh Notify a closed non-static stream once it is about to
be destroyed via a new interface QuicStream::OnSoonToBeDestroyed() with
no-op default implementation.
2024-12-06 dschinazi Set a minimum number of chaos protection in new
protector
2024-12-06 vasilvv Switch QuicheMemSlice to a platform-independent
implementation.
2024-12-06 vasilvv Add APIs to read until a specific point in the stream
is reached.
2024-12-05 vasilvv Rewrite MoqtDataParser to only consume one thing at a
time.
2024-12-05 birenroy Moves //third_party/http2:http2_structures_lib to
//third_party/http2/core/.
2024-12-05 birenroy Moves //third_party/http2:http2_constants_lib to
//third_party/http2/core/.
2024-12-04 vasilvv Add test utils to parse control messages and to
extract subscribe details.
    ```

Risk Level: low
Testing: existing tests pass
Docs Changes: N/A
Release Notes: N/A
Platform Specific Features: N/A

---------

Signed-off-by: Dan Zhang <[email protected]>
Co-authored-by: Dan Zhang <[email protected]>
  • Loading branch information
danzh2010 and danzh1989 authored Dec 12, 2024
1 parent ab9ff8e commit da48e79
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions bazel/external/quiche.BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -648,8 +648,8 @@ envoy_cc_library(

envoy_cc_library(
name = "http2_constants_lib",
srcs = ["quiche/http2/http2_constants.cc"],
hdrs = ["quiche/http2/http2_constants.h"],
srcs = ["quiche/http2/core/http2_constants.cc"],
hdrs = ["quiche/http2/core/http2_constants.h"],
copts = quiche_copts,
repository = "@envoy",
deps = [
Expand All @@ -660,8 +660,8 @@ envoy_cc_library(

envoy_cc_library(
name = "http2_structures_lib",
srcs = ["quiche/http2/http2_structures.cc"],
hdrs = ["quiche/http2/http2_structures.h"],
srcs = ["quiche/http2/core/http2_structures.cc"],
hdrs = ["quiche/http2/core/http2_structures.h"],
copts = quiche_copts,
repository = "@envoy",
deps = [
Expand Down
6 changes: 3 additions & 3 deletions bazel/repository_locations.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -1235,12 +1235,12 @@ REPOSITORY_LOCATIONS_SPEC = dict(
project_name = "QUICHE",
project_desc = "QUICHE (QUIC, HTTP/2, Etc) is Google‘s implementation of QUIC and related protocols",
project_url = "https://github.com/google/quiche",
version = "c4d62db878dcc92ebbae9cf5e873b231b7b46868",
sha256 = "dcf290413e7062ac54f59c4b8fda0861059a39ec8c40fb2c3e28d3631ced9cf8",
version = "bf33a4a6f99dff0ff5bc05da8ef4cd0ccf16e210",
sha256 = "17b894393fc0e5e167ffbbfb8d67943cf37ebe9b986a72ed666330008e749ca0",
urls = ["https://github.com/google/quiche/archive/{version}.tar.gz"],
strip_prefix = "quiche-{version}",
use_category = ["controlplane", "dataplane_core"],
release_date = "2024-12-04",
release_date = "2024-12-11",
cpe = "N/A",
license = "BSD-3-Clause",
license_url = "https://github.com/google/quiche/blob/{version}/LICENSE",
Expand Down

0 comments on commit da48e79

Please sign in to comment.