-
Notifications
You must be signed in to change notification settings - Fork 66
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 RequestResponseWorkspace
- Loading branch information
Showing
17 changed files
with
80 additions
and
31 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
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 |
---|---|---|
@@ -1 +1 @@ | ||
0.28.3 | ||
0.29.0 |
Submodule aws-c-auth
updated
13 files
+1 −1 | .github/workflows/ci.yml | |
+1 −0 | .gitignore | |
+1 −5 | CMakeLists.txt | |
+2 −2 | README.md | |
+2 −2 | include/aws/auth/private/credentials_utils.h | |
+25 −0 | source/aws_signing.c | |
+17 −2 | source/credentials_provider_process.c | |
+9 −5 | source/credentials_provider_profile.c | |
+49 −7 | source/credentials_utils.c | |
+3 −0 | tests/CMakeLists.txt | |
+47 −46 | tests/credentials_provider_process_tests.c | |
+111 −76 | tests/credentials_provider_sts_tests.c | |
+58 −0 | tests/credentials_utils_tests.c |
Submodule aws-c-common
updated
23 files
Submodule aws-c-http
updated
10 files
+1 −1 | .github/workflows/ci.yml | |
+1 −5 | CMakeLists.txt | |
+1 −1 | README.md | |
+3 −2 | include/aws/http/connection_manager.h | |
+1 −1 | integration-testing/http_client_test.py | |
+2 −1 | source/connection_manager.c | |
+2 −2 | source/h1_connection.c | |
+1 −1 | source/http.c | |
+1 −0 | tests/CMakeLists.txt | |
+55 −6 | tests/test_connection_manager.c |
Submodule aws-c-io
updated
11 files
+16 −9 | CMakeLists.txt | |
+1 −1 | README.md | |
+5 −0 | include/aws/io/socket.h | |
+13 −54 | source/future.c | |
+10 −1 | source/posix/socket.c | |
+8 −2 | source/s2n/s2n_tls_channel_handler.c | |
+6 −0 | source/windows/iocp/socket.c | |
+24 −0 | source/windows/windows_pki_utils.c | |
+2 −0 | tests/CMakeLists.txt | |
+14 −0 | tests/socket_test.c | |
+36 −0 | tests/tls_handler_test.c |
Submodule aws-c-s3
updated
29 files
Submodule aws-lc
updated
from 2f1879 to 8ffe27
Submodule s2n
updated
from 87f4a0 to ffe0bf