Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package aws-crt-cpp for openSUSE:Factory 
checked in at 2024-11-14 16:08:23
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/aws-crt-cpp (Old)
 and      /work/SRC/openSUSE:Factory/.aws-crt-cpp.new.2017 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "aws-crt-cpp"

Thu Nov 14 16:08:23 2024 rev:18 rq:1223945 version:0.29.3

Changes:
--------
--- /work/SRC/openSUSE:Factory/aws-crt-cpp/aws-crt-cpp.changes  2024-10-27 
11:25:29.766954352 +0100
+++ /work/SRC/openSUSE:Factory/.aws-crt-cpp.new.2017/aws-crt-cpp.changes        
2024-11-14 16:08:54.643335259 +0100
@@ -1,0 +2,16 @@
+Tue Nov 12 12:46:00 UTC 2024 - John Paul Adrian Glaubitz 
<adrian.glaub...@suse.com>
+
+- Update to version 0.29.3
+  * Fix checksum install location by @sbiscigl in (#680)
+- from version 0.29.2
+  * Stop building s2n via aws_prebuild_dependency()
+    by @graebm in (#677)
+- from version 0.29.1
+  * chore: Modified bug issue template to add checkbox to
+    report potential regression. by @ashishdhingra in (#661)
+  * Fix s2n cleanup by @graebm in (#672)
+  * Use S2N-TLS v1.5.7 by @graebm in (#673)
+  * Fix crashes in GCC 4.x shared-libs builds, due to
+    recent symbol visibility changes by @graebm in (#675)
+
+-------------------------------------------------------------------

Old:
----
  v0.29.0.tar.gz

New:
----
  v0.29.3.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ aws-crt-cpp.spec ++++++
--- /var/tmp/diff_new_pack.AMeL9S/_old  2024-11-14 16:08:55.339364364 +0100
+++ /var/tmp/diff_new_pack.AMeL9S/_new  2024-11-14 16:08:55.339364364 +0100
@@ -20,7 +20,7 @@
 %define library_soversion 1
 
 Name:           aws-crt-cpp
-Version:        0.29.0
+Version:        0.29.3
 Release:        0
 Summary:        AWS C++ wrapper for AWS SDK C libraries
 License:        Apache-2.0

++++++ v0.29.0.tar.gz -> v0.29.3.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/aws-crt-cpp-0.29.0/.github/ISSUE_TEMPLATE/bug-report.yml 
new/aws-crt-cpp-0.29.3/.github/ISSUE_TEMPLATE/bug-report.yml
--- old/aws-crt-cpp-0.29.0/.github/ISSUE_TEMPLATE/bug-report.yml        
2024-10-23 19:56:23.000000000 +0200
+++ new/aws-crt-cpp-0.29.3/.github/ISSUE_TEMPLATE/bug-report.yml        
2024-11-07 18:50:50.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-crt-cpp-0.29.0/.github/workflows/ci.yml 
new/aws-crt-cpp-0.29.3/.github/workflows/ci.yml
--- old/aws-crt-cpp-0.29.0/.github/workflows/ci.yml     2024-10-23 
19:56:23.000000000 +0200
+++ new/aws-crt-cpp-0.29.3/.github/workflows/ci.yml     2024-11-07 
18:50:50.000000000 +0100
@@ -17,6 +17,11 @@
   AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
   AWS_REGION: us-east-1
 
+# cancel in-progress builds after a new commit
+concurrency:
+  group: ${{ github.workflow }}-${{ github.ref }}
+  cancel-in-progress: true
+  
 jobs:
   linux-compat-use-openssl:
     runs-on: ubuntu-22.04 # latest
@@ -128,12 +133,15 @@
 
   linux-shared-libs:
     runs-on: ubuntu-22.04 # latest
+    strategy:
+      matrix:
+        compiler: [gcc-4.8, gcc-11] # oldest, latest
     steps:
         # We can't use the `uses: docker://image` version yet, GitHub lacks 
authentication for actions -> packages
     - name: Build ${{ env.PACKAGE_NAME }}
       run: |
         aws s3 cp s3://aws-crt-test-stuff/ci/${{ env.BUILDER_VERSION 
}}/linux-container-ci.sh ./linux-container-ci.sh && chmod a+x 
./linux-container-ci.sh
-        ./linux-container-ci.sh ${{ env.BUILDER_VERSION }} aws-crt-${{ 
env.LINUX_BASE_IMAGE }} build -p ${{ env.PACKAGE_NAME }} 
--cmake-extra=-DBUILD_SHARED_LIBS=ON
+        ./linux-container-ci.sh ${{ env.BUILDER_VERSION }} aws-crt-${{ 
env.LINUX_BASE_IMAGE }} build -p ${{ env.PACKAGE_NAME }} --compiler=${{ 
matrix.compiler }} --cmake-extra=-DBUILD_SHARED_LIBS=ON
 
   linux-openssl-static:
     runs-on: ubuntu-22.04 # latest
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/aws-crt-cpp-0.29.0/.github/workflows/issue-regression-labeler.yml 
new/aws-crt-cpp-0.29.3/.github/workflows/issue-regression-labeler.yml
--- old/aws-crt-cpp-0.29.0/.github/workflows/issue-regression-labeler.yml       
1970-01-01 01:00:00.000000000 +0100
+++ new/aws-crt-cpp-0.29.3/.github/workflows/issue-regression-labeler.yml       
2024-11-07 18:50:50.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-crt-cpp-0.29.0/CMakeLists.txt 
new/aws-crt-cpp-0.29.3/CMakeLists.txt
--- old/aws-crt-cpp-0.29.0/CMakeLists.txt       2024-10-23 19:56:23.000000000 
+0200
+++ new/aws-crt-cpp-0.29.3/CMakeLists.txt       2024-11-07 18:50:50.000000000 
+0100
@@ -83,8 +83,8 @@
     add_subdirectory(crt/aws-c-common)
 
     if(UNIX AND NOT APPLE AND NOT BYO_CRYPTO)
-        include(AwsPrebuildDependency)
         if(NOT USE_OPENSSL)
+            include(AwsPrebuildDependency)
 
             set(AWSLC_CMAKE_C_FLAGS "${CMAKE_C_FLAGS}")
 
@@ -116,14 +116,8 @@
             )
         endif()
 
-        # prebuild s2n-tls.
-        aws_prebuild_dependency(
-            DEPENDENCY_NAME S2N
-            SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/crt/s2n
-            CMAKE_ARGUMENTS
-                -DUNSAFE_TREAT_WARNINGS_AS_ERRORS=OFF
-                -DBUILD_TESTING=OFF
-        )
+        set(UNSAFE_TREAT_WARNINGS_AS_ERRORS OFF CACHE BOOL "Disable 
warnings-as-errors when building S2N")
+        add_subdirectory(crt/s2n)
     endif()
 
     add_subdirectory(crt/aws-c-sdkutils)
@@ -302,7 +296,13 @@
 
 set_target_properties(${PROJECT_NAME} PROPERTIES LINKER_LANGUAGE CXX)
 set_target_properties(${PROJECT_NAME} PROPERTIES CXX_STANDARD 
${CMAKE_CXX_STANDARD})
-set_target_properties(${PROJECT_NAME} PROPERTIES CXX_VISIBILITY_PRESET hidden 
VISIBILITY_INLINES_HIDDEN ON)
+
+# Hide symbols by default
+# Except for ancient GCC, because it leads to crashes in shared-lib builds
+# see: https://github.com/awslabs/aws-crt-cpp/pull/675
+if(NOT (CMAKE_CXX_COMPILER_ID STREQUAL "GNU" AND CMAKE_CXX_COMPILER_VERSION 
VERSION_LESS "5.0"))
+    set_target_properties(${PROJECT_NAME} PROPERTIES CXX_VISIBILITY_PRESET 
hidden VISIBILITY_INLINES_HIDDEN ON)
+endif()
 
 aws_prepare_symbol_visibility_args(${PROJECT_NAME} "AWS_CRT_CPP")
 
@@ -348,7 +348,7 @@
 
 install(FILES ${AWS_CRT_HEADERS} DESTINATION "include/aws/crt" COMPONENT 
Development)
 install(FILES ${AWS_CRT_AUTH_HEADERS} DESTINATION "include/aws/crt/auth" 
COMPONENT Development)
-install(FILES ${AWS_CRT_CHECKSUM_HEADERS} DESTINATION "include/aws/crt/crypto" 
COMPONENT Development)
+install(FILES ${AWS_CRT_CHECKSUM_HEADERS} DESTINATION 
"include/aws/crt/checksum" COMPONENT Development)
 install(FILES ${AWS_CRT_CRYPTO_HEADERS} DESTINATION "include/aws/crt/crypto" 
COMPONENT Development)
 install(FILES ${AWS_CRT_IO_HEADERS} DESTINATION "include/aws/crt/io" COMPONENT 
Development)
 install(FILES ${AWS_CRT_IOT_HEADERS} DESTINATION "include/aws/iot" COMPONENT 
Development)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/aws-crt-cpp-0.29.0/VERSION 
new/aws-crt-cpp-0.29.3/VERSION
--- old/aws-crt-cpp-0.29.0/VERSION      2024-10-23 19:56:23.000000000 +0200
+++ new/aws-crt-cpp-0.29.3/VERSION      2024-11-07 18:50:50.000000000 +0100
@@ -1 +1 @@
-0.29.0
+0.29.3

Reply via email to