Skip to content

Commit

Permalink
Update CRT submodules to latest releases (awslabs#877)
Browse files Browse the repository at this point in the history
Signed-off-by: Alessandro Passaro <[email protected]>
  • Loading branch information
passaro authored May 13, 2024
1 parent bd9b1af commit 50720ab
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion mountpoint-s3-crt-sys/crt/aws-c-auth
2 changes: 1 addition & 1 deletion mountpoint-s3-crt-sys/crt/aws-c-common
2 changes: 1 addition & 1 deletion mountpoint-s3-crt-sys/crt/s2n-tls
Submodule s2n-tls updated 47 files
+40 −3 .github/workflows/ci_rust.yml
+1 −0 .gitignore
+4 −1 CMakeLists.txt
+22 −0 api/s2n.h
+8 −3 bin/Makefile
+116 −0 bin/policy.c
+1 −0 bindings/rust/s2n-tls-sys/templates/Cargo.template
+1 −0 bindings/rust/s2n-tls/Cargo.toml
+1 −1 bindings/rust/s2n-tls/src/connection.rs
+27 −0 bindings/rust/s2n-tls/src/enums.rs
+19 −1 bindings/rust/s2n-tls/src/init.rs
+9 −0 bindings/rust/s2n-tls/src/testing/s2n_tls.rs
+5 −0 codebuild/bin/grep_simple_mistakes.sh
+2 −1 error/s2n_errno.c
+1 −0 error/s2n_errno.h
+31 −0 tests/features/S2N_LIBCRYPTO_SUPPORTS_X509_STORE_LIST.c
+0 −0 tests/features/S2N_LIBCRYPTO_SUPPORTS_X509_STORE_LIST.flags
+2 −0 tests/testlib/s2n_testlib.h
+190 −0 tests/unit/s2n_cert_authorities_test.c
+2 −2 tests/unit/s2n_client_signature_algorithms_extension_test.c
+1 −1 tests/unit/s2n_server_signature_algorithms_extension_test.c
+68 −0 tests/unit/s2n_session_ticket_test.c
+45 −21 tests/unit/s2n_signature_algorithms_test.c
+2 −2 tests/unit/s2n_tls13_cert_request_extensions_test.c
+1 −1 tests/unit/s2n_tls13_cert_request_test.c
+68 −0 tls/extensions/s2n_cert_authorities.c
+12 −0 tls/extensions/s2n_cert_authorities.h
+1 −1 tls/extensions/s2n_client_session_ticket.c
+1 −1 tls/extensions/s2n_client_signature_algorithms.c
+1 −1 tls/extensions/s2n_server_signature_algorithms.c
+2 −5 tls/s2n_async_pkey.c
+11 −0 tls/s2n_certificate_keys.c
+1 −0 tls/s2n_certificate_keys.h
+38 −0 tls/s2n_cipher_suites.c
+4 −0 tls/s2n_cipher_suites.h
+7 −6 tls/s2n_early_data_io.c
+7 −5 tls/s2n_handshake.h
+1 −1 tls/s2n_handshake_io.c
+15 −14 tls/s2n_resume.c
+1 −1 tls/s2n_resume.h
+1 −0 tls/s2n_security_policies.h
+6 −7 tls/s2n_security_rules.c
+1 −1 tls/s2n_server_cert_request.c
+1 −7 tls/s2n_signature_algorithms.c
+18 −0 tls/s2n_signature_scheme.c
+1 −0 tls/s2n_signature_scheme.h
+1 −1 tls/s2n_tls_parameters.h

2 comments on commit 50720ab

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Performance Alert ⚠️

Possible performance regression was detected for benchmark.
Benchmark result of this commit is worse than the previous benchmark result exceeding threshold 2.

Benchmark suite Current: 50720ab Previous: 16efe55 Ratio
readdir_100 0.458 seconds 0.07 seconds 6.54
readdir_1000 0.692 seconds 0.148 seconds 4.68
time_to_first_byte_read_small_file 182.8553321 milliseconds 74.5023738 milliseconds 2.45

This comment was automatically generated by workflow using github-action-benchmark.

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Performance Alert ⚠️

Possible performance regression was detected for benchmark.
Benchmark result of this commit is worse than the previous benchmark result exceeding threshold 2.

Benchmark suite Current: 50720ab Previous: 1204aed Ratio
sequential_read_four_threads 523.6552734375 MiB/s 1700.48076171875 MiB/s 3.25

This comment was automatically generated by workflow using github-action-benchmark.

Please sign in to comment.