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 2026-08-31 15:57:58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/aws-c-sdkutils (Old) and /work/SRC/openSUSE:Factory/.aws-c-sdkutils.new.1265 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "aws-c-sdkutils" Mon Aug 31 15:57:58 2026 rev:15 rq:1374819 version:0.2.10 Changes: -------- --- /work/SRC/openSUSE:Factory/aws-c-sdkutils/aws-c-sdkutils.changes 2026-08-14 22:06:28.793929607 +0200 +++ /work/SRC/openSUSE:Factory/.aws-c-sdkutils.new.1265/aws-c-sdkutils.changes 2026-08-31 15:57:59.970696978 +0200 @@ -1,0 +2,8 @@ +Wed Aug 26 09:19:41 UTC 2026 - John Paul Adrian Glaubitz <[email protected]> + +- Update to version 0.2.10 + * Clean up docs by @azkrishpy in (#72) + * chore(release): add governance files by @azkrishpy in (#74) +- Prefer explicit path and filenames over wildcards in %files section + +------------------------------------------------------------------- Old: ---- v0.2.9.tar.gz New: ---- v0.2.10.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ aws-c-sdkutils.spec ++++++ --- /var/tmp/diff_new_pack.19Sg5T/_old 2026-08-31 15:58:00.616719537 +0200 +++ /var/tmp/diff_new_pack.19Sg5T/_new 2026-08-31 15:58:00.617719572 +0200 @@ -20,7 +20,7 @@ %define library_pkg 1_0_0 %define library_soversion 1 Name: aws-c-sdkutils -Version: 0.2.9 +Version: 0.2.10 Release: 0 Summary: AWS C SDK Utils License: Apache-2.0 @@ -77,11 +77,11 @@ %files -n lib%{name}%{library_pkg} %doc NOTICE README.md %license LICENSE -%{_libdir}/*.so.%{library_soversion} -%{_libdir}/*.so.%{library_version} +%{_libdir}/lib%{name}.so.%{library_soversion} +%{_libdir}/lib%{name}.so.%{library_version} %files devel %{_libdir}/cmake/ -%{_libdir}/*.so +%{_libdir}/lib%{name}.so %{_includedir}/* ++++++ v0.2.9.tar.gz -> v0.2.10.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/aws-c-sdkutils-0.2.9/.github/workflows/block-needs-review.yml new/aws-c-sdkutils-0.2.10/.github/workflows/block-needs-review.yml --- old/aws-c-sdkutils-0.2.9/.github/workflows/block-needs-review.yml 1970-01-01 01:00:00.000000000 +0100 +++ new/aws-c-sdkutils-0.2.10/.github/workflows/block-needs-review.yml 2026-08-18 03:09:27.000000000 +0200 @@ -0,0 +1,12 @@ +name: Block needs-review merges + +on: + pull_request: + types: [opened, synchronize, reopened, labeled, unlabeled] + +permissions: + pull-requests: read + +jobs: + gate: + uses: awslabs/aws-crt-builder/.github/workflows/block-needs-review-label.yml@main diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/aws-c-sdkutils-0.2.9/.github/workflows/check-abi.yml new/aws-c-sdkutils-0.2.10/.github/workflows/check-abi.yml --- old/aws-c-sdkutils-0.2.9/.github/workflows/check-abi.yml 1970-01-01 01:00:00.000000000 +0100 +++ new/aws-c-sdkutils-0.2.10/.github/workflows/check-abi.yml 2026-08-18 03:09:27.000000000 +0200 @@ -0,0 +1,41 @@ +name: Check ABI compliance + +on: + pull_request: + types: [opened, synchronize, reopened] + +concurrency: + group: check-abi-${{ github.event.pull_request.number }} + cancel-in-progress: true + +env: + PACKAGE_NAME: aws-c-sdkutils + CRT_CI_ROLE: ${{ secrets.CRT_CI_ROLE_ARN }} + AWS_DEFAULT_REGION: us-east-1 + +permissions: + id-token: write + contents: read + pull-requests: write + +jobs: + check-abi: + name: check-abi + runs-on: ubuntu-24.04 + steps: + - uses: aws-actions/configure-aws-credentials@v4 + with: + role-to-assume: ${{ env.CRT_CI_ROLE }} + aws-region: ${{ env.AWS_DEFAULT_REGION }} + + - name: Checkout + uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - name: Check ABI + uses: awslabs/aws-crt-builder/.github/actions/check-abi@main + with: + lib-name: ${{ env.PACKAGE_NAME }} + builder-version: latest + builder-source: releases diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/aws-c-sdkutils-0.2.9/.github/workflows/release.yml new/aws-c-sdkutils-0.2.10/.github/workflows/release.yml --- old/aws-c-sdkutils-0.2.9/.github/workflows/release.yml 1970-01-01 01:00:00.000000000 +0100 +++ new/aws-c-sdkutils-0.2.10/.github/workflows/release.yml 2026-08-18 03:09:27.000000000 +0200 @@ -0,0 +1,44 @@ +name: Release + +on: + workflow_dispatch: + inputs: + dry-run: + description: 'Compute and summarize the bump/version but do not commit, tag, or publish anything.' + required: false + default: 'false' + +concurrency: + group: ${{ github.workflow }} + cancel-in-progress: false + +env: + PACKAGE_NAME: aws-c-sdkutils + CRT_CI_ROLE: ${{ secrets.CRT_CI_ROLE_ARN }} + AWS_DEFAULT_REGION: us-east-1 + +permissions: + id-token: write + contents: write + pull-requests: read + +jobs: + release: + name: release + runs-on: ubuntu-24.04 + steps: + - uses: aws-actions/configure-aws-credentials@v4 + with: + role-to-assume: ${{ env.CRT_CI_ROLE }} + aws-region: ${{ env.AWS_DEFAULT_REGION }} + + - name: Checkout + uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - name: Release + uses: awslabs/aws-crt-builder/.github/actions/auto-release@main + with: + lib-name: ${{ env.PACKAGE_NAME }} + dry-run: ${{ inputs.dry-run }} diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/aws-c-sdkutils-0.2.9/CMakeLists.txt new/aws-c-sdkutils-0.2.10/CMakeLists.txt --- old/aws-c-sdkutils-0.2.9/CMakeLists.txt 2026-08-04 18:32:02.000000000 +0200 +++ new/aws-c-sdkutils-0.2.10/CMakeLists.txt 2026-08-18 03:09:27.000000000 +0200 @@ -52,6 +52,7 @@ target_link_libraries(${PROJECT_NAME} PUBLIC ${DEP_AWS_LIBS}) # Our ABI is not yet stable +# TODO: switch to VERSION derived from the VERSION file (via aws_get_version) once SOVERSION is set explicitly, to avoid changing the SONAME. set_target_properties(${PROJECT_NAME} PROPERTIES VERSION 1.0.0) target_include_directories(${PROJECT_NAME} PUBLIC diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/aws-c-sdkutils-0.2.9/VERSION new/aws-c-sdkutils-0.2.10/VERSION --- old/aws-c-sdkutils-0.2.9/VERSION 1970-01-01 01:00:00.000000000 +0100 +++ new/aws-c-sdkutils-0.2.10/VERSION 2026-08-18 03:09:27.000000000 +0200 @@ -0,0 +1 @@ +0.2.10
