Commit df0ce55
authored
Bumps [tests/perf/s2n-quic](https://github.com/aws/s2n-quic) from
`995f37b` to `5240fd6`.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/aws/s2n-quic/commit/5240fd629267cf640b4d9fa2201fd6d6e37ad5e0"><code>5240fd6</code></a>
internal(s2n-quic-dc): Add Unix domain socket sender/receiver (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2842">#2842</a>)</li>
<li><a
href="https://github.com/aws/s2n-quic/commit/1ac885440611eb86296af40f06525d407d745b30"><code>1ac8854</code></a>
chore(ci): allow triage users to start quic-attack (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2843">#2843</a>)</li>
<li><a
href="https://github.com/aws/s2n-quic/commit/30e7ef727440ec39f665dfae519c9bcab9479d89"><code>30e7ef7</code></a>
chore: fix group in CODEOWNERS (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2848">#2848</a>)</li>
<li><a
href="https://github.com/aws/s2n-quic/commit/1c9ce1762a5f4e0c070abb331485a3081148aaf1"><code>1c9ce17</code></a>
refactor(s2n-quic-rustls): replace deprecated
<code>rustls-pemfile</code> with `rustls-p...</li>
<li><a
href="https://github.com/aws/s2n-quic/commit/0a638202aa40a2bc0d34513b1db8816edf9e95e6"><code>0a63820</code></a>
feat(s2n-quic-dc): Add Unix socket packet encoding/decoding (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2840">#2840</a>)</li>
<li><a
href="https://github.com/aws/s2n-quic/commit/fe9245636f1003a3b560838beb3bc723b0047a40"><code>fe92456</code></a>
chore: s2n-quic 1.67.0 release (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2846">#2846</a>)</li>
<li><a
href="https://github.com/aws/s2n-quic/commit/c07ba7a68a3dfc516ad9ddda77ed1dcb30f1da1b"><code>c07ba7a</code></a>
refactor(s2n-quic-dc): Add trait for TCP WorkerState poll behavior (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2836">#2836</a>)</li>
<li><a
href="https://github.com/aws/s2n-quic/commit/dc37ed60ba2d4471b2d46de069518c4871bcf64c"><code>dc37ed6</code></a>
build(deps): bump aws-actions/configure-aws-credentials from 5.0.0 to
5.1.0 (...</li>
<li>See full diff in <a
href="https://github.com/aws/s2n-quic/compare/995f37b1a7733871c7089f1e2c47b80d2faf19d4...5240fd629267cf640b4d9fa2201fd6d6e37ad5e0">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>
1 parent 737a062 commit df0ce55
1 file changed
+1
-1
lines changed- .github/CODEOWNERS+1-1
- .github/workflows/book.yml+1-1
- .github/workflows/ci.yml+7-7
- .github/workflows/codebuild.yml+3-3
- .github/workflows/qns.yml+4-4
- .github/workflows/release.yml+1-1
- .github/workflows/tshark.yml+1-1
- common/s2n-codec/Cargo.toml+1-1
- dc/s2n-quic-dc/Cargo.toml+6-5
- dc/s2n-quic-dc/src/lib.rs+1
- dc/s2n-quic-dc/src/packet.rs+1
- dc/s2n-quic-dc/src/packet/uds.rs+5
- dc/s2n-quic-dc/src/packet/uds/decoder.rs+202
- dc/s2n-quic-dc/src/packet/uds/encoder.rs+35
- dc/s2n-quic-dc/src/path/secret/schedule.rs+19
- dc/s2n-quic-dc/src/stream/endpoint.rs+30-24
- dc/s2n-quic-dc/src/stream/server/tokio.rs+1
- dc/s2n-quic-dc/src/stream/server/tokio/tcp.rs+15-6
- dc/s2n-quic-dc/src/stream/server/tokio/tcp/worker.rs+109-31
- dc/s2n-quic-dc/src/stream/server/tokio/udp.rs+23
- dc/s2n-quic-dc/src/stream/server/udp.rs+23-1
- dc/s2n-quic-dc/src/stream/testing.rs+9-1
- dc/s2n-quic-dc/src/uds.rs+5
- dc/s2n-quic-dc/src/uds/receiver.rs+163
- dc/s2n-quic-dc/src/uds/sender.rs+82
- examples/rustls-mtls/Cargo.toml+2-1
- examples/rustls-mtls/src/lib.rs+33-2
- quic/s2n-quic-core/Cargo.toml+2-2
- quic/s2n-quic-core/src/dc.rs+47
- quic/s2n-quic-crypto/Cargo.toml+3-3
- quic/s2n-quic-platform/Cargo.toml+3-3
- quic/s2n-quic-rustls/Cargo.toml+6-5
- quic/s2n-quic-rustls/src/certificate.rs+33-2
- 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