Commit 77d0b79
authored
Bumps [tests/perf/s2n-quic](https://github.com/aws/s2n-quic) from
`42fe409` to `e726f08`.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/aws/s2n-quic/commit/e726f0851210ced80b4ddf1239b045c87ebb65ba"><code>e726f08</code></a>
refactor(s2n-quic-dc): disable restart test on MacOS (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2839">#2839</a>)</li>
<li><a
href="https://github.com/aws/s2n-quic/commit/e29ca22b73b3f393c621b29a6222fd15fa957799"><code>e29ca22</code></a>
chore: Clippy stuff (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2879">#2879</a>)</li>
<li><a
href="https://github.com/aws/s2n-quic/commit/1e12360a5f9d4045f7beed5cac0e361939c7350e"><code>1e12360</code></a>
feat(s2n-quic-tests): implement a blocklist for test events (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2872">#2872</a>)</li>
<li><a
href="https://github.com/aws/s2n-quic/commit/c0df4e355deef1b93981f567501283279257cf67"><code>c0df4e3</code></a>
build(deps): bump actions/download-artifact from 5 to 6 (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2873">#2873</a>)</li>
<li><a
href="https://github.com/aws/s2n-quic/commit/93293858f4f587839b79d753dfa6910da9ede3bd"><code>9329385</code></a>
build(deps): bump actions/upload-artifact from 4 to 5 (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2874">#2874</a>)</li>
<li>See full diff in <a
href="https://github.com/aws/s2n-quic/compare/42fe409d68a3644df4b4a02af0196d256b906b0c...e726f0851210ced80b4ddf1239b045c87ebb65ba">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 05dbba2 commit 77d0b79
1 file changed
Lines changed: 1 addition & 1 deletion
- .github/workflows/qns.yml+11-11
- dc/s2n-quic-dc/src/stream/tests/restart.rs+1
- quic/s2n-quic-core/src/event/generated.rs+2-6
- quic/s2n-quic-core/src/frame/ack_elicitation.rs+2-7
- quic/s2n-quic-core/src/packet/short.rs+2-7
- quic/s2n-quic-rustls/src/session.rs+2-7
- quic/s2n-quic-tests/README.md+22-2
- quic/s2n-quic-tests/src/lib.rs+137-18
- quic/s2n-quic-tests/src/tests/blackhole.rs+7-3
- quic/s2n-quic-tests/src/tests/buffer_limit.rs+3-3
- quic/s2n-quic-tests/src/tests/chain.rs+3-3
- quic/s2n-quic-tests/src/tests/client_handshake_confirm.rs+3-3
- quic/s2n-quic-tests/src/tests/connection_limits.rs+5-1
- quic/s2n-quic-tests/src/tests/connection_migration.rs+22-22
- quic/s2n-quic-tests/src/tests/dc.rs+23-7
- quic/s2n-quic-tests/src/tests/deduplicate.rs+13-7
- quic/s2n-quic-tests/src/tests/endpoint_limits.rs+4-4
- quic/s2n-quic-tests/src/tests/exporter.rs+3-3
- quic/s2n-quic-tests/src/tests/fips.rs+3-3
- quic/s2n-quic-tests/src/tests/handshake_cid_rotation.rs+3-3
- quic/s2n-quic-tests/src/tests/initial_rtt.rs+2-2
- quic/s2n-quic-tests/src/tests/interceptor.rs+3-3
- quic/s2n-quic-tests/src/tests/issue_1361.rs+3-3
- quic/s2n-quic-tests/src/tests/issue_1427.rs+3-3
- quic/s2n-quic-tests/src/tests/issue_1464.rs+3-3
- quic/s2n-quic-tests/src/tests/issue_1717.rs+4-3
- quic/s2n-quic-tests/src/tests/issue_954.rs+3-3
- quic/s2n-quic-tests/src/tests/mtls.rs+6-6
- quic/s2n-quic-tests/src/tests/mtu.rs+23-18
- quic/s2n-quic-tests/src/tests/no_tls.rs+3-3
- quic/s2n-quic-tests/src/tests/offload.rs+15-12
- quic/s2n-quic-tests/src/tests/platform_events.rs+3-3
- quic/s2n-quic-tests/src/tests/pto.rs+11-5
- quic/s2n-quic-tests/src/tests/resumption.rs+6-2
- quic/s2n-quic-tests/src/tests/self_test.rs+11-4
- quic/s2n-quic-tests/src/tests/skip_packets.rs+6-6
- quic/s2n-quic-tests/src/tests/slow_tls.rs+3-1
- quic/s2n-quic-tests/src/tests/tls_context.rs+3-3
- quic/s2n-quic-tests/src/tests/zero_length_cid_client_connection_migration.rs+2-2
- quic/s2n-quic-tls/src/callback.rs+4-14
- quic/s2n-quic-transport/src/connection/close_sender.rs+2-7
- quic/s2n-quic-transport/src/sync/flag.rs+2-7
- tools/s2n-events/src/generate_config.rs+2-7
0 commit comments