Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package aws-c-sdkutils for openSUSE:Factory checked in at 2024-11-14 16:08:22 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/aws-c-sdkutils (Old) and /work/SRC/openSUSE:Factory/.aws-c-sdkutils.new.2017 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "aws-c-sdkutils" Thu Nov 14 16:08:22 2024 rev:7 rq:1223943 version:0.2.1 Changes: -------- --- /work/SRC/openSUSE:Factory/aws-c-sdkutils/aws-c-sdkutils.changes 2024-10-27 11:25:22.678660528 +0100 +++ /work/SRC/openSUSE:Factory/.aws-c-sdkutils.new.2017/aws-c-sdkutils.changes 2024-11-14 16:08:53.679294832 +0100 @@ -1,0 +2,8 @@ +Tue Nov 12 12:50:34 UTC 2024 - John Paul Adrian Glaubitz <adrian.glaub...@suse.com> + +- Update to version 0.2.1 + * chore: Modified bug issue template to add checkbox to + report potential regression. by @ashishdhingra in (#45) + * Add cxx support by @subdiox in (#48) + +------------------------------------------------------------------- Old: ---- v0.2.0.tar.gz New: ---- v0.2.1.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ aws-c-sdkutils.spec ++++++ --- /var/tmp/diff_new_pack.WhrntP/_old 2024-11-14 16:08:54.439326704 +0100 +++ /var/tmp/diff_new_pack.WhrntP/_new 2024-11-14 16:08:54.443326872 +0100 @@ -20,7 +20,7 @@ %define library_pkg 1_0_0 %define library_soversion 1 Name: aws-c-sdkutils -Version: 0.2.0 +Version: 0.2.1 Release: 0 Summary: AWS C SDK Utils License: Apache-2.0 ++++++ v0.2.0.tar.gz -> v0.2.1.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/aws-c-sdkutils-0.2.0/.github/ISSUE_TEMPLATE/bug-report.yml new/aws-c-sdkutils-0.2.1/.github/ISSUE_TEMPLATE/bug-report.yml --- old/aws-c-sdkutils-0.2.0/.github/ISSUE_TEMPLATE/bug-report.yml 2024-10-23 19:02:07.000000000 +0200 +++ new/aws-c-sdkutils-0.2.1/.github/ISSUE_TEMPLATE/bug-report.yml 2024-11-07 21:45:25.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-sdkutils-0.2.0/.github/workflows/issue-regression-labeler.yml new/aws-c-sdkutils-0.2.1/.github/workflows/issue-regression-labeler.yml --- old/aws-c-sdkutils-0.2.0/.github/workflows/issue-regression-labeler.yml 1970-01-01 01:00:00.000000000 +0100 +++ new/aws-c-sdkutils-0.2.1/.github/workflows/issue-regression-labeler.yml 2024-11-07 21:45:25.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-sdkutils-0.2.0/include/aws/sdkutils/private/endpoints_util.h new/aws-c-sdkutils-0.2.1/include/aws/sdkutils/private/endpoints_util.h --- old/aws-c-sdkutils-0.2.0/include/aws/sdkutils/private/endpoints_util.h 2024-10-23 19:02:07.000000000 +0200 +++ new/aws-c-sdkutils-0.2.1/include/aws/sdkutils/private/endpoints_util.h 2024-11-07 21:45:25.000000000 +0100 @@ -74,7 +74,7 @@ /* Function that resolves template. */ typedef int(aws_endpoints_template_resolve_fn)( - struct aws_byte_cursor template, + struct aws_byte_cursor template_cursor, void *user_data, struct aws_owning_cursor *out_resolved); /*