Skip to content

Commit

Permalink
Bump tests/perf/s2n-quic from 4c3ba69 to c84ba19 (#3736)
Browse files Browse the repository at this point in the history
Bumps [tests/perf/s2n-quic](https://github.com/aws/s2n-quic) from
`4c3ba69` to `c84ba19`.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/aws/s2n-quic/commit/c84ba19d2688b7026a23027553f684ad3b10552f"><code>c84ba19</code></a>
feat(s2n-quic-dc): implement cache events (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2386">#2386</a>)</li>
<li><a
href="https://github.com/aws/s2n-quic/commit/23df2c5d30919a5dc665ac1317c7d7539fe4acce"><code>23df2c5</code></a>
chore: release 1.51.0 (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2384">#2384</a>)</li>
<li><a
href="https://github.com/aws/s2n-quic/commit/d8fe405a7f10203bb9834e5c2c9ab7c12f0ce872"><code>d8fe405</code></a>
feat(s2n-quic): improve local handshake failure visibility (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2383">#2383</a>)</li>
<li><a
href="https://github.com/aws/s2n-quic/commit/c0758305e8609718f2973c6c0591990d42f58fa0"><code>c075830</code></a>
feat(s2n-quic-dc): metric for forward gaps in key ID tracking (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2382">#2382</a>)</li>
<li><a
href="https://github.com/aws/s2n-quic/commit/6c3874efd6fbce84e813172e08ce8fbb466663e6"><code>6c3874e</code></a>
test(s2n-quic-dc): add send tests and benchmarks (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2380">#2380</a>)</li>
<li><a
href="https://github.com/aws/s2n-quic/commit/59aef1f2973123d09fb4576bf01434274f975314"><code>59aef1f</code></a>
feat(s2n-quic-dc): record gap for accepted packets (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2381">#2381</a>)</li>
<li><a
href="https://github.com/aws/s2n-quic/commit/02ed7da084d6d87758cecee3ef139e1322e0717f"><code>02ed7da</code></a>
feat(s2n-quic-dc): add acceptor events (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2379">#2379</a>)</li>
<li>See full diff in <a
href="https://github.com/aws/s2n-quic/compare/4c3ba69e3d71d0a2d7aaf58a4be3dd3c6bceb96b...c84ba19d2688b7026a23027553f684ad3b10552f">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>
  • Loading branch information
dependabot[bot] authored Nov 25, 2024
1 parent 19adf79 commit 5b338c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/perf/s2n-quic
Submodule s2n-quic updated 61 files
+3 −3 .github/workflows/ci.yml
+1 −1 common/s2n-codec/Cargo.toml
+16 −0 dc/s2n-quic-dc-benches/Cargo.toml
+1 −1 dc/s2n-quic-dc-benches/benches/bench.rs
+0 −0 dc/s2n-quic-dc-benches/src/crypto.rs
+2 −12 dc/s2n-quic-dc-benches/src/crypto/encrypt.rs
+3 −3 dc/s2n-quic-dc-benches/src/crypto/hkdf.rs
+1 −1 dc/s2n-quic-dc-benches/src/crypto/hmac.rs
+0 −0 dc/s2n-quic-dc-benches/src/datagram.rs
+0 −0 dc/s2n-quic-dc-benches/src/datagram/recv.rs
+0 −0 dc/s2n-quic-dc-benches/src/datagram/send.rs
+2 −0 dc/s2n-quic-dc-benches/src/lib.rs
+95 −0 dc/s2n-quic-dc-benches/src/streams.rs
+7 −5 dc/s2n-quic-dc/Cargo.toml
+0 −28 dc/s2n-quic-dc/benches/Cargo.toml
+361 −0 dc/s2n-quic-dc/events/acceptor.rs
+51 −2 dc/s2n-quic-dc/events/map.rs
+17 −0 dc/s2n-quic-dc/src/event.rs
+3,307 −237 dc/s2n-quic-dc/src/event/generated.rs
+1,030 −244 dc/s2n-quic-dc/src/event/generated/metrics/aggregate.rs
+256 −61 dc/s2n-quic-dc/src/event/generated/metrics/probe.rs
+16 −22 dc/s2n-quic-dc/src/path/secret/map.rs
+2 −2 dc/s2n-quic-dc/src/path/secret/map/event_tests.rs
+37 −0 dc/s2n-quic-dc/src/path/secret/map/peer.rs
+56 −6 dc/s2n-quic-dc/src/path/secret/map/state.rs
+1 −1 dc/s2n-quic-dc/src/path/secret/map/state/tests.rs
+10 −4 dc/s2n-quic-dc/src/path/secret/map/store.rs
+28 −0 dc/s2n-quic-dc/src/path/secret/map/testing.rs
+3 −0 dc/s2n-quic-dc/src/stream.rs
+66 −8 dc/s2n-quic-dc/src/stream/application.rs
+11 −34 dc/s2n-quic-dc/src/stream/client/tokio.rs
+8 −16 dc/s2n-quic-dc/src/stream/endpoint.rs
+261 −0 dc/s2n-quic-dc/src/stream/send/tests.rs
+3 −0 dc/s2n-quic-dc/src/stream/server.rs
+47 −20 dc/s2n-quic-dc/src/stream/server/tokio/accept.rs
+22 −1 dc/s2n-quic-dc/src/stream/server/tokio/stats.rs
+301 −98 dc/s2n-quic-dc/src/stream/server/tokio/tcp.rs
+104 −22 dc/s2n-quic-dc/src/stream/server/tokio/udp.rs
+258 −0 dc/s2n-quic-dc/src/stream/testing.rs
+7 −1 dc/s2n-quic-dc/src/testing.rs
+2 −2 quic/s2n-quic-core/Cargo.toml
+8 −0 quic/s2n-quic-core/src/event.rs
+399 −266 quic/s2n-quic-core/src/event/generated.rs
+26 −7 quic/s2n-quic-core/src/event/metrics/aggregate/info.rs
+2 −0 quic/s2n-quic-core/src/event/metrics/aggregate/metric.rs
+3 −3 quic/s2n-quic-crypto/Cargo.toml
+4 −0 quic/s2n-quic-events/src/main.rs
+2 −2 quic/s2n-quic-events/src/parser.rs
+44 −0 quic/s2n-quic-events/src/validation.rs
+3 −3 quic/s2n-quic-platform/Cargo.toml
+1 −1 quic/s2n-quic-platform/src/io/testing/time.rs
+4 −4 quic/s2n-quic-rustls/Cargo.toml
+4 −4 quic/s2n-quic-tls-default/Cargo.toml
+4 −4 quic/s2n-quic-tls/Cargo.toml
+1 −0 quic/s2n-quic-tls/src/session.rs
+3 −3 quic/s2n-quic-transport/Cargo.toml
+3 −1 quic/s2n-quic-transport/src/connection/connection_impl.rs
+3 −1 quic/s2n-quic-transport/src/space/mod.rs
+11 −9 quic/s2n-quic/Cargo.toml
+9 −2 quic/s2n-quic/src/provider.rs
+3 −3 tools/xdp/s2n-quic-xdp/Cargo.toml

0 comments on commit 5b338c9

Please sign in to comment.