Commit 6b48392
Bumps [tests/perf/s2n-quic](https://github.com/aws/s2n-quic) from
`8445d10` to `112439c`.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/aws/s2n-quic/commit/112439c8ec55e6fab3b43be609dd2fd8d2c2478f"><code>112439c</code></a>
chore(s2n-quic): v1.71.0 release (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2921">#2921</a>)</li>
<li><a
href="https://github.com/aws/s2n-quic/commit/988fdb02f6597f082e306c2ea4cc4b88b41a03cb"><code>988fdb0</code></a>
feat(s2n-quic-dc): Track de-duplicated handshake requests and support
metrics...</li>
<li><a
href="https://github.com/aws/s2n-quic/commit/242cdd4b83fc4f208e7e5b1ebc97c05ecb7ae4fd"><code>242cdd4</code></a>
feat(s2n-quic-core): add MtuProbingComplete frame (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2919">#2919</a>)</li>
<li><a
href="https://github.com/aws/s2n-quic/commit/7bceb516633c2ab2f381e117e9adc3c4b6137829"><code>7bceb51</code></a>
build(deps): bump actions/upload-artifact from 5 to 6 (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2918">#2918</a>)</li>
<li><a
href="https://github.com/aws/s2n-quic/commit/3ab6996389a08e62448bfb12350df8241bee7b8c"><code>3ab6996</code></a>
build(deps): bump actions/download-artifact from 6 to 7 (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2917">#2917</a>)</li>
<li>See full diff in <a
href="https://github.com/aws/s2n-quic/compare/8445d10281aca17b88f77fe082b52e445c210d8a...112439c8ec55e6fab3b43be609dd2fd8d2c2478f">compare
view</a></li>
</ul>
</details>
<br />
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
</details>
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Zyad Hassan <[email protected]>
1 parent cb96014 commit 6b48392
1 file changed
+1
-1
lines changed- .github/workflows/qns.yml+11-11
- common/s2n-codec/Cargo.toml+1-1
- dc/s2n-quic-dc-metrics/Cargo.toml+1-1
- dc/s2n-quic-dc/Cargo.toml+5-5
- dc/s2n-quic-dc/src/path/secret/map.rs+5-1
- dc/s2n-quic-dc/src/path/secret/map/cleaner.rs+1-1
- dc/s2n-quic-dc/src/path/secret/map/state.rs+15-7
- dc/s2n-quic-dc/src/path/secret/map/store.rs+5-1
- dc/s2n-quic-dc/src/psk/client.rs+13-23
- dc/s2n-quic-dc/src/psk/client/builder.rs-3
- dc/s2n-quic-dc/src/psk/io.rs+82-23
- dc/s2n-quic-dc/src/stream/client/tokio.rs+1-1
- dc/s2n-quic-dc/src/stream/tests/shared_cache.rs+1-2
- dc/s2n-quic-dc/src/testing.rs+1-5
- quic/s2n-quic-core/Cargo.toml+2-2
- quic/s2n-quic-core/events/common.rs+16-1
- quic/s2n-quic-core/events/connection.rs+11
- quic/s2n-quic-core/src/dc/disabled.rs+4
- quic/s2n-quic-core/src/dc/testing.rs+20-3
- quic/s2n-quic-core/src/dc/traits.rs+6
- quic/s2n-quic-core/src/event/generated.rs+164-7
- quic/s2n-quic-core/src/event/generated/metrics.rs+17
- quic/s2n-quic-core/src/event/generated/metrics/aggregate.rs+312-257
- quic/s2n-quic-core/src/event/generated/metrics/probe.rs+80-67
- quic/s2n-quic-core/src/frame/ack_elicitation.rs+1
- quic/s2n-quic-core/src/frame/congestion_controlled.rs+1
- quic/s2n-quic-core/src/frame/mod.rs+1
- quic/s2n-quic-core/src/frame/mtu_probing_complete.rs+142
- quic/s2n-quic-core/src/frame/path_validation.rs+1
- quic/s2n-quic-core/src/frame/snapshots/s2n_quic_core__frame__snapshots__mtu_probing_complete.snap+11
- quic/s2n-quic-core/src/frame/test_samples/mtu_probing_complete.bin
- quic/s2n-quic-core/src/path/mtu.rs+38-4
- quic/s2n-quic-core/src/transport/parameters/mod.rs+46
- quic/s2n-quic-core/src/transport/parameters/snapshots/s2n_quic_core__transport__parameters__tests__ClientTransportParameters__default.snap+1
- quic/s2n-quic-core/src/transport/parameters/snapshots/s2n_quic_core__transport__parameters__tests__ServerTransportParameters__default.snap+1
- quic/s2n-quic-core/src/transport/parameters/snapshots/s2n_quic_core__transport__parameters__tests__load_client_limits.snap+1
- quic/s2n-quic-core/src/transport/parameters/snapshots/s2n_quic_core__transport__parameters__tests__load_server_limits.snap+1
- quic/s2n-quic-core/src/transport/parameters/tests.rs+2
- quic/s2n-quic-crypto/Cargo.toml+3-3
- quic/s2n-quic-platform/Cargo.toml+3-3
- quic/s2n-quic-rustls/Cargo.toml+4-4
- quic/s2n-quic-tests/src/tests/dc.rs+208-4
- quic/s2n-quic-tests/src/tests/snapshots/tests__dc__dc_handshake_self_test__events.snap+260-15
- quic/s2n-quic-tests/src/tests/snapshots/tests__dc__dc_mtls_handshake_self_test__events.snap+260-15
- quic/s2n-quic-tests/src/tests/snapshots/tests__dc__dc_not_secret_control_packet__events.snap+204-38
- quic/s2n-quic-tests/src/tests/snapshots/tests__dc__dc_secret_control_packet__events.snap+204-38
- quic/s2n-quic-tests/src/tests/snapshots/tests__dc__mtu_probing_complete_frame_exchange_test__events.snap+1.1k
- quic/s2n-quic-tests/src/tests/snapshots/tests__dc__mtu_probing_complete_server_only_test__events.snap+895
- quic/s2n-quic-tls-default/Cargo.toml+4-4
- quic/s2n-quic-tls/Cargo.toml+4-4
- quic/s2n-quic-transport/Cargo.toml+3-3
- quic/s2n-quic-transport/src/endpoint/connect.rs+15
- quic/s2n-quic-transport/src/endpoint/initial.rs+6-1
- quic/s2n-quic-transport/src/endpoint/mod.rs+17-3
- quic/s2n-quic-transport/src/space/mod.rs+37-3
- quic/s2n-quic-transport/src/space/session_context.rs+7
- quic/s2n-quic/Cargo.toml+9-9
- quic/s2n-quic/src/client.rs+11
- quic/s2n-quic/src/provider/dc/mtu_confirm.rs+83-26
- tools/xdp/s2n-quic-xdp/Cargo.toml+3-3
0 commit comments