uv.lock: upgrade all packages #88
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request updates the generated protocol buffer files to use a newer version of the Protobuf Python runtime and modifies import paths and typing annotations for improved compatibility and consistency. Below are the most important changes grouped by theme:
Protobuf Runtime Update:
5.29.3
to6.31.0
across all generated.py
files (client_compat_pb2.py
,config_pb2.py
,server_compat_pb2.py
,service_pb2.py
,suite_pb2.py
). This includes changes to the_runtime_version.ValidateProtobufRuntimeVersion
function to reflect the new version. [1] [2] [3] [4] [5] [6] [7] [8] [9] [10]Import Path Adjustments:
.py
and.pyi
files to usegen.connectrpc.conformance.v1
instead ofconnectrpc.conformance.v1
for consistency with the generated file structure. [1] [2] [3] [4] [5]Typing Annotation Updates:
typing.Iterable
andtyping.Mapping
withcollections.abc.Iterable
andcollections.abc.Mapping
in.pyi
files to align with modern Python typing standards. [1] [2] [3] [4] [5]