Skip to content

Commit

Permalink
Bump tests/perf/s2n-quic from 2d5e891 to 1130df6 (model-checking#…
Browse files Browse the repository at this point in the history
…3135)

Bumps [tests/perf/s2n-quic](https://github.com/aws/s2n-quic) from
`2d5e891` to `1130df6`.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/aws/s2n-quic/commit/1130df6d2c45e0b5345dbcd2b1a6ea2663dac143"><code>1130df6</code></a>
chore: release 1.35.1 (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2175">#2175</a>)</li>
<li><a
href="https://github.com/aws/s2n-quic/commit/5afe1e1762a036720c805d37b5d79908ec3681d7"><code>5afe1e1</code></a>
fix(s2n-quic-rustls): mark re-exported types as deprecated (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2176">#2176</a>)</li>
<li><a
href="https://github.com/aws/s2n-quic/commit/343fa0d3bb543120e8d6714974569755f9e5707e"><code>343fa0d</code></a>
Revert &quot;feat(s2n-quic-rustls): update rustls from 0.21 to 0.23 (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2143">#2143</a>)&quot;
(<a
href="https://redirect.github.com/aws/s2n-quic/issues/2174">#2174</a>)</li>
<li><a
href="https://github.com/aws/s2n-quic/commit/52ec5a2b4ace813baeb66c5c59b8d42b9ff2efd5"><code>52ec5a2</code></a>
chore(s2n-quic): release 1.35.0 (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2171">#2171</a>)</li>
<li><a
href="https://github.com/aws/s2n-quic/commit/b0fd18a250df1dff72bc4c4e6eb4f1ce179eb133"><code>b0fd18a</code></a>
ci: update quic-interop-runner pinned commit (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2172">#2172</a>)</li>
<li><a
href="https://github.com/aws/s2n-quic/commit/527c88fd05f2f357b22121e832fed0ef21978207"><code>527c88f</code></a>
feat(s2n-quic-core): allow configuration of initial MTU and base MTU (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2162">#2162</a>)</li>
<li>See full diff in <a
href="https://github.com/aws/s2n-quic/compare/2d5e891f3fdc8a88b2d457baceedea5751efaa0d...1130df6d2c45e0b5345dbcd2b1a6ea2663dac143">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] committed Apr 8, 2024
1 parent f68db95 commit 7cfc8f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/perf/s2n-quic
Submodule s2n-quic updated 78 files
+6 −0 .github/config/typos.toml
+19 −0 .github/interop/required.json
+102 −102 .github/interop/runner.patch
+1 −1 .github/workflows/qns.yml
+1 −1 common/s2n-codec/Cargo.toml
+1 −1 examples/rustls-mtls/Cargo.toml
+70 −83 examples/rustls-mtls/src/lib.rs
+2 −2 quic/s2n-quic-core/Cargo.toml
+3 −3 quic/s2n-quic-core/src/endpoint/mod.rs
+24 −2 quic/s2n-quic-core/src/event/generated.rs
+7 −7 quic/s2n-quic-core/src/packet/stateless_reset.rs
+2 −90 quic/s2n-quic-core/src/path/mod.rs
+313 −36 quic/s2n-quic-core/src/path/mtu.rs
+95 −0 ...tu/snapshots/quic__s2n-quic-core__src__path__mtu__tests__events__on_packet_loss_initial_mtu_configured.snap
+290 −21 quic/s2n-quic-core/src/path/mtu/tests.rs
+3 −3 quic/s2n-quic-core/src/recovery/bbr/drain.rs
+6 −6 quic/s2n-quic-core/src/recovery/bbr/ecn.rs
+7 −7 quic/s2n-quic-core/src/recovery/bbr/full_pipe.rs
+28 −28 quic/s2n-quic-core/src/recovery/bbr/pacing.rs
+3 −3 quic/s2n-quic-core/src/recovery/bbr/probe_bw.rs
+5 −5 quic/s2n-quic-core/src/recovery/bbr/probe_rtt.rs
+9 −7 quic/s2n-quic-core/src/recovery/bbr/startup.rs
+40 −37 quic/s2n-quic-core/src/recovery/bbr/tests.rs
+3 −3 quic/s2n-quic-core/src/recovery/congestion_controller.rs
+11 −3 quic/s2n-quic-core/src/recovery/congestion_controller/fuzz_target.rs
+53 −25 quic/s2n-quic-core/src/recovery/pacing/tests.rs
+15 −15 quic/s2n-quic-core/src/recovery/simulation.rs
+3 −3 quic/s2n-quic-crypto/Cargo.toml
+2 −0 quic/s2n-quic-events/events/common.rs
+5 −1 quic/s2n-quic-events/events/platform.rs
+3 −3 quic/s2n-quic-platform/Cargo.toml
+25 −11 quic/s2n-quic-platform/src/io/testing.rs
+25 −8 quic/s2n-quic-platform/src/io/tokio.rs
+66 −4 quic/s2n-quic-platform/src/io/tokio/builder.rs
+2 −2 quic/s2n-quic-platform/src/io/tokio/tests.rs
+11 −7 quic/s2n-quic-platform/src/io/turmoil.rs
+4 −3 quic/s2n-quic-platform/src/io/turmoil/builder.rs
+1 −1 quic/s2n-quic-platform/src/io/turmoil/tests.rs
+9 −4 quic/s2n-quic-platform/src/io/xdp.rs
+15 −11 quic/s2n-quic-platform/src/io/xdp/builder.rs
+2 −0 quic/s2n-quic-qns/Cargo.toml
+2 −2 quic/s2n-quic-qns/etc/run_endpoint.sh
+8 −0 quic/s2n-quic-qns/src/io.rs
+21 −54 quic/s2n-quic-qns/src/tls.rs
+6 −6 quic/s2n-quic-rustls/Cargo.toml
+44 −77 quic/s2n-quic-rustls/src/certificate.rs
+7 −19 quic/s2n-quic-rustls/src/cipher_suite.rs
+21 −24 quic/s2n-quic-rustls/src/client.rs
+1 −6 quic/s2n-quic-rustls/src/error.rs
+17 −51 quic/s2n-quic-rustls/src/lib.rs
+34 −25 quic/s2n-quic-rustls/src/server.rs
+6 −7 quic/s2n-quic-rustls/src/session.rs
+3 −3 quic/s2n-quic-tls-default/Cargo.toml
+4 −4 quic/s2n-quic-tls/Cargo.toml
+3 −3 quic/s2n-quic-transport/Cargo.toml
+2 −2 quic/s2n-quic-transport/src/ack/ack_transmission_state.rs
+3 −3 quic/s2n-quic-transport/src/connection/close_sender.rs
+2 −2 quic/s2n-quic-transport/src/connection/connection_container/tests.rs
+4 −4 quic/s2n-quic-transport/src/connection/connection_impl.rs
+2 −2 quic/s2n-quic-transport/src/connection/connection_trait.rs
+4 −4 quic/s2n-quic-transport/src/connection/mod.rs
+24 −24 quic/s2n-quic-transport/src/connection/transmission.rs
+5 −4 quic/s2n-quic-transport/src/endpoint/initial.rs
+11 −10 quic/s2n-quic-transport/src/endpoint/mod.rs
+5 −5 quic/s2n-quic-transport/src/endpoint/packet_buffer.rs
+3 −3 quic/s2n-quic-transport/src/endpoint/retry.rs
+4 −4 quic/s2n-quic-transport/src/endpoint/stateless_reset.rs
+5 −5 quic/s2n-quic-transport/src/endpoint/version.rs
+12 −8 quic/s2n-quic-transport/src/path/manager.rs
+1 −1 quic/s2n-quic-transport/src/path/manager/fuzz_target.rs
+27 −28 quic/s2n-quic-transport/src/path/manager/tests.rs
+16 −16 quic/s2n-quic-transport/src/path/mod.rs
+11 −12 quic/s2n-quic-transport/src/recovery/manager/tests.rs
+1 −1 quic/s2n-quic-transport/src/space/application.rs
+10 −10 quic/s2n-quic/Cargo.toml
+103 −7 quic/s2n-quic/src/tests/mtu.rs
+1 −1 scripts/interop/run
+3 −3 tools/xdp/s2n-quic-xdp/Cargo.toml

0 comments on commit 7cfc8f4

Please sign in to comment.