Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package aws-c-http for openSUSE:Factory checked in at 2024-11-14 16:08:21 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/aws-c-http (Old) and /work/SRC/openSUSE:Factory/.aws-c-http.new.2017 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "aws-c-http" Thu Nov 14 16:08:21 2024 rev:10 rq:1223942 version:0.9.1 Changes: -------- --- /work/SRC/openSUSE:Factory/aws-c-http/aws-c-http.changes 2024-10-27 11:25:21.694619738 +0100 +++ /work/SRC/openSUSE:Factory/.aws-c-http.new.2017/aws-c-http.changes 2024-11-14 16:08:52.779257088 +0100 @@ -1,0 +2,8 @@ +Tue Nov 12 12:59:30 UTC 2024 - John Paul Adrian Glaubitz <[email protected]> + +- Update to version 0.9.1 + * chore: Modified bug issue template to add checkbox to + report potential regression. by @ashishdhingra in (#486) + * Add cxx support by @subdiox in (#490) + +------------------------------------------------------------------- Old: ---- v0.9.0.tar.gz New: ---- v0.9.1.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ aws-c-http.spec ++++++ --- /var/tmp/diff_new_pack.Zxxojg/_old 2024-11-14 16:08:53.435284599 +0100 +++ /var/tmp/diff_new_pack.Zxxojg/_new 2024-11-14 16:08:53.435284599 +0100 @@ -19,7 +19,7 @@ %define library_version 1.0.0 %define library_soversion 1_0_0 Name: aws-c-http -Version: 0.9.0 +Version: 0.9.1 Release: 0 Summary: C99 implementation of the HTTP/1.1 and HTTP/2 specifications License: Apache-2.0 ++++++ v0.9.0.tar.gz -> v0.9.1.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/aws-c-http-0.9.0/.github/ISSUE_TEMPLATE/bug-report.yml new/aws-c-http-0.9.1/.github/ISSUE_TEMPLATE/bug-report.yml --- old/aws-c-http-0.9.0/.github/ISSUE_TEMPLATE/bug-report.yml 2024-10-23 18:59:17.000000000 +0200 +++ new/aws-c-http-0.9.1/.github/ISSUE_TEMPLATE/bug-report.yml 2024-11-07 19:34:23.000000000 +0100 @@ -12,6 +12,14 @@ description: What is the problem? A clear and concise description of the bug. validations: required: true + - type: checkboxes + id: regression + attributes: + label: Regression Issue + description: What is a regression? If it worked in a previous version but doesn't in the latest version, it's considered a regression. In this case, please provide specific version number in the report. + options: + - label: Select this option if this issue appears to be a regression. + required: false - type: textarea id: expected attributes: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/aws-c-http-0.9.0/.github/workflows/issue-regression-labeler.yml new/aws-c-http-0.9.1/.github/workflows/issue-regression-labeler.yml --- old/aws-c-http-0.9.0/.github/workflows/issue-regression-labeler.yml 1970-01-01 01:00:00.000000000 +0100 +++ new/aws-c-http-0.9.1/.github/workflows/issue-regression-labeler.yml 2024-11-07 19:34:23.000000000 +0100 @@ -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 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/aws-c-http-0.9.0/include/aws/http/private/hpack.h new/aws-c-http-0.9.1/include/aws/http/private/hpack.h --- old/aws-c-http-0.9.0/include/aws/http/private/hpack.h 2024-10-23 18:59:17.000000000 +0200 +++ new/aws-c-http-0.9.1/include/aws/http/private/hpack.h 2024-11-07 19:34:23.000000000 +0100 @@ -15,12 +15,15 @@ * If a complete entry has not been decoded yet, type is ONGOING. * Otherwise, type informs which data to look at. */ + +enum aws_hpack_decode_type { + AWS_HPACK_DECODE_T_ONGOING, + AWS_HPACK_DECODE_T_HEADER_FIELD, + AWS_HPACK_DECODE_T_DYNAMIC_TABLE_RESIZE, +}; + struct aws_hpack_decode_result { - enum aws_hpack_decode_type { - AWS_HPACK_DECODE_T_ONGOING, - AWS_HPACK_DECODE_T_HEADER_FIELD, - AWS_HPACK_DECODE_T_DYNAMIC_TABLE_RESIZE, - } type; + enum aws_hpack_decode_type type; union { /* If type is AWS_HPACK_DECODE_T_HEADER_FIELD */
