-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into RequestResponseBrowserStreaming
- Loading branch information
Showing
35 changed files
with
437 additions
and
256 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Apply potential regression label on issues | ||
name: issue-regression-label | ||
on: | ||
issues: | ||
types: [opened, edited] | ||
jobs: | ||
add-regression-label: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
issues: write | ||
steps: | ||
- name: Fetch template body | ||
id: check_regression | ||
uses: actions/github-script@v7 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
TEMPLATE_BODY: ${{ github.event.issue.body }} | ||
with: | ||
script: | | ||
const regressionPattern = /\[x\] Select this option if this issue appears to be a regression\./i; | ||
const template = `${process.env.TEMPLATE_BODY}` | ||
const match = regressionPattern.test(template); | ||
core.setOutput('is_regression', match); | ||
- name: Manage regression label | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: | | ||
if [ "${{ steps.check_regression.outputs.is_regression }}" == "true" ]; then | ||
gh issue edit ${{ github.event.issue.number }} --add-label "potential-regression" -R ${{ github.repository }} | ||
else | ||
gh issue edit ${{ github.event.issue.number }} --remove-label "potential-regression" -R ${{ github.repository }} | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule aws-c-auth
updated
26 files
+15 −3 | .github/workflows/ci.yml | |
+4 −6 | .github/workflows/clang-format.yml | |
+1 −0 | .gitignore | |
+1 −5 | CMakeLists.txt | |
+2 −2 | README.md | |
+47 −0 | format-check.py | |
+0 −24 | format-check.sh | |
+1 −0 | include/aws/auth/auth.h | |
+15 −0 | include/aws/auth/credentials.h | |
+8 −8 | include/aws/auth/private/credentials_utils.h | |
+3 −0 | source/auth.c | |
+25 −0 | source/aws_signing.c | |
+3 −1 | source/credentials_provider_cached.c | |
+1 −16 | source/credentials_provider_default_chain.c | |
+104 −5 | source/credentials_provider_ecs.c | |
+17 −2 | source/credentials_provider_process.c | |
+44 −5 | source/credentials_provider_profile.c | |
+37 −12 | source/credentials_provider_sts.c | |
+1 −0 | source/credentials_provider_sts_web_identity.c | |
+49 −7 | source/credentials_utils.c | |
+17 −9 | tests/CMakeLists.txt | |
+92 −17 | tests/credentials_provider_ecs_tests.c | |
+75 −26 | tests/credentials_provider_process_tests.c | |
+273 −108 | tests/credentials_provider_sts_tests.c | |
+42 −0 | tests/credentials_provider_sts_web_identity_tests.c | |
+58 −0 | tests/credentials_utils_tests.c |
Submodule aws-c-cal
updated
3 files
+2 −6 | CMakeLists.txt | |
+1 −1 | README.md | |
+70 −26 | source/unix/openssl_platform_init.c |
Submodule aws-c-common
updated
25 files
Submodule aws-c-compression
updated
6 files
+12 −3 | .github/workflows/ci.yml | |
+4 −6 | .github/workflows/clang-format.yml | |
+1 −5 | CMakeLists.txt | |
+47 −0 | format-check.py | |
+0 −24 | format-check.sh | |
+1 −1 | source/compression.c |
Submodule aws-c-event-stream
updated
8 files
+12 −3 | .github/workflows/ci.yml | |
+4 −8 | .github/workflows/clang-format.yml | |
+7 −4 | .github/workflows/stale_issue.yml | |
+1 −1 | CMakeLists.txt | |
+1 −1 | README.md | |
+47 −0 | format-check.py | |
+0 −24 | format-check.sh | |
+4 −2 | include/aws/event-stream/event_stream.h |
Submodule aws-c-http
updated
32 files
Submodule aws-c-io
updated
28 files
+40 −5 | .github/workflows/ci.yml | |
+4 −6 | .github/workflows/clang-format.yml | |
+16 −13 | CMakeLists.txt | |
+1 −1 | README.md | |
+47 −0 | format-check.py | |
+0 −24 | format-check.sh | |
+2 −2 | include/aws/io/channel.h | |
+3 −4 | include/aws/io/channel_bootstrap.h | |
+3 −4 | include/aws/io/event_loop.h | |
+6 −0 | include/aws/io/private/tls_channel_handler_shared.h | |
+18 −0 | include/aws/io/socket.h | |
+4 −5 | include/aws/io/tls_channel_handler.h | |
+13 −20 | source/channel.c | |
+126 −60 | source/darwin/secure_transport_tls_channel_handler.c | |
+13 −54 | source/future.c | |
+1 −1 | source/io.c | |
+2 −5 | source/message_pool.c | |
+101 −3 | source/posix/socket.c | |
+125 −59 | source/s2n/s2n_tls_channel_handler.c | |
+1 −7 | source/socket_channel_handler.c | |
+1 −1 | source/windows/iocp/iocp_event_loop.c | |
+25 −0 | source/windows/iocp/socket.c | |
+275 −206 | source/windows/secure_channel_tls_handler.c | |
+24 −0 | source/windows/windows_pki_utils.c | |
+6 −0 | tests/CMakeLists.txt | |
+1 −1 | tests/socket_handler_test.c | |
+96 −7 | tests/socket_test.c | |
+404 −128 | tests/tls_handler_test.c |
Submodule aws-c-sdkutils
updated
17 files
+12 −3 | .github/workflows/ci.yml | |
+4 −6 | .github/workflows/clang-format.yml | |
+1 −5 | CMakeLists.txt | |
+2 −2 | README.md | |
+47 −0 | format-check.py | |
+0 −24 | format-check.sh | |
+18 −2 | include/aws/sdkutils/endpoints_rule_engine.h | |
+30 −31 | include/aws/sdkutils/private/endpoints_types_impl.h | |
+59 −27 | source/endpoints_rule_engine.c | |
+67 −50 | source/endpoints_ruleset.c | |
+2 −1 | source/endpoints_standard_lib.c | |
+36 −4 | source/endpoints_types_impl.c | |
+1 −0 | tests/CMakeLists.txt | |
+28 −11 | tests/endpoints_rule_engine_tests.c | |
+1 −1 | tests/resources/test-cases/partition-fn.json | |
+45 −0 | tests/resources/test-cases/string_array.json | |
+38 −0 | tests/resources/valid-rules/string_array.json |
Submodule aws-checksums
updated
26 files
+105 −15 | .github/workflows/ci.yml | |
+4 −6 | .github/workflows/clang-format.yml | |
+61 −55 | CMakeLists.txt | |
+29 −0 | bin/benchmark/CMakeLists.txt | |
+133 −0 | bin/benchmark/main.c | |
+4 −0 | builder.json | |
+47 −0 | format-check.py | |
+0 −24 | format-check.sh | |
+42 −3 | include/aws/checksums/crc.h | |
+51 −0 | include/aws/checksums/private/crc64_priv.h | |
+28 −11 | include/aws/checksums/private/crc_priv.h | |
+24 −0 | include/aws/checksums/private/crc_util.h | |
+4 −4 | source/arm/crc32c_arm.c | |
+208 −0 | source/arm/crc64_arm.c | |
+35 −9 | source/crc.c | |
+131 −0 | source/crc64.c | |
+579 −0 | source/crc64_sw.c | |
+0 −18 | source/generic/crc32c_null.c | |
+3 −14 | source/intel/asm/crc32c_sse42_asm.c | |
+245 −0 | source/intel/intrin/crc32c_sse42_avx512.c | |
+130 −0 | source/intel/intrin/crc64nvme_avx512.c | |
+147 −0 | source/intel/intrin/crc64nvme_clmul.c | |
+0 −77 | source/intel/visualc/visualc_crc32c_sse42.c | |
+3 −0 | tests/CMakeLists.txt | |
+144 −0 | tests/crc64_test.c | |
+129 −43 | tests/crc_test.c |
Submodule aws-lc
updated
from 4e54dd to 8ffe27
Submodule s2n
updated
from 114cca to ffe0bf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.