Commit 8942fc8
authored
Bumps [tests/perf/s2n-quic](https://github.com/aws/s2n-quic) from
`b131854` to `1cca93b`.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/aws/s2n-quic/commit/1cca93bf0b2392781060d1294aa7fde14b747c19"><code>1cca93b</code></a>
fix(s2n-quic-dc): send connection close frames with pruned streams (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2831">#2831</a>)</li>
<li><a
href="https://github.com/aws/s2n-quic/commit/9b89de7f8fb98dbc501fe53784e74b27ca3434a0"><code>9b89de7</code></a>
feat(s2n-events): Add config option to generate C API (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2818">#2818</a>)</li>
<li><a
href="https://github.com/aws/s2n-quic/commit/1a1bb540de068d96b01042934ed794c6497ace6c"><code>1a1bb54</code></a>
opt(s2n-quic-dc): Further tweak TCP acceptor concurrency (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2829">#2829</a>)</li>
<li><a
href="https://github.com/aws/s2n-quic/commit/23ab59e3cc6eede00427a17d9012d97e3cbb2bde"><code>23ab59e</code></a>
fix: Change MTU test setup so it isn't slow (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2828">#2828</a>)</li>
<li><a
href="https://github.com/aws/s2n-quic/commit/afb6ecf4108906f1646c3fd9ce40e99b9fc6d3c0"><code>afb6ecf</code></a>
opt(s2n-quic-dc): clamp TCP server concurrency (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2827">#2827</a>)</li>
<li><a
href="https://github.com/aws/s2n-quic/commit/7faf3d885566ae66c2eec503d4f418d6fdc01ddd"><code>7faf3d8</code></a>
refactor(ci/qns): push move the scheduled qns run to 8 AM (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2825">#2825</a>)</li>
<li><a
href="https://github.com/aws/s2n-quic/commit/3eb3c23e8e2710fc8a2c2031ffbe26c1f3cc8176"><code>3eb3c23</code></a>
refactor(ci): update nightly toolchain version for udeps (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2826">#2826</a>)</li>
<li>See full diff in <a
href="https://github.com/aws/s2n-quic/compare/b13185496c54df2c51e7851bc802b11cd94028b5...1cca93bf0b2392781060d1294aa7fde14b747c19">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>
1 parent 188e837 commit 8942fc8
1 file changed
+1
-1
lines changed- .github/workflows/ci.yml+1-1
- .github/workflows/qns.yml+2-2
- dc/s2n-quic-dc/src/clock.rs+19-8
- dc/s2n-quic-dc/src/packet/control/decoder.rs+7
- dc/s2n-quic-dc/src/packet/stream/decoder.rs+6
- dc/s2n-quic-dc/src/psk/io.rs+10-2
- dc/s2n-quic-dc/src/psk/server/builder.rs+12
- dc/s2n-quic-dc/src/socket/recv/router.rs+14-8
- dc/s2n-quic-dc/src/stream/application.rs+18-1
- dc/s2n-quic-dc/src/stream/endpoint.rs+1-1
- dc/s2n-quic-dc/src/stream/environment/bach.rs+5-2
- dc/s2n-quic-dc/src/stream/recv/application.rs+19-4
- dc/s2n-quic-dc/src/stream/recv/error.rs+15-4
- dc/s2n-quic-dc/src/stream/recv/shared.rs+61-16
- dc/s2n-quic-dc/src/stream/recv/state.rs+89-32
- dc/s2n-quic-dc/src/stream/recv/worker.rs+70-20
- dc/s2n-quic-dc/src/stream/send/application.rs+35-2
- dc/s2n-quic-dc/src/stream/send/error.rs+39-3
- dc/s2n-quic-dc/src/stream/send/shared.rs+9-11
- dc/s2n-quic-dc/src/stream/send/state.rs+73-10
- dc/s2n-quic-dc/src/stream/send/worker.rs+79-51
- dc/s2n-quic-dc/src/stream/server/tokio.rs+30-6
- dc/s2n-quic-dc/src/stream/shared.rs+26
- dc/s2n-quic-dc/src/stream/tests/accept_queue.rs+104-3
- dc/s2n-quic-dc/src/stream/tests/behavior.rs-1
- dc/s2n-quic-dc/src/stream/tests/rpc.rs+1-1
- quic/s2n-quic-core/src/dc/testing.rs+1-1
- quic/s2n-quic-tests/src/tests/mtu.rs+25-2
- tools/event-generator/src/main.rs+2-3
- tools/s2n-events/src/bin/generate_test_events.rs+7-6
- tools/s2n-events/src/generate_config.rs+23-9
- tools/s2n-events/tests/c_ffi_events/event/generated.rs-131
- tools/s2n-events/tests/test_c_ffi_events.rs-2
0 commit comments