Skip to content

Commit

Permalink
Update QUICHE from c5d1ed730 to 134dcbea6 (envoyproxy#34801)
Browse files Browse the repository at this point in the history
Update QUICHE from c5d1ed730 to 134dcbea6
https://github.com/google/quiche/compare/c5d1ed730..134dcbea6

```
$ git log c5d1ed730..134dcbea6 --date=short --no-merges --format="%ad %al %s"

2024-06-17 martinduke Fix uninitialized pointer in CLI for moqt chat client.
2024-06-17 bnc Add Balsa tests documenting \r detection behavior.
2024-06-17 martinduke Fix scope of SubscribeWindow argument to fix ASAN error.
2024-06-17 quiche-dev Enabling rolled out flags.
2024-06-15 martinduke Add Object Status to MoQT Object Messages.
2024-06-14 wub Move PacketCollector from `quic_dispatcher.cc` to `quic_buffered_packet_store.h`.
2024-06-14 martinduke MoQT tracking of largest object ID in each group.
2024-06-14 martinduke Send MoQT SUBSCRIBE_DONE when all objects are delivered. Tracks objects published and not yet published separately.
2024-06-13 wub Refactor QuicBufferedPacketStore::EnqueuePacket to take a ReceivedPacketInfo instead of pieces of information from ReceivedPacketInfo.
2024-06-13 wub Enhance the QUIC connection close details when peer address changed before handshake is confirmed, by adding the peer addresses before and after the change.
2024-06-12 quiche-dev Refactor quic's RawPacketComposer to share more code for CMSG with GfeQuicGsoBatchWriter using the QuicMsgHdr class.
2024-06-12 birenroy Fixes handling for DATA frames with padding in combination with Content-Length.
2024-06-12 birenroy Adds test cases for OgHttp2Adapter as a client receiving a response with Content-Length and padding.
2024-06-12 vasilvv Fix MSAN failures in MoQT integration tests.
2024-06-11 vasilvv Implement a very basic MoQT simulator.
2024-06-11 vasilvv Split MoQT simulated endpoints into a separate header file.
2024-06-11 quiche-dev Add `GeoHint` to `BlindSignToken`.
2024-06-11 bnc Set `header_decoding_delay_` before calling methods.
2024-06-10 ericorth No public description
2024-06-10 martinduke Update MoQT to draft-04
2024-06-07 wub Split `QuicConnectionTracer` into two interfaces: - A `QuicPlatformConnectionContext` interface that get notified when a `QuicConnection` becomes active or inactive. - A new smaller `QuicConnectionTracer` that only contains PrintXXX methods.
2024-06-06 dschinazi Disable capsule parsing for failed requests
2024-06-05 quiche-dev Introduce new QUICHE_PROTOCOL_FLAG of type uint32_t
2024-06-04 danzh Limit the number of port migrations a QUIC client will attempt upon path degrading signals. This is to prevent the client from migrating port too frequently, which may cause port exhaustion.
```

Signed-off-by: Biren Roy <[email protected]>
birenroy authored Jun 20, 2024
1 parent 7d30f30 commit d882137
Showing 2 changed files with 5 additions and 7 deletions.
6 changes: 3 additions & 3 deletions bazel/repository_locations.bzl
Original file line number Diff line number Diff line change
@@ -1191,12 +1191,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 = "c5d1ed730f6062c6647aebe130d78f088028e52f",
sha256 = "d4d61c3189d989d7e51323823ce6f9de6970a09803624e80283e9f8135c9fe4b",
version = "134dcbea61d892245bb2000553eb88650a0c0541",
sha256 = "89444d8dbe3b8a5b9164c5291fd46aba1c047ed9df5f7a08bed5fece857f5aaf",
urls = ["https://github.com/google/quiche/archive/{version}.tar.gz"],
strip_prefix = "quiche-{version}",
use_category = ["controlplane", "dataplane_core"],
release_date = "2024-06-04",
release_date = "2024-06-17",
cpe = "N/A",
license = "BSD-3-Clause",
license_url = "https://github.com/google/quiche/blob/{version}/LICENSE",
6 changes: 2 additions & 4 deletions mobile/test/cc/unit/fetch_client_test.cc
Original file line number Diff line number Diff line change
@@ -13,14 +13,12 @@ namespace {
// to do so.
TEST(FetchClientTest, Http2) {
Envoy::Fetch client;
// TODO(fredyw): Connecting to www.google.com is currently broken with oghttp2.
ASSERT_EQ(client.fetch({"https://www.example.com/"}), ENVOY_SUCCESS);
ASSERT_EQ(client.fetch({"https://www.google.com/"}), ENVOY_SUCCESS);
}

TEST(FetchClientTest, Http3) {
Envoy::Fetch client;
// TODO(fredyw): Connecting to www.google.com is currently broken with oghttp2.
ASSERT_EQ(client.fetch({"https://www.example.com/"}, {"www.example.com"}), ENVOY_SUCCESS);
ASSERT_EQ(client.fetch({"https://www.google.com/"}, {"www.google.com"}), ENVOY_SUCCESS);
}

} // namespace

0 comments on commit d882137

Please sign in to comment.