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-07-09 20:05:30 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/aws-crt-cpp (Old) and /work/SRC/openSUSE:Factory/.aws-crt-cpp.new.2080 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "aws-crt-cpp" Tue Jul 9 20:05:30 2024 rev:10 rq:1186353 version:0.27.2 Changes: -------- --- /work/SRC/openSUSE:Factory/aws-crt-cpp/aws-crt-cpp.changes 2024-06-27 16:05:32.639552161 +0200 +++ /work/SRC/openSUSE:Factory/.aws-crt-cpp.new.2080/aws-crt-cpp.changes 2024-07-09 20:06:11.933526294 +0200 @@ -1,0 +2,6 @@ +Thu Jul 4 12:06:19 UTC 2024 - John Paul Adrian Glaubitz <adrian.glaub...@suse.com> + +- Update to version 0.27.2 + * Make variant index casts more explicit by @DmitriyMusatkin in (#635) + +------------------------------------------------------------------- Old: ---- v0.27.1.tar.gz New: ---- v0.27.2.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ aws-crt-cpp.spec ++++++ --- /var/tmp/diff_new_pack.Phvn9d/_old 2024-07-09 20:06:13.569585908 +0200 +++ /var/tmp/diff_new_pack.Phvn9d/_new 2024-07-09 20:06:13.569585908 +0200 @@ -20,7 +20,7 @@ %define library_soversion 1 Name: aws-crt-cpp -Version: 0.27.1 +Version: 0.27.2 Release: 0 Summary: AWS C++ wrapper for AWS SDK C libraries License: Apache-2.0 ++++++ v0.27.1.tar.gz -> v0.27.2.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/aws-crt-cpp-0.27.1/VERSION new/aws-crt-cpp-0.27.2/VERSION --- old/aws-crt-cpp-0.27.1/VERSION 2024-06-25 22:41:57.000000000 +0200 +++ new/aws-crt-cpp-0.27.2/VERSION 2024-07-03 19:28:26.000000000 +0200 @@ -1 +1 @@ -0.27.1 +0.27.2 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/aws-crt-cpp-0.27.1/include/aws/crt/Variant.h new/aws-crt-cpp-0.27.2/include/aws/crt/Variant.h --- old/aws-crt-cpp-0.27.1/include/aws/crt/Variant.h 2024-06-25 22:41:57.000000000 +0200 +++ new/aws-crt-cpp-0.27.2/include/aws/crt/Variant.h 2024-07-03 19:28:26.000000000 +0200 @@ -473,7 +473,8 @@ } else { - VisitorUtil<Index + 1, Second, Rest...>::Visit(pThis, std::forward<VisitorStruct>(visitor)); + VisitorUtil<static_cast<IndexT>(Index + 1), Second, Rest...>::Visit( + pThis, std::forward<VisitorStruct>(visitor)); } } @@ -490,7 +491,7 @@ } else { - VisitorUtil<Index + 1, Second, Rest...>::VisitBinary( + VisitorUtil<static_cast<IndexT>(Index + 1), Second, Rest...>::VisitBinary( pThis, std::forward<Variant<Ts...>>(other), std::forward<VisitorStruct>(visitor)); } } @@ -509,7 +510,7 @@ } else { - VisitorUtil<Index + 1, Second, Rest...>::VisitBinary( + VisitorUtil<static_cast<IndexT>(Index + 1), Second, Rest...>::VisitBinary( pThis, other, std::forward<VisitorStruct>(visitor)); } }