Commit 7c2c4cb
authored
Bumps [tests/perf/s2n-quic](https://github.com/aws/s2n-quic) from
`32ba87d` to `b8f8cca`.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/aws/s2n-quic/commit/b8f8cca2612490ca54613f4bb2522828d2e42f9f"><code>b8f8cca</code></a>
build(deps): update lru requirement from 0.14 to 0.15 (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2684">#2684</a>)</li>
<li><a
href="https://github.com/aws/s2n-quic/commit/81a237a34997cd165f1ee287bfa150aa83d98e56"><code>81a237a</code></a>
fix(s2n-quic-dc): avoid memory leak in worker waker (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2687">#2687</a>)</li>
<li><a
href="https://github.com/aws/s2n-quic/commit/07e9c38d03a72817ba1a73077ecfbb9611b09ba4"><code>07e9c38</code></a>
feat(s2n-quic-dc): expose inner context on metrics Subscriber (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2685">#2685</a>)</li>
<li><a
href="https://github.com/aws/s2n-quic/commit/2d137682b22f2aebbf508fc349f4fa7b7c5b9d7a"><code>2d13768</code></a>
ci: fix clippy test (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2686">#2686</a>)</li>
<li><a
href="https://github.com/aws/s2n-quic/commit/88ce3f32f59d8df6ce81da34c0ef27817befb87a"><code>88ce3f3</code></a>
doc: fix doc for with_limits methods (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2682">#2682</a>)</li>
<li><a
href="https://github.com/aws/s2n-quic/commit/1e1d8d5ee3a2f116a7926cee93826f4df943cee7"><code>1e1d8d5</code></a>
chore: release v1.60.0 (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2683">#2683</a>)</li>
<li><a
href="https://github.com/aws/s2n-quic/commit/95b59e1d788a5674595f9bb424f835bee5905809"><code>95b59e1</code></a>
fix(s2n-quic-dc): detect truncated streams (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2681">#2681</a>)</li>
<li><a
href="https://github.com/aws/s2n-quic/commit/edf4df0870992ae0813b9fad090159389aee3c95"><code>edf4df0</code></a>
Expose dc::HandshakingPath publicly (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2679">#2679</a>)</li>
<li>See full diff in <a
href="https://github.com/aws/s2n-quic/compare/32ba87d2eb08459ad5ad6e3cf7207cba72c47a49...b8f8cca2612490ca54613f4bb2522828d2e42f9f">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 6bd6afa commit 7c2c4cb
1 file changed
Lines changed: 1 addition & 1 deletion
- common/s2n-codec/Cargo.toml+1-1
- dc/s2n-quic-dc/Cargo.toml+4-5
- dc/s2n-quic-dc/src/event/generated/metrics.rs+8
- dc/s2n-quic-dc/src/path/secret/map.rs+5-3
- dc/s2n-quic-dc/src/path/secret/map/entry.rs+8
- dc/s2n-quic-dc/src/path/secret/map/handshake.rs+65-14
- dc/s2n-quic-dc/src/path/secret/map/peer.rs+6-1
- dc/s2n-quic-dc/src/path/secret/map/state.rs+6-4
- dc/s2n-quic-dc/src/path/secret/map/state/tests.rs+2-2
- dc/s2n-quic-dc/src/path/secret/map/store.rs+3-3
- dc/s2n-quic-dc/src/stream/client/rpc.rs+2-2
- dc/s2n-quic-dc/src/stream/recv/buffer/local.rs+14-1
- dc/s2n-quic-dc/src/stream/recv/buffer/local/test.rs+44
- dc/s2n-quic-dc/src/stream/send/flow/blocking.rs+1-1
- dc/s2n-quic-dc/src/stream/send/flow/non_blocking.rs+1-1
- dc/s2n-quic-dc/src/task/waker/set.rs+2-1
- dc/s2n-quic-dc/src/task/waker/worker.rs+29-70
- quic/s2n-quic-core/Cargo.toml+2-2
- quic/s2n-quic-core/src/buffer/reassembler/tests.rs+2-4
- quic/s2n-quic-core/src/crypto/tls/null.rs+2-2
- quic/s2n-quic-core/src/event/generated/metrics.rs+8
- quic/s2n-quic-core/src/frame/crypto.rs+2-4
- quic/s2n-quic-core/src/frame/stream.rs+3-6
- quic/s2n-quic-core/src/packet/number/map.rs+1-1
- quic/s2n-quic-core/src/packet/number/sliding_window.rs+3-5
- quic/s2n-quic-core/src/path/mtu.rs+1-1
- quic/s2n-quic-core/src/path/mtu/tests.rs+1-2
- quic/s2n-quic-core/src/recovery/pacing/tests.rs+2-12
- quic/s2n-quic-core/src/recovery/rtt_estimator.rs+3-14
- quic/s2n-quic-core/src/sync/cursor.rs+2-2
- quic/s2n-quic-crypto/Cargo.toml+3-3
- quic/s2n-quic-events/src/output/metrics.rs+10
- quic/s2n-quic-platform/Cargo.toml+3-3
- quic/s2n-quic-platform/src/io/turmoil/tests.rs+1-1
- quic/s2n-quic-qns/Cargo.toml+1-1
- quic/s2n-quic-qns/src/tls.rs+1-1
- quic/s2n-quic-qns/src/xdp.rs+1-1
- quic/s2n-quic-rustls/Cargo.toml+4-4
- quic/s2n-quic-tls-default/Cargo.toml+4-4
- quic/s2n-quic-tls/Cargo.toml+4-4
- quic/s2n-quic-transport/Cargo.toml+3-3
- quic/s2n-quic-transport/src/dc/manager.rs+1-2
- quic/s2n-quic-transport/src/path/manager/fuzz_target.rs+1-1
- quic/s2n-quic-transport/src/path/manager/tests.rs+1-1
- quic/s2n-quic-transport/src/stream/manager/tests.rs+9-27
- quic/s2n-quic-transport/src/stream/send_stream/tests.rs+1-1
- quic/s2n-quic-transport/src/stream/testing.rs+2-2
- quic/s2n-quic-transport/src/sync/data_sender.rs+3-5
- quic/s2n-quic/Cargo.toml+9-9
- quic/s2n-quic/src/client/builder.rs+1-1
- quic/s2n-quic/src/server/builder.rs+6-2
- quic/s2n-quic/src/stream/bidirectional.rs+1-1
- quic/s2n-quic/src/tests/deduplicate.rs+1-1
- quic/s2n-quic/src/tests/issue_1717.rs+2-4
- tools/xdp/s2n-quic-xdp/Cargo.toml+3-3
0 commit comments