Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-grpcio-tools for openSUSE:Factory checked in at 2023-10-31 20:26:16 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-grpcio-tools (Old) and /work/SRC/openSUSE:Factory/.python-grpcio-tools.new.17445 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-grpcio-tools" Tue Oct 31 20:26:16 2023 rev:29 rq:1121418 version:1.59.2 Changes: -------- --- /work/SRC/openSUSE:Factory/python-grpcio-tools/python-grpcio-tools.changes 2023-10-05 20:05:17.603352282 +0200 +++ /work/SRC/openSUSE:Factory/.python-grpcio-tools.new.17445/python-grpcio-tools.changes 2023-10-31 20:26:36.355937071 +0100 @@ -1,0 +2,6 @@ +Tue Oct 31 08:58:12 UTC 2023 - Atri Bhattacharya <badshah...@gmail.com> + +- Update to version 1.59.2: + * No python specific changes. + +------------------------------------------------------------------- Old: ---- grpcio-tools-1.59.0.tar.gz New: ---- grpcio-tools-1.59.2.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-grpcio-tools.spec ++++++ --- /var/tmp/diff_new_pack.cvEjwd/_old 2023-10-31 20:26:37.027961754 +0100 +++ /var/tmp/diff_new_pack.cvEjwd/_new 2023-10-31 20:26:37.027961754 +0100 @@ -20,7 +20,7 @@ %define skip_python2 1 %{?sle15_python_module_pythons} Name: python-grpcio-tools -Version: 1.59.0 +Version: 1.59.2 Release: 0 Summary: Protobuf code generator for gRPC License: Apache-2.0 ++++++ grpcio-tools-1.59.0.tar.gz -> grpcio-tools-1.59.2.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/grpcio-tools-1.59.0/PKG-INFO new/grpcio-tools-1.59.2/PKG-INFO --- old/grpcio-tools-1.59.0/PKG-INFO 2023-09-29 01:35:26.565019800 +0200 +++ new/grpcio-tools-1.59.2/PKG-INFO 2023-10-30 19:07:41.581064000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: grpcio-tools -Version: 1.59.0 +Version: 1.59.2 Summary: Protobuf code generator for gRPC Home-page: https://grpc.io Author: The gRPC Authors @@ -15,7 +15,7 @@ Requires-Python: >=3.7 Description-Content-Type: text/x-rst Requires-Dist: protobuf<5.0dev,>=4.21.6 -Requires-Dist: grpcio>=1.59.0 +Requires-Dist: grpcio>=1.59.2 Requires-Dist: setuptools gRPC Python Tools diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/grpcio-tools-1.59.0/grpc_root/include/grpcpp/support/proto_buffer_reader.h new/grpcio-tools-1.59.2/grpc_root/include/grpcpp/support/proto_buffer_reader.h --- old/grpcio-tools-1.59.0/grpc_root/include/grpcpp/support/proto_buffer_reader.h 2023-09-29 01:35:02.000000000 +0200 +++ new/grpcio-tools-1.59.2/grpc_root/include/grpcpp/support/proto_buffer_reader.h 2023-10-30 19:07:17.000000000 +0100 @@ -189,10 +189,17 @@ // This function takes ownership of slice and return a newly created Cord off // of it. static absl::Cord MakeCordFromSlice(grpc_slice slice) { + // slice_for_cord is created to keep inlined data of the given slice + grpc_slice* slice_for_cord = new grpc_slice; + *slice_for_cord = slice; return absl::MakeCordFromExternal( - absl::string_view(reinterpret_cast<char*>(GRPC_SLICE_START_PTR(slice)), - GRPC_SLICE_LENGTH(slice)), - [slice](absl::string_view /* view */) { grpc_slice_unref(slice); }); + absl::string_view( + reinterpret_cast<char*>(GRPC_SLICE_START_PTR(*slice_for_cord)), + GRPC_SLICE_LENGTH(*slice_for_cord)), + [slice_for_cord](absl::string_view /* view */) { + grpc_slice_unref(*slice_for_cord); + delete slice_for_cord; + }); } #endif // GRPC_PROTOBUF_CORD_SUPPORT_ENABLED diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/grpcio-tools-1.59.0/grpc_root/include/grpcpp/version_info.h new/grpcio-tools-1.59.2/grpc_root/include/grpcpp/version_info.h --- old/grpcio-tools-1.59.0/grpc_root/include/grpcpp/version_info.h 2023-09-29 01:35:02.000000000 +0200 +++ new/grpcio-tools-1.59.2/grpc_root/include/grpcpp/version_info.h 2023-10-30 19:07:17.000000000 +0100 @@ -20,8 +20,8 @@ #define GRPC_CPP_VERSION_MAJOR 1 #define GRPC_CPP_VERSION_MINOR 59 -#define GRPC_CPP_VERSION_PATCH 0 +#define GRPC_CPP_VERSION_PATCH 2 #define GRPC_CPP_VERSION_TAG "" -#define GRPC_CPP_VERSION_STRING "1.59.0" +#define GRPC_CPP_VERSION_STRING "1.59.2" #endif // GRPCPP_VERSION_INFO_H diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/grpcio-tools-1.59.0/grpc_version.py new/grpcio-tools-1.59.2/grpc_version.py --- old/grpcio-tools-1.59.0/grpc_version.py 2023-09-29 01:27:02.000000000 +0200 +++ new/grpcio-tools-1.59.2/grpc_version.py 2023-10-30 19:02:42.000000000 +0100 @@ -14,5 +14,5 @@ # AUTO-GENERATED FROM `$REPO_ROOT/templates/tools/distrib/python/grpcio_tools/grpc_version.py.template`!!! -VERSION = '1.59.0' +VERSION = '1.59.2' PROTOBUF_VERSION = '3.24.3' diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/grpcio-tools-1.59.0/grpcio_tools.egg-info/PKG-INFO new/grpcio-tools-1.59.2/grpcio_tools.egg-info/PKG-INFO --- old/grpcio-tools-1.59.0/grpcio_tools.egg-info/PKG-INFO 2023-09-29 01:35:25.000000000 +0200 +++ new/grpcio-tools-1.59.2/grpcio_tools.egg-info/PKG-INFO 2023-10-30 19:07:39.000000000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: grpcio-tools -Version: 1.59.0 +Version: 1.59.2 Summary: Protobuf code generator for gRPC Home-page: https://grpc.io Author: The gRPC Authors @@ -15,7 +15,7 @@ Requires-Python: >=3.7 Description-Content-Type: text/x-rst Requires-Dist: protobuf<5.0dev,>=4.21.6 -Requires-Dist: grpcio>=1.59.0 +Requires-Dist: grpcio>=1.59.2 Requires-Dist: setuptools gRPC Python Tools diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/grpcio-tools-1.59.0/grpcio_tools.egg-info/requires.txt new/grpcio-tools-1.59.2/grpcio_tools.egg-info/requires.txt --- old/grpcio-tools-1.59.0/grpcio_tools.egg-info/requires.txt 2023-09-29 01:35:25.000000000 +0200 +++ new/grpcio-tools-1.59.2/grpcio_tools.egg-info/requires.txt 2023-10-30 19:07:39.000000000 +0100 @@ -1,3 +1,3 @@ protobuf<5.0dev,>=4.21.6 -grpcio>=1.59.0 +grpcio>=1.59.2 setuptools