Skip to content

Commit 986cb16

Browse files
authored
Update QUICHE from 190b5ae8e to 3a1960c51 (#43954)
Update QUICHE from 190b5ae8e to 3a1960c51 https://github.com/google/quiche/compare/190b5ae8e..3a1960c51 ``` $ git log 190b5ae8e..3a1960c51 --date=short --no-merges --format="%ad %al %s" 2026-03-13 quiche-dev Deprecate --gfe2_reloadable_flag_reset_content_length_status_when_removing_content_length_header. 2026-03-11 haoyuewang No public description 2026-03-11 dmcardle Add field to BoostIcwHeader proto message: h3_force_enable_quic_bbr_exit_startup_on_loss 2026-03-11 asedeno Fix OSS QUICHE build. 2026-03-11 dmcardle Add field to NetworkParams for updating BBRv1's exit-startup-on-loss behavior 2026-03-11 martinduke Fix fuzz test error. 2026-03-11 vasilvv Refactor how MOQT control messages are parsed, part 1. 2026-03-10 vasilvv Implement MOQ/EBML varint parsing and serialization. ``` Additional changes: -Adding moq_varint build dependency Risk Level: Low Testing: Existing tests pass Docs Changes: N/A Release Notes: N/A Platform Specific Features: N/A --------- Signed-off-by: Rickyp <ricardo.perezper@gmail.com>
1 parent c9160c9 commit 986cb16

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

bazel/deps.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ quiche:
284284
project_name: "QUICHE"
285285
project_desc: "QUICHE (QUIC, HTTP/2, Etc) is Google‘s implementation of QUIC and related protocols"
286286
project_url: "https://github.com/google/quiche"
287-
release_date: "2026-03-10"
287+
release_date: "2026-03-13"
288288
use_category:
289289
- controlplane
290290
- dataplane_core

bazel/external/quiche.BUILD

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5080,10 +5080,12 @@ envoy_cc_library(
50805080
envoy_cc_library(
50815081
name = "quiche_common_lib",
50825082
srcs = [
5083+
"quiche/common/moq_varint.cc",
50835084
"quiche/common/quiche_data_reader.cc",
50845085
"quiche/common/quiche_data_writer.cc",
50855086
],
50865087
hdrs = [
5088+
"quiche/common/moq_varint.h",
50875089
"quiche/common/quiche_data_reader.h",
50885090
"quiche/common/quiche_data_writer.h",
50895091
"quiche/common/quiche_linked_hash_map.h",
@@ -5093,6 +5095,8 @@ envoy_cc_library(
50935095
deps = [
50945096
":quiche_common_endian_lib",
50955097
":quiche_common_platform",
5098+
"@abseil-cpp//absl/base",
5099+
"@abseil-cpp//absl/numeric:bits",
50965100
],
50975101
)
50985102

bazel/repository_locations.bzl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -542,8 +542,8 @@ REPOSITORY_LOCATIONS_SPEC = dict(
542542
urls = ["https://github.com/simdutf/simdutf/releases/download/v{version}/singleheader.zip"],
543543
),
544544
quiche = dict(
545-
version = "190b5ae8e8d3dcdda0fa77f7e34f244bf65c9285",
546-
sha256 = "9907779d5421d8ebff9ae8033790bca41bf25b9e92b898abec7cfc765edf944f",
545+
version = "3a1960c518a0201b1b34384bcc89ea81add484cf",
546+
sha256 = "edc92981797fddf5ff355cba9b83e00b1e0ce180812c5ca0fd139a2120482e0c",
547547
urls = ["https://github.com/google/quiche/archive/{version}.tar.gz"],
548548
strip_prefix = "quiche-{version}",
549549
),

0 commit comments

Comments
 (0)