Commit bf8fe61
authored
Bumps [tests/perf/s2n-quic](https://github.com/aws/s2n-quic) from
`fa30e8a` to `d2c0794`.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/aws/s2n-quic/commit/d2c07946d50f32a7f005a27a31372aa399af0807"><code>d2c0794</code></a>
feat(s2n-quic-dc): Add metric for improving decrypt performance (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2785">#2785</a>)</li>
<li><a
href="https://github.com/aws/s2n-quic/commit/110a4918838962e302542bc107629a922d26c66e"><code>110a491</code></a>
test(s2n-quic-dc): cap fuzz_test request size if that is too large (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2783">#2783</a>)</li>
<li><a
href="https://github.com/aws/s2n-quic/commit/bb9254829c19b00b046ba6ee5a2eb0147db6cffd"><code>bb92548</code></a>
ci(clippy): create a clippy bot (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2782">#2782</a>)</li>
<li><a
href="https://github.com/aws/s2n-quic/commit/a1e763c1be088efc04c5ce1bfe8d670558048b9f"><code>a1e763c</code></a>
feat(s2n-quic-dc): Track stream write buffer allocations (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2779">#2779</a>)</li>
<li><a
href="https://github.com/aws/s2n-quic/commit/8d7fd3e14956571fc09dbd42f776cb46a23dcbdd"><code>8d7fd3e</code></a>
chore: release v1.64.0 (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2776">#2776</a>)</li>
<li><a
href="https://github.com/aws/s2n-quic/commit/65399087befec84335be226f899c0a281c89dbc1"><code>6539908</code></a>
refactor(s2n-quic-dc): configurable server_name option (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2775">#2775</a>)</li>
<li>See full diff in <a
href="https://github.com/aws/s2n-quic/compare/fa30e8a583979bd52550c1ec07cb3ad517aeb09f...d2c07946d50f32a7f005a27a31372aa399af0807">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] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 46804c5 commit bf8fe61
1 file changed
+1
-1
lines changed- .github/workflows/ci.yml+24-1
- common/s2n-codec/Cargo.toml+1-1
- dc/s2n-quic-dc/Cargo.toml+5-5
- dc/s2n-quic-dc/events/connection.rs+29
- dc/s2n-quic-dc/src/event/generated.rs+256
- dc/s2n-quic-dc/src/event/generated/metrics.rs+38
- dc/s2n-quic-dc/src/event/generated/metrics/aggregate.rs+690-584
- dc/s2n-quic-dc/src/event/generated/metrics/probe.rs+177-153
- dc/s2n-quic-dc/src/psk/client.rs+38-11
- dc/s2n-quic-dc/src/psk/client/builder.rs+3
- dc/s2n-quic-dc/src/psk/io.rs+5-2
- dc/s2n-quic-dc/src/stream/client/tokio.rs+46-14
- dc/s2n-quic-dc/src/stream/recv/shared.rs+1
- dc/s2n-quic-dc/src/stream/recv/state.rs+41-4
- dc/s2n-quic-dc/src/stream/send/application.rs+1
- dc/s2n-quic-dc/src/stream/send/application/state.rs+15-3
- dc/s2n-quic-dc/src/stream/send/buffer.rs+19-6
- dc/s2n-quic-dc/src/stream/send/queue.rs+7-2
- dc/s2n-quic-dc/src/stream/tests/request_response.rs+29-1
- quic/s2n-quic-core/Cargo.toml+2-2
- quic/s2n-quic-core/src/buffer/duplex/interposer.rs+13-1
- 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-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/Cargo.toml+9-9
- tools/xdp/s2n-quic-xdp/Cargo.toml+3-3
0 commit comments