Skip to content

Commit

Permalink
Bump tests/perf/s2n-quic from d90729d to 59ef366 (model-checking#…
Browse files Browse the repository at this point in the history
…3249)

Bumps [tests/perf/s2n-quic](https://github.com/aws/s2n-quic) from
`d90729d` to `59ef366`.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/aws/s2n-quic/commit/59ef366af76edfb4f89bd39137865db2a1ad041d"><code>59ef366</code></a>
chore: release 1.38.1 (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2231">#2231</a>)</li>
<li><a
href="https://github.com/aws/s2n-quic/commit/8c2a5b93cb6677fce3a53ad52dd971d3f94a1ced"><code>8c2a5b9</code></a>
chore: release 1.38.0 (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2230">#2230</a>)</li>
<li><a
href="https://github.com/aws/s2n-quic/commit/20977ee5fe2593f7e019373555fe362f00d4ce33"><code>20977ee</code></a>
feat(s2n-quic): allow application to configure the
anti_amplification_multipl...</li>
<li><a
href="https://github.com/aws/s2n-quic/commit/79e5d8e879f2d6dbe6250b2055e86bb508a9e7ab"><code>79e5d8e</code></a>
feat(s2n-quic): expose configuration options for congestion control (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2228">#2228</a>)</li>
<li>See full diff in <a
href="https://github.com/aws/s2n-quic/compare/d90729de3f6d1fdc76ddff734591cfc2d8e61e80...59ef366af76edfb4f89bd39137865db2a1ad041d">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 Jun 10, 2024
1 parent 7fd6546 commit e7d1624
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/perf/s2n-quic
Submodule s2n-quic updated 31 files
+1 −1 common/s2n-codec/Cargo.toml
+4 −4 dc/s2n-quic-dc/Cargo.toml
+1 −1 dc/s2n-quic-dc/src/congestion.rs
+4 −2 quic/s2n-quic-core/Cargo.toml
+26 −0 quic/s2n-quic-core/src/connection/limits.rs
+149 −28 quic/s2n-quic-core/src/recovery/bbr.rs
+2 −2 quic/s2n-quic-core/src/recovery/bbr/drain.rs
+44 −8 quic/s2n-quic-core/src/recovery/bbr/full_pipe.rs
+19 −12 quic/s2n-quic-core/src/recovery/bbr/pacing.rs
+53 −17 quic/s2n-quic-core/src/recovery/bbr/probe_bw.rs
+9 −6 quic/s2n-quic-core/src/recovery/bbr/probe_rtt.rs
+5 −4 quic/s2n-quic-core/src/recovery/bbr/startup.rs
+148 −45 quic/s2n-quic-core/src/recovery/bbr/tests.rs
+8 −2 quic/s2n-quic-core/src/recovery/congestion_controller/fuzz_target.rs
+52 −8 quic/s2n-quic-core/src/recovery/cubic.rs
+62 −34 quic/s2n-quic-core/src/recovery/cubic/tests.rs
+5 −5 quic/s2n-quic-core/src/recovery/simulation.rs
+3 −3 quic/s2n-quic-crypto/Cargo.toml
+3 −3 quic/s2n-quic-platform/Cargo.toml
+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
+3 −3 quic/s2n-quic-transport/Cargo.toml
+1 −0 quic/s2n-quic-transport/src/connection/connection_impl.rs
+1 −0 quic/s2n-quic-transport/src/path/manager.rs
+19 −0 quic/s2n-quic-transport/src/path/manager/tests.rs
+42 −4 quic/s2n-quic-transport/src/path/mod.rs
+10 −1 quic/s2n-quic-transport/src/recovery/manager/tests.rs
+12 −10 quic/s2n-quic/Cargo.toml
+2 −0 quic/s2n-quic/src/provider/congestion_controller.rs
+3 −3 tools/xdp/s2n-quic-xdp/Cargo.toml

0 comments on commit e7d1624

Please sign in to comment.