Skip to content

Commit

Permalink
Bump tests/perf/s2n-quic from 5f88e54 to 9730578 (model-checking#…
Browse files Browse the repository at this point in the history
…3159)

Bumps [tests/perf/s2n-quic](https://github.com/aws/s2n-quic) from
`5f88e54` to `9730578`.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/aws/s2n-quic/commit/9730578c0d562d80bbbe663161b3a5408ed3116c"><code>9730578</code></a>
chore: release 1.37.0 (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2187">#2187</a>)</li>
<li><a
href="https://github.com/aws/s2n-quic/commit/b862ad982859f03d7e45f5d6291f749697a04a0f"><code>b862ad9</code></a>
s2n-quic-dc: initial commit (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2185">#2185</a>)</li>
<li><a
href="https://github.com/aws/s2n-quic/commit/e0f224b848e725f94e7c9050ca1dfec16eb39bd8"><code>e0f224b</code></a>
feat(s2n-quic-core): allow forced PTO transmissions (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2130">#2130</a>)</li>
<li><a
href="https://github.com/aws/s2n-quic/commit/bfb921daed2330c21202d441594a538458a3e5f2"><code>bfb921d</code></a>
feat(s2n-quic-core): Add ability to create an incremental reader
initialized ...</li>
<li><a
href="https://github.com/aws/s2n-quic/commit/23b07e41b6ead9621972cb0687fc3610540f7f77"><code>23b07e4</code></a>
feat(s2n-quic): allow disabling active connection migration support (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2182">#2182</a>)</li>
<li>See full diff in <a
href="https://github.com/aws/s2n-quic/compare/5f88e549821518e71b550faf353a8b9970a29deb...9730578c0d562d80bbbe663161b3a5408ed3116c">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>
  • Loading branch information
dependabot[bot] authored Apr 22, 2024
1 parent 86d5f30 commit 734f681
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/perf/s2n-quic
Submodule s2n-quic updated 97 files
+5 −0 .github/dependabot.yml
+15 −11 .github/workflows/ci.yml
+5 −0 Cargo.toml
+1 −1 common/s2n-codec/Cargo.toml
+36 −0 dc/s2n-quic-dc/Cargo.toml
+28 −0 dc/s2n-quic-dc/benches/Cargo.toml
+7 −0 dc/s2n-quic-dc/benches/benches/bench.rs
+12 −0 dc/s2n-quic-dc/benches/src/crypto.rs
+92 −0 dc/s2n-quic-dc/benches/src/crypto/encrypt.rs
+92 −0 dc/s2n-quic-dc/benches/src/crypto/hkdf.rs
+12 −0 dc/s2n-quic-dc/benches/src/datagram.rs
+203 −0 dc/s2n-quic-dc/benches/src/datagram/recv.rs
+176 −0 dc/s2n-quic-dc/benches/src/datagram/send.rs
+12 −0 dc/s2n-quic-dc/benches/src/lib.rs
+39 −0 dc/s2n-quic-dc/src/allocator.rs
+174 −0 dc/s2n-quic-dc/src/congestion.rs
+14 −0 dc/s2n-quic-dc/src/control.rs
+135 −0 dc/s2n-quic-dc/src/credentials.rs
+17 −0 dc/s2n-quic-dc/src/credentials/testing.rs
+114 −0 dc/s2n-quic-dc/src/crypto.rs
+334 −0 dc/s2n-quic-dc/src/crypto/awslc.rs
+109 −0 dc/s2n-quic-dc/src/crypto/testing.rs
+14 −0 dc/s2n-quic-dc/src/lib.rs
+7 −0 dc/s2n-quic-dc/src/msg.rs
+164 −0 dc/s2n-quic-dc/src/msg/addr.rs
+101 −0 dc/s2n-quic-dc/src/msg/cmsg.rs
+196 −0 dc/s2n-quic-dc/src/msg/recv.rs
+615 −0 dc/s2n-quic-dc/src/msg/send.rs
+71 −0 dc/s2n-quic-dc/src/packet.rs
+69 −0 dc/s2n-quic-dc/src/packet/control.rs
+237 −0 dc/s2n-quic-dc/src/packet/control/decoder.rs
+94 −0 dc/s2n-quic-dc/src/packet/control/encoder.rs
+90 −0 dc/s2n-quic-dc/src/packet/datagram.rs
+280 −0 dc/s2n-quic-dc/src/packet/datagram/decoder.rs
+148 −0 dc/s2n-quic-dc/src/packet/datagram/encoder.rs
+47 −0 dc/s2n-quic-dc/src/packet/reset.rs
+177 −0 dc/s2n-quic-dc/src/packet/secret_control.rs
+91 −0 dc/s2n-quic-dc/src/packet/secret_control/decoder.rs
+29 −0 dc/s2n-quic-dc/src/packet/secret_control/encoder.rs
+95 −0 dc/s2n-quic-dc/src/packet/secret_control/nonce.rs
+62 −0 dc/s2n-quic-dc/src/packet/secret_control/replay_detected.rs
+68 −0 dc/s2n-quic-dc/src/packet/secret_control/request_additional_generation.rs
+69 −0 dc/s2n-quic-dc/src/packet/secret_control/request_shards.rs
+62 −0 dc/s2n-quic-dc/src/packet/secret_control/stale_key.rs
+112 −0 dc/s2n-quic-dc/src/packet/secret_control/unknown_path_secret.rs
+92 −0 dc/s2n-quic-dc/src/packet/stream.rs
+578 −0 dc/s2n-quic-dc/src/packet/stream/decoder.rs
+173 −0 dc/s2n-quic-dc/src/packet/stream/encoder.rs
+166 −0 dc/s2n-quic-dc/src/packet/stream/id.rs
+106 −0 dc/s2n-quic-dc/src/packet/tag.rs
+65 −0 dc/s2n-quic-dc/src/path.rs
+47 −0 dc/s2n-quic-dc/src/path/testing.rs
+147 −0 dc/s2n-quic-dc/src/pool.rs
+8 −0 dc/s2n-quic-dc/src/recovery.rs
+12 −0 dc/s2n-quic-dc/src/stream.rs
+14 −0 dc/s2n-quic-dc/src/stream/packet_map.rs
+30 −0 dc/s2n-quic-dc/src/stream/packet_number.rs
+26 −0 dc/s2n-quic-dc/src/stream/processing.rs
+18 −0 dc/s2n-quic-dc/src/stream/recv.rs
+16 −0 dc/s2n-quic-dc/src/stream/send.rs
+119 −0 dc/s2n-quic-dc/src/stream/send/application.rs
+72 −0 dc/s2n-quic-dc/src/stream/send/error.rs
+18 −0 dc/s2n-quic-dc/src/stream/send/filter.rs
+53 −0 dc/s2n-quic-dc/src/stream/send/flow.rs
+230 −0 dc/s2n-quic-dc/src/stream/send/flow/blocking.rs
+248 −0 dc/s2n-quic-dc/src/stream/send/flow/non_blocking.rs
+69 −0 dc/s2n-quic-dc/src/stream/send/path.rs
+113 −0 dc/s2n-quic-dc/src/stream/send/probes.rs
+2 −0 dc/s2n-quic-dc/src/stream/send/tests.rs
+20 −0 dc/s2n-quic-dc/src/stream/send/transmission.rs
+1,186 −0 dc/s2n-quic-dc/src/stream/send/worker.rs
+158 −0 dc/s2n-quic-dc/src/stream/send/worker/checker.rs
+50 −0 dc/s2n-quic-dc/src/stream/send/worker/probe.rs
+51 −0 dc/s2n-quic-dc/src/stream/send/worker/retransmission.rs
+46 −0 dc/s2n-quic-dc/src/stream/send/worker/transmission.rs
+2 −2 quic/s2n-quic-core/Cargo.toml
+12 −1 quic/s2n-quic-core/src/buffer/reader/incremental.rs
+24 −1 quic/s2n-quic-core/src/connection/limits.rs
+12 −1 quic/s2n-quic-core/src/recovery/pto.rs
+6 −1 quic/s2n-quic-core/src/transport/parameters/mod.rs
+3 −3 quic/s2n-quic-crypto/Cargo.toml
+3 −3 quic/s2n-quic-platform/Cargo.toml
+2 −1 quic/s2n-quic-qns/etc/Dockerfile
+4 −4 quic/s2n-quic-rustls/Cargo.toml
+3 −3 quic/s2n-quic-tls-default/Cargo.toml
+4 −4 quic/s2n-quic-tls/Cargo.toml
+1 −1 quic/s2n-quic-tls/src/tests.rs
+3 −3 quic/s2n-quic-transport/Cargo.toml
+1 −1 quic/s2n-quic-transport/src/connection/connection_impl.rs
+22 −9 quic/s2n-quic-transport/src/path/manager.rs
+1 −2 quic/s2n-quic-transport/src/path/manager/fuzz_target.rs
+9 −0 ...hots/quic__s2n-quic-transport__src__path__manager__tests__events__active_connection_migration_disabled.snap
+117 −11 quic/s2n-quic-transport/src/path/manager/tests.rs
+2 −1 quic/s2n-quic-transport/src/recovery/manager/tests.rs
+10 −10 quic/s2n-quic/Cargo.toml
+1 −1 tools/xdp/ebpf/rust-toolchain.toml
+3 −3 tools/xdp/s2n-quic-xdp/Cargo.toml

0 comments on commit 734f681

Please sign in to comment.