Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-googleapis-common-protos for 
openSUSE:Factory checked in at 2023-06-20 16:49:41
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-googleapis-common-protos (Old)
 and      /work/SRC/openSUSE:Factory/.python-googleapis-common-protos.new.15902 
(New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-googleapis-common-protos"

Tue Jun 20 16:49:41 2023 rev:14 rq:1093960 version:1.59.1

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/python-googleapis-common-protos/python-googleapis-common-protos.changes
  2023-04-05 21:36:24.110824203 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-googleapis-common-protos.new.15902/python-googleapis-common-protos.changes
       2023-06-20 16:49:41.251840703 +0200
@@ -1,0 +2,6 @@
+Tue Jun 20 10:02:02 UTC 2023 - John Paul Adrian Glaubitz 
<adrian.glaub...@suse.com>
+
+- Update to 1.59.1
+  * Invalid `dev` version identifiers in `setup.py` (#166), closes (#165)
+
+-------------------------------------------------------------------

Old:
----
  googleapis-common-protos-1.59.0.tar.gz

New:
----
  googleapis-common-protos-1.59.1.tar.gz

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

Other differences:
------------------
++++++ python-googleapis-common-protos.spec ++++++
--- /var/tmp/diff_new_pack.UjiazC/_old  2023-06-20 16:49:41.875844454 +0200
+++ /var/tmp/diff_new_pack.UjiazC/_new  2023-06-20 16:49:41.883844502 +0200
@@ -20,7 +20,7 @@
 %define modname googleapis-common-protos
 %define pkgname %{lua:pname,_ = string.gsub(rpm.expand('%modname'), '-' , 
'_');print(pname)}
 Name:           python-googleapis-common-protos
-Version:        1.59.0
+Version:        1.59.1
 Release:        0
 Summary:        Common protobufs used in Google APIs
 License:        Apache-2.0

++++++ googleapis-common-protos-1.59.0.tar.gz -> 
googleapis-common-protos-1.59.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/googleapis-common-protos-1.59.0/PKG-INFO 
new/googleapis-common-protos-1.59.1/PKG-INFO
--- old/googleapis-common-protos-1.59.0/PKG-INFO        2023-03-21 
14:28:42.617650700 +0100
+++ new/googleapis-common-protos-1.59.1/PKG-INFO        2023-06-12 
23:06:57.013317600 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: googleapis-common-protos
-Version: 1.59.0
+Version: 1.59.1
 Summary: Common protobufs used in Google APIs
 Home-page: https://github.com/googleapis/python-api-common-protos
 Author: Google LLC
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/googleapis-common-protos-1.59.0/google/api/client.proto 
new/googleapis-common-protos-1.59.1/google/api/client.proto
--- old/googleapis-common-protos-1.59.0/google/api/client.proto 2023-03-21 
14:26:14.000000000 +0100
+++ new/googleapis-common-protos-1.59.1/google/api/client.proto 2023-06-12 
23:04:12.000000000 +0200
@@ -157,7 +157,7 @@
   // long-running operation pattern.
   repeated MethodSettings method_settings = 2;
 
-  // Link to a place that API users can report issues.  Example:
+  // Link to a *public* URI where users can report issues.  Example:
   // 
https://issuetracker.google.com/issues/new?component=190865&template=1161103
   string new_issue_uri = 101;
 
@@ -257,6 +257,36 @@
 message DotnetSettings {
   // Some settings.
   CommonLanguageSettings common = 1;
+
+  // Map from original service names to renamed versions.
+  // This is used when the default generated types
+  // would cause a naming conflict. (Neither name is
+  // fully-qualified.)
+  // Example: Subscriber to SubscriberServiceApi.
+  map<string, string> renamed_services = 2;
+
+  // Map from full resource types to the effective short name
+  // for the resource. This is used when otherwise resource
+  // named from different services would cause naming collisions.
+  // Example entry:
+  // "datalabeling.googleapis.com/Dataset": "DataLabelingDataset"
+  map<string, string> renamed_resources = 3;
+
+  // List of full resource types to ignore during generation.
+  // This is typically used for API-specific Location resources,
+  // which should be handled by the generator as if they were actually
+  // the common Location resources.
+  // Example entry: "documentai.googleapis.com/Location"
+  repeated string ignored_resources = 4;
+
+  // Namespaces which must be aliased in snippets due to
+  // a known (but non-generator-predictable) naming collision
+  repeated string forced_namespace_aliases = 5;
+
+  // Method signatures (in the form "service.method(signature)")
+  // which are provided separately, so shouldn't be generated.
+  // Snippets *calling* these methods are still generated, however.
+  repeated string handwritten_signatures = 6;
 }
 
 // Settings for Ruby client libraries.
@@ -338,6 +368,15 @@
 
   // Street View Org.
   STREET_VIEW = 4;
+
+  // Shopping Org.
+  SHOPPING = 5;
+
+  // Geo Org.
+  GEO = 6;
+
+  // Generative AI - https://developers.generativeai.google
+  GENERATIVE_AI = 7;
 }
 
 // To where should client libraries be published?
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/googleapis-common-protos-1.59.0/google/api/client_pb2.py 
new/googleapis-common-protos-1.59.1/google/api/client_pb2.py
--- old/googleapis-common-protos-1.59.0/google/api/client_pb2.py        
2023-03-21 14:26:14.000000000 +0100
+++ new/googleapis-common-protos-1.59.1/google/api/client_pb2.py        
2023-06-12 23:04:12.000000000 +0200
@@ -35,7 +35,7 @@
 
 
 DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(
-    
b'\n\x17google/api/client.proto\x12\ngoogle.api\x1a\x1dgoogle/api/launch_stage.proto\x1a
 
google/protobuf/descriptor.proto\x1a\x1egoogle/protobuf/duration.proto"t\n\x16\x43ommonLanguageSettings\x12\x1e\n\x12reference_docs_uri\x18\x01
 \x01(\tB\x02\x18\x01\x12:\n\x0c\x64\x65stinations\x18\x02 
\x03(\x0e\x32$.google.api.ClientLibraryDestination"\xfb\x03\n\x15\x43lientLibrarySettings\x12\x0f\n\x07version\x18\x01
 \x01(\t\x12-\n\x0claunch_stage\x18\x02 
\x01(\x0e\x32\x17.google.api.LaunchStage\x12\x1a\n\x12rest_numeric_enums\x18\x03
 \x01(\x08\x12/\n\rjava_settings\x18\x15 
\x01(\x0b\x32\x18.google.api.JavaSettings\x12-\n\x0c\x63pp_settings\x18\x16 
\x01(\x0b\x32\x17.google.api.CppSettings\x12-\n\x0cphp_settings\x18\x17 
\x01(\x0b\x32\x17.google.api.PhpSettings\x12\x33\n\x0fpython_settings\x18\x18 
\x01(\x0b\x32\x1a.google.api.PythonSettings\x12/\n\rnode_settings\x18\x19 
\x01(\x0b\x32\x18.google.api.NodeSettings\x12\x33\n\x0f\x64otnet_settings\x18\x1a
 \x01(\x0b\x32\x1a.google.api.DotnetSettin
 gs\x12/\n\rruby_settings\x18\x1b 
\x01(\x0b\x32\x18.google.api.RubySettings\x12+\n\x0bgo_settings\x18\x1c 
\x01(\x0b\x32\x16.google.api.GoSettings"\xfe\x02\n\nPublishing\x12\x33\n\x0fmethod_settings\x18\x02
 \x03(\x0b\x32\x1a.google.api.MethodSettings\x12\x15\n\rnew_issue_uri\x18\x65 
\x01(\t\x12\x19\n\x11\x64ocumentation_uri\x18\x66 
\x01(\t\x12\x16\n\x0e\x61pi_short_name\x18g 
\x01(\t\x12\x14\n\x0cgithub_label\x18h 
\x01(\t\x12\x1e\n\x16\x63odeowner_github_teams\x18i 
\x03(\t\x12\x16\n\x0e\x64oc_tag_prefix\x18j \x01(\t\x12;\n\x0corganization\x18k 
\x01(\x0e\x32%.google.api.ClientLibraryOrganization\x12;\n\x10library_settings\x18m
 
\x03(\x0b\x32!.google.api.ClientLibrarySettings\x12)\n!proto_reference_documentation_uri\x18n
 \x01(\t"\xe3\x01\n\x0cJavaSettings\x12\x17\n\x0flibrary_package\x18\x01 
\x01(\t\x12L\n\x13service_class_names\x18\x02 
\x03(\x0b\x32/.google.api.JavaSettings.ServiceClassNamesEntry\x12\x32\n\x06\x63ommon\x18\x03
 \x01(\x0b\x32".google.api.CommonLanguageSettings\x1a\x38\n\x1
 6ServiceClassNamesEntry\x12\x0b\n\x03key\x18\x01 
\x01(\t\x12\r\n\x05value\x18\x02 
\x01(\t:\x02\x38\x01"A\n\x0b\x43ppSettings\x12\x32\n\x06\x63ommon\x18\x01 
\x01(\x0b\x32".google.api.CommonLanguageSettings"A\n\x0bPhpSettings\x12\x32\n\x06\x63ommon\x18\x01
 
\x01(\x0b\x32".google.api.CommonLanguageSettings"D\n\x0ePythonSettings\x12\x32\n\x06\x63ommon\x18\x01
 
\x01(\x0b\x32".google.api.CommonLanguageSettings"B\n\x0cNodeSettings\x12\x32\n\x06\x63ommon\x18\x01
 
\x01(\x0b\x32".google.api.CommonLanguageSettings"D\n\x0e\x44otnetSettings\x12\x32\n\x06\x63ommon\x18\x01
 
\x01(\x0b\x32".google.api.CommonLanguageSettings"B\n\x0cRubySettings\x12\x32\n\x06\x63ommon\x18\x01
 
\x01(\x0b\x32".google.api.CommonLanguageSettings"@\n\nGoSettings\x12\x32\n\x06\x63ommon\x18\x01
 
\x01(\x0b\x32".google.api.CommonLanguageSettings"\xb0\x02\n\x0eMethodSettings\x12\x10\n\x08selector\x18\x01
 \x01(\t\x12<\n\x0clong_running\x18\x02 
\x01(\x0b\x32&.google.api.MethodSettings.LongRunning\x1a\xcd\x01\n\x0bLongRunning\x12\x35\n\
 x12initial_poll_delay\x18\x01 
\x01(\x0b\x32\x19.google.protobuf.Duration\x12\x1d\n\x15poll_delay_multiplier\x18\x02
 \x01(\x02\x12\x31\n\x0emax_poll_delay\x18\x03 
\x01(\x0b\x32\x19.google.protobuf.Duration\x12\x35\n\x12total_poll_timeout\x18\x04
 
\x01(\x0b\x32\x19.google.protobuf.Duration*y\n\x19\x43lientLibraryOrganization\x12+\n\'CLIENT_LIBRARY_ORGANIZATION_UNSPECIFIED\x10\x00\x12\t\n\x05\x43LOUD\x10\x01\x12\x07\n\x03\x41\x44S\x10\x02\x12\n\n\x06PHOTOS\x10\x03\x12\x0f\n\x0bSTREET_VIEW\x10\x04*g\n\x18\x43lientLibraryDestination\x12*\n&CLIENT_LIBRARY_DESTINATION_UNSPECIFIED\x10\x00\x12\n\n\x06GITHUB\x10\n\x12\x13\n\x0fPACKAGE_MANAGER\x10\x14:9\n\x10method_signature\x12\x1e.google.protobuf.MethodOptions\x18\x9b\x08
 
\x03(\t:6\n\x0c\x64\x65\x66\x61ult_host\x12\x1f.google.protobuf.ServiceOptions\x18\x99\x08
 \x01(\t:6\n\x0coauth_scopes\x12\x1f.google.protobuf.ServiceOptions\x18\x9a\x08 
\x01(\tBi\n\x0e\x63om.google.apiB\x0b\x43lientProtoP\x01ZAgoogle.golang.org/genproto/googleapis/api/annot
 ations;annotations\xa2\x02\x04GAPIb\x06proto3'
+    
b'\n\x17google/api/client.proto\x12\ngoogle.api\x1a\x1dgoogle/api/launch_stage.proto\x1a
 
google/protobuf/descriptor.proto\x1a\x1egoogle/protobuf/duration.proto"t\n\x16\x43ommonLanguageSettings\x12\x1e\n\x12reference_docs_uri\x18\x01
 \x01(\tB\x02\x18\x01\x12:\n\x0c\x64\x65stinations\x18\x02 
\x03(\x0e\x32$.google.api.ClientLibraryDestination"\xfb\x03\n\x15\x43lientLibrarySettings\x12\x0f\n\x07version\x18\x01
 \x01(\t\x12-\n\x0claunch_stage\x18\x02 
\x01(\x0e\x32\x17.google.api.LaunchStage\x12\x1a\n\x12rest_numeric_enums\x18\x03
 \x01(\x08\x12/\n\rjava_settings\x18\x15 
\x01(\x0b\x32\x18.google.api.JavaSettings\x12-\n\x0c\x63pp_settings\x18\x16 
\x01(\x0b\x32\x17.google.api.CppSettings\x12-\n\x0cphp_settings\x18\x17 
\x01(\x0b\x32\x17.google.api.PhpSettings\x12\x33\n\x0fpython_settings\x18\x18 
\x01(\x0b\x32\x1a.google.api.PythonSettings\x12/\n\rnode_settings\x18\x19 
\x01(\x0b\x32\x18.google.api.NodeSettings\x12\x33\n\x0f\x64otnet_settings\x18\x1a
 \x01(\x0b\x32\x1a.google.api.DotnetSettin
 gs\x12/\n\rruby_settings\x18\x1b 
\x01(\x0b\x32\x18.google.api.RubySettings\x12+\n\x0bgo_settings\x18\x1c 
\x01(\x0b\x32\x16.google.api.GoSettings"\xfe\x02\n\nPublishing\x12\x33\n\x0fmethod_settings\x18\x02
 \x03(\x0b\x32\x1a.google.api.MethodSettings\x12\x15\n\rnew_issue_uri\x18\x65 
\x01(\t\x12\x19\n\x11\x64ocumentation_uri\x18\x66 
\x01(\t\x12\x16\n\x0e\x61pi_short_name\x18g 
\x01(\t\x12\x14\n\x0cgithub_label\x18h 
\x01(\t\x12\x1e\n\x16\x63odeowner_github_teams\x18i 
\x03(\t\x12\x16\n\x0e\x64oc_tag_prefix\x18j \x01(\t\x12;\n\x0corganization\x18k 
\x01(\x0e\x32%.google.api.ClientLibraryOrganization\x12;\n\x10library_settings\x18m
 
\x03(\x0b\x32!.google.api.ClientLibrarySettings\x12)\n!proto_reference_documentation_uri\x18n
 \x01(\t"\xe3\x01\n\x0cJavaSettings\x12\x17\n\x0flibrary_package\x18\x01 
\x01(\t\x12L\n\x13service_class_names\x18\x02 
\x03(\x0b\x32/.google.api.JavaSettings.ServiceClassNamesEntry\x12\x32\n\x06\x63ommon\x18\x03
 \x01(\x0b\x32".google.api.CommonLanguageSettings\x1a\x38\n\x1
 6ServiceClassNamesEntry\x12\x0b\n\x03key\x18\x01 
\x01(\t\x12\r\n\x05value\x18\x02 
\x01(\t:\x02\x38\x01"A\n\x0b\x43ppSettings\x12\x32\n\x06\x63ommon\x18\x01 
\x01(\x0b\x32".google.api.CommonLanguageSettings"A\n\x0bPhpSettings\x12\x32\n\x06\x63ommon\x18\x01
 
\x01(\x0b\x32".google.api.CommonLanguageSettings"D\n\x0ePythonSettings\x12\x32\n\x06\x63ommon\x18\x01
 
\x01(\x0b\x32".google.api.CommonLanguageSettings"B\n\x0cNodeSettings\x12\x32\n\x06\x63ommon\x18\x01
 
\x01(\x0b\x32".google.api.CommonLanguageSettings"\xaa\x03\n\x0e\x44otnetSettings\x12\x32\n\x06\x63ommon\x18\x01
 
\x01(\x0b\x32".google.api.CommonLanguageSettings\x12I\n\x10renamed_services\x18\x02
 
\x03(\x0b\x32/.google.api.DotnetSettings.RenamedServicesEntry\x12K\n\x11renamed_resources\x18\x03
 
\x03(\x0b\x32\x30.google.api.DotnetSettings.RenamedResourcesEntry\x12\x19\n\x11ignored_resources\x18\x04
 \x03(\t\x12 \n\x18\x66orced_namespace_aliases\x18\x05 
\x03(\t\x12\x1e\n\x16handwritten_signatures\x18\x06 
\x03(\t\x1a\x36\n\x14RenamedService
 sEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 
\x01(\t:\x02\x38\x01\x1a\x37\n\x15RenamedResourcesEntry\x12\x0b\n\x03key\x18\x01
 \x01(\t\x12\r\n\x05value\x18\x02 
\x01(\t:\x02\x38\x01"B\n\x0cRubySettings\x12\x32\n\x06\x63ommon\x18\x01 
\x01(\x0b\x32".google.api.CommonLanguageSettings"@\n\nGoSettings\x12\x32\n\x06\x63ommon\x18\x01
 
\x01(\x0b\x32".google.api.CommonLanguageSettings"\xb0\x02\n\x0eMethodSettings\x12\x10\n\x08selector\x18\x01
 \x01(\t\x12<\n\x0clong_running\x18\x02 
\x01(\x0b\x32&.google.api.MethodSettings.LongRunning\x1a\xcd\x01\n\x0bLongRunning\x12\x35\n\x12initial_poll_delay\x18\x01
 
\x01(\x0b\x32\x19.google.protobuf.Duration\x12\x1d\n\x15poll_delay_multiplier\x18\x02
 \x01(\x02\x12\x31\n\x0emax_poll_delay\x18\x03 
\x01(\x0b\x32\x19.google.protobuf.Duration\x12\x35\n\x12total_poll_timeout\x18\x04
 
\x01(\x0b\x32\x19.google.protobuf.Duration*\xa3\x01\n\x19\x43lientLibraryOrganization\x12+\n\'CLIENT_LIBRARY_ORGANIZATION_UNSPECIFIED\x10\x00\x12\t\n\x05\x43LOUD\x10\
 
x01\x12\x07\n\x03\x41\x44S\x10\x02\x12\n\n\x06PHOTOS\x10\x03\x12\x0f\n\x0bSTREET_VIEW\x10\x04\x12\x0c\n\x08SHOPPING\x10\x05\x12\x07\n\x03GEO\x10\x06\x12\x11\n\rGENERATIVE_AI\x10\x07*g\n\x18\x43lientLibraryDestination\x12*\n&CLIENT_LIBRARY_DESTINATION_UNSPECIFIED\x10\x00\x12\n\n\x06GITHUB\x10\n\x12\x13\n\x0fPACKAGE_MANAGER\x10\x14:9\n\x10method_signature\x12\x1e.google.protobuf.MethodOptions\x18\x9b\x08
 
\x03(\t:6\n\x0c\x64\x65\x66\x61ult_host\x12\x1f.google.protobuf.ServiceOptions\x18\x99\x08
 \x01(\t:6\n\x0coauth_scopes\x12\x1f.google.protobuf.ServiceOptions\x18\x9a\x08 
\x01(\tBi\n\x0e\x63om.google.apiB\x0b\x43lientProtoP\x01ZAgoogle.golang.org/genproto/googleapis/api/annotations;annotations\xa2\x02\x04GAPIb\x06proto3'
 )
 
 _CLIENTLIBRARYORGANIZATION = 
DESCRIPTOR.enum_types_by_name["ClientLibraryOrganization"]
@@ -49,6 +49,9 @@
 ADS = 2
 PHOTOS = 3
 STREET_VIEW = 4
+SHOPPING = 5
+GEO = 6
+GENERATIVE_AI = 7
 CLIENT_LIBRARY_DESTINATION_UNSPECIFIED = 0
 GITHUB = 10
 PACKAGE_MANAGER = 20
@@ -72,6 +75,12 @@
 _PYTHONSETTINGS = DESCRIPTOR.message_types_by_name["PythonSettings"]
 _NODESETTINGS = DESCRIPTOR.message_types_by_name["NodeSettings"]
 _DOTNETSETTINGS = DESCRIPTOR.message_types_by_name["DotnetSettings"]
+_DOTNETSETTINGS_RENAMEDSERVICESENTRY = _DOTNETSETTINGS.nested_types_by_name[
+    "RenamedServicesEntry"
+]
+_DOTNETSETTINGS_RENAMEDRESOURCESENTRY = _DOTNETSETTINGS.nested_types_by_name[
+    "RenamedResourcesEntry"
+]
 _RUBYSETTINGS = DESCRIPTOR.message_types_by_name["RubySettings"]
 _GOSETTINGS = DESCRIPTOR.message_types_by_name["GoSettings"]
 _METHODSETTINGS = DESCRIPTOR.message_types_by_name["MethodSettings"]
@@ -178,12 +187,32 @@
     "DotnetSettings",
     (_message.Message,),
     {
+        "RenamedServicesEntry": _reflection.GeneratedProtocolMessageType(
+            "RenamedServicesEntry",
+            (_message.Message,),
+            {
+                "DESCRIPTOR": _DOTNETSETTINGS_RENAMEDSERVICESENTRY,
+                "__module__": "google.api.client_pb2"
+                # 
@@protoc_insertion_point(class_scope:google.api.DotnetSettings.RenamedServicesEntry)
+            },
+        ),
+        "RenamedResourcesEntry": _reflection.GeneratedProtocolMessageType(
+            "RenamedResourcesEntry",
+            (_message.Message,),
+            {
+                "DESCRIPTOR": _DOTNETSETTINGS_RENAMEDRESOURCESENTRY,
+                "__module__": "google.api.client_pb2"
+                # 
@@protoc_insertion_point(class_scope:google.api.DotnetSettings.RenamedResourcesEntry)
+            },
+        ),
         "DESCRIPTOR": _DOTNETSETTINGS,
         "__module__": "google.api.client_pb2"
         # @@protoc_insertion_point(class_scope:google.api.DotnetSettings)
     },
 )
 _sym_db.RegisterMessage(DotnetSettings)
+_sym_db.RegisterMessage(DotnetSettings.RenamedServicesEntry)
+_sym_db.RegisterMessage(DotnetSettings.RenamedResourcesEntry)
 
 RubySettings = _reflection.GeneratedProtocolMessageType(
     "RubySettings",
@@ -247,10 +276,14 @@
     ]._serialized_options = b"\030\001"
     _JAVASETTINGS_SERVICECLASSNAMESENTRY._options = None
     _JAVASETTINGS_SERVICECLASSNAMESENTRY._serialized_options = b"8\001"
-    _CLIENTLIBRARYORGANIZATION._serialized_start = 2162
-    _CLIENTLIBRARYORGANIZATION._serialized_end = 2283
-    _CLIENTLIBRARYDESTINATION._serialized_start = 2285
-    _CLIENTLIBRARYDESTINATION._serialized_end = 2388
+    _DOTNETSETTINGS_RENAMEDSERVICESENTRY._options = None
+    _DOTNETSETTINGS_RENAMEDSERVICESENTRY._serialized_options = b"8\001"
+    _DOTNETSETTINGS_RENAMEDRESOURCESENTRY._options = None
+    _DOTNETSETTINGS_RENAMEDRESOURCESENTRY._serialized_options = b"8\001"
+    _CLIENTLIBRARYORGANIZATION._serialized_start = 2522
+    _CLIENTLIBRARYORGANIZATION._serialized_end = 2685
+    _CLIENTLIBRARYDESTINATION._serialized_start = 2687
+    _CLIENTLIBRARYDESTINATION._serialized_end = 2790
     _COMMONLANGUAGESETTINGS._serialized_start = 136
     _COMMONLANGUAGESETTINGS._serialized_end = 252
     _CLIENTLIBRARYSETTINGS._serialized_start = 255
@@ -269,14 +302,18 @@
     _PYTHONSETTINGS._serialized_end = 1581
     _NODESETTINGS._serialized_start = 1583
     _NODESETTINGS._serialized_end = 1649
-    _DOTNETSETTINGS._serialized_start = 1651
-    _DOTNETSETTINGS._serialized_end = 1719
-    _RUBYSETTINGS._serialized_start = 1721
-    _RUBYSETTINGS._serialized_end = 1787
-    _GOSETTINGS._serialized_start = 1789
-    _GOSETTINGS._serialized_end = 1853
-    _METHODSETTINGS._serialized_start = 1856
-    _METHODSETTINGS._serialized_end = 2160
-    _METHODSETTINGS_LONGRUNNING._serialized_start = 1955
-    _METHODSETTINGS_LONGRUNNING._serialized_end = 2160
+    _DOTNETSETTINGS._serialized_start = 1652
+    _DOTNETSETTINGS._serialized_end = 2078
+    _DOTNETSETTINGS_RENAMEDSERVICESENTRY._serialized_start = 1967
+    _DOTNETSETTINGS_RENAMEDSERVICESENTRY._serialized_end = 2021
+    _DOTNETSETTINGS_RENAMEDRESOURCESENTRY._serialized_start = 2023
+    _DOTNETSETTINGS_RENAMEDRESOURCESENTRY._serialized_end = 2078
+    _RUBYSETTINGS._serialized_start = 2080
+    _RUBYSETTINGS._serialized_end = 2146
+    _GOSETTINGS._serialized_start = 2148
+    _GOSETTINGS._serialized_end = 2212
+    _METHODSETTINGS._serialized_start = 2215
+    _METHODSETTINGS._serialized_end = 2519
+    _METHODSETTINGS_LONGRUNNING._serialized_start = 2314
+    _METHODSETTINGS_LONGRUNNING._serialized_end = 2519
 # @@protoc_insertion_point(module_scope)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/googleapis-common-protos-1.59.0/google/api/distribution.proto 
new/googleapis-common-protos-1.59.1/google/api/distribution.proto
--- old/googleapis-common-protos-1.59.0/google/api/distribution.proto   
2023-03-21 14:26:14.000000000 +0100
+++ new/googleapis-common-protos-1.59.1/google/api/distribution.proto   
2023-06-12 23:04:12.000000000 +0200
@@ -73,6 +73,7 @@
     // following boundaries:
     //
     //    Upper bound (0 <= i < N-1):     offset + (width * i).
+    //
     //    Lower bound (1 <= i < N):       offset + (width * (i - 1)).
     message Linear {
       // Must be greater than 0.
@@ -93,6 +94,7 @@
     // following boundaries:
     //
     //    Upper bound (0 <= i < N-1):     scale * (growth_factor ^ i).
+    //
     //    Lower bound (1 <= i < N):       scale * (growth_factor ^ (i - 1)).
     message Exponential {
       // Must be greater than 0.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/googleapis-common-protos-1.59.0/google/logging/type/http_request.proto 
new/googleapis-common-protos-1.59.1/google/logging/type/http_request.proto
--- old/googleapis-common-protos-1.59.0/google/logging/type/http_request.proto  
2023-03-21 14:26:14.000000000 +0100
+++ new/googleapis-common-protos-1.59.1/google/logging/type/http_request.proto  
2023-06-12 23:04:12.000000000 +0200
@@ -1,4 +1,4 @@
-// Copyright 2022 Google LLC
+// Copyright 2023 Google LLC
 //
 // Licensed under the Apache License, Version 2.0 (the "License");
 // you may not use this file except in compliance with the License.
@@ -67,7 +67,7 @@
 
   // The referer URL of the request, as defined in
   // [HTTP/1.1 Header Field
-  // Definitions](http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html).
+  // Definitions](https://datatracker.ietf.org/doc/html/rfc2616#section-14.36).
   string referer = 8;
 
   // The request processing latency on the server, from the time the request 
was
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/googleapis-common-protos-1.59.0/google/logging/type/log_severity.proto 
new/googleapis-common-protos-1.59.1/google/logging/type/log_severity.proto
--- old/googleapis-common-protos-1.59.0/google/logging/type/log_severity.proto  
2023-03-21 14:26:14.000000000 +0100
+++ new/googleapis-common-protos-1.59.1/google/logging/type/log_severity.proto  
2023-06-12 23:04:12.000000000 +0200
@@ -1,4 +1,4 @@
-// Copyright 2022 Google LLC
+// Copyright 2023 Google LLC
 //
 // Licensed under the Apache License, Version 2.0 (the "License");
 // you may not use this file except in compliance with the License.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/googleapis-common-protos-1.59.0/googleapis_common_protos.egg-info/PKG-INFO 
new/googleapis-common-protos-1.59.1/googleapis_common_protos.egg-info/PKG-INFO
--- 
old/googleapis-common-protos-1.59.0/googleapis_common_protos.egg-info/PKG-INFO  
    2023-03-21 14:28:42.000000000 +0100
+++ 
new/googleapis-common-protos-1.59.1/googleapis_common_protos.egg-info/PKG-INFO  
    2023-06-12 23:06:56.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: googleapis-common-protos
-Version: 1.59.0
+Version: 1.59.1
 Summary: Common protobufs used in Google APIs
 Home-page: https://github.com/googleapis/python-api-common-protos
 Author: Google LLC
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/googleapis-common-protos-1.59.0/googleapis_common_protos.egg-info/requires.txt
 
new/googleapis-common-protos-1.59.1/googleapis_common_protos.egg-info/requires.txt
--- 
old/googleapis-common-protos-1.59.0/googleapis_common_protos.egg-info/requires.txt
  2023-03-21 14:28:42.000000000 +0100
+++ 
new/googleapis-common-protos-1.59.1/googleapis_common_protos.egg-info/requires.txt
  2023-06-12 23:06:56.000000000 +0200
@@ -1,4 +1,4 @@
-protobuf!=3.20.0,!=3.20.1,!=4.21.1,!=4.21.2,!=4.21.3,!=4.21.4,!=4.21.5,<5.0.0dev,>=3.19.5
+protobuf!=3.20.0,!=3.20.1,!=4.21.1,!=4.21.2,!=4.21.3,!=4.21.4,!=4.21.5,<5.0.0.dev0,>=3.19.5
 
 [grpc]
-grpcio<2.0.0dev,>=1.44.0
+grpcio<2.0.0.dev0,>=1.44.0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/googleapis-common-protos-1.59.0/setup.py 
new/googleapis-common-protos-1.59.1/setup.py
--- old/googleapis-common-protos-1.59.0/setup.py        2023-03-21 
14:26:14.000000000 +0100
+++ new/googleapis-common-protos-1.59.1/setup.py        2023-06-12 
23:04:12.000000000 +0200
@@ -20,13 +20,13 @@
 
 name = "googleapis-common-protos"
 description = "Common protobufs used in Google APIs"
-version = "1.59.0"
+version = "1.59.1"
 release_status = "Development Status :: 5 - Production/Stable"
 dependencies = [
-    
"protobuf>=3.19.5,<5.0.0dev,!=3.20.0,!=3.20.1,!=4.21.1,!=4.21.2,!=4.21.3,!=4.21.4,!=4.21.5",
+    
"protobuf>=3.19.5,<5.0.0.dev0,!=3.20.0,!=3.20.1,!=4.21.1,!=4.21.2,!=4.21.3,!=4.21.4,!=4.21.5",
 ]
 
-extras_require = {"grpc": ["grpcio >= 1.44.0, <2.0.0dev"]}
+extras_require = {"grpc": ["grpcio >= 1.44.0, <2.0.0.dev0"]}
 
 package_root = os.path.abspath(os.path.dirname(__file__))
 

Reply via email to