Skip to content

Commit

Permalink
Bump tests/perf/s2n-quic from bd37960 to f5d9d74 (#3196)
Browse files Browse the repository at this point in the history
Bumps [tests/perf/s2n-quic](https://github.com/aws/s2n-quic) from
`bd37960` to `f5d9d74`.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/aws/s2n-quic/commit/f5d9d747805de846181536ecc2c0a6754a98e9ea"><code>f5d9d74</code></a>
build(deps): bump JamesIves/github-pages-deploy-action (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2183">#2183</a>)</li>
<li><a
href="https://github.com/aws/s2n-quic/commit/02a47b7fd4094f1eea7d9bd6f74f34ad9b19ce71"><code>02a47b7</code></a>
feat(s2n-quic): unstable dc provider (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2210">#2210</a>)</li>
<li><a
href="https://github.com/aws/s2n-quic/commit/919ae6aa61f7f276a640bef9dd506ef2e0d13668"><code>919ae6a</code></a>
feat(s2n-quic-tls, s2n-quic-rustls): pass <code>fips</code> flag to tls
backend (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2209">#2209</a>)</li>
<li><a
href="https://github.com/aws/s2n-quic/commit/30ef24c8947b43832492a92828bf9b62f3b55c76"><code>30ef24c</code></a>
feat(s2n-quic-core): add buffer::Deque implemention (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2207">#2207</a>)</li>
<li>See full diff in <a
href="https://github.com/aws/s2n-quic/compare/bd37960965d5bc8ab9990dc400c886a7a83fb57e...f5d9d747805de846181536ecc2c0a6754a98e9ea">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>
Co-authored-by: Zyad Hassan <88045115+zhassan-aws@users.noreply.github.com>
  • Loading branch information
dependabot[bot] and zhassan-aws committed May 20, 2024
1 parent 14fc7b7 commit 1ba6cb2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/perf/s2n-quic
Submodule s2n-quic updated 39 files
+1 −1 .github/workflows/book.yml
+6 −2 .github/workflows/ci.yml
+2 −0 quic/s2n-quic-core/src/buffer.rs
+237 −0 quic/s2n-quic-core/src/buffer/deque.rs
+213 −0 quic/s2n-quic-core/src/buffer/deque/storage.rs
+186 −0 quic/s2n-quic-core/src/buffer/deque/tests.rs
+3 −1 quic/s2n-quic-core/src/buffer/duplex/interposer.rs
+7 −0 quic/s2n-quic-core/src/buffer/reader/storage/chunk.rs
+51 −6 quic/s2n-quic-core/src/buffer/reader/storage/slice.rs
+1 −0 quic/s2n-quic-core/src/buffer/writer/storage.rs
+16 −0 quic/s2n-quic-core/src/buffer/writer/storage/vec_deque.rs
+89 −0 quic/s2n-quic-core/src/dc.rs
+39 −0 quic/s2n-quic-core/src/dc/disabled.rs
+63 −0 quic/s2n-quic-core/src/dc/traits.rs
+1 −0 quic/s2n-quic-core/src/lib.rs
+2 −0 quic/s2n-quic-core/src/slice.rs
+291 −0 quic/s2n-quic-core/src/slice/deque.rs
+283 −0 quic/s2n-quic-core/src/slice/deque/pair.rs
+3 −0 quic/s2n-quic-rustls/Cargo.toml
+5 −1 quic/s2n-quic-rustls/src/cipher_suite.rs
+1 −1 quic/s2n-quic-tls/Cargo.toml
+3 −0 quic/s2n-quic-tls/src/client.rs
+3 −0 quic/s2n-quic-tls/src/server.rs
+5 −0 quic/s2n-quic-transport/src/connection/connection_container/tests.rs
+23 −3 quic/s2n-quic-transport/src/connection/connection_impl.rs
+11 −0 quic/s2n-quic-transport/src/connection/connection_trait.rs
+3 −1 quic/s2n-quic-transport/src/connection/mod.rs
+6 −2 quic/s2n-quic-transport/src/endpoint/config.rs
+3 −0 quic/s2n-quic-transport/src/endpoint/initial.rs
+6 −0 quic/s2n-quic-transport/src/endpoint/mod.rs
+4 −0 quic/s2n-quic-transport/src/space/mod.rs
+3 −0 quic/s2n-quic-transport/src/space/session_context.rs
+3 −0 quic/s2n-quic/Cargo.toml
+8 −0 quic/s2n-quic/src/client/builder.rs
+14 −0 quic/s2n-quic/src/client/providers.rs
+9 −0 quic/s2n-quic/src/provider.rs
+32 −0 quic/s2n-quic/src/provider/dc.rs
+8 −0 quic/s2n-quic/src/server/builder.rs
+14 −0 quic/s2n-quic/src/server/providers.rs

0 comments on commit 1ba6cb2

Please sign in to comment.