diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 39fa8ed..28d28bd 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.0.39" + ".": "0.0.40" } diff --git a/CHANGELOG.md b/CHANGELOG.md index ffc3acf..139eafa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [0.0.40](https://github.com/cloudquery/plugin-pb-python/compare/v0.0.39...v0.0.40) (2025-02-03) + + +### Bug Fixes + +* **deps:** Update dependency grpcio to v1.70.0 ([#143](https://github.com/cloudquery/plugin-pb-python/issues/143)) ([3f9ab43](https://github.com/cloudquery/plugin-pb-python/commit/3f9ab43069600c4712f1773ac31d9ff824fe0049)) +* **deps:** Update dependency grpcio-tools to v1.70.0 ([#145](https://github.com/cloudquery/plugin-pb-python/issues/145)) ([6244d81](https://github.com/cloudquery/plugin-pb-python/commit/6244d818e6a95a3a0e1f2bef528245628413d195)) +* **deps:** Update dependency protobuf to v5.29.3 ([#142](https://github.com/cloudquery/plugin-pb-python/issues/142)) ([2ad324c](https://github.com/cloudquery/plugin-pb-python/commit/2ad324c3b332ea4147cccd64a5d6bfa0ba5312ab)) +* **deps:** Update dependency pyarrow to v18.1.0 ([#146](https://github.com/cloudquery/plugin-pb-python/issues/146)) ([b24fdff](https://github.com/cloudquery/plugin-pb-python/commit/b24fdff4f2af1e0c4ec7c35d7e1bda37847d7889)) +* **deps:** Update dependency pyarrow to v19 ([#147](https://github.com/cloudquery/plugin-pb-python/issues/147)) ([e20f876](https://github.com/cloudquery/plugin-pb-python/commit/e20f87631940e908e8ec57dc75bafb1135b8e4c9)) +* Generate Python Code from `plugin-pb` ([#148](https://github.com/cloudquery/plugin-pb-python/issues/148)) ([a8af1f2](https://github.com/cloudquery/plugin-pb-python/commit/a8af1f2ac441174b24113745e40cc1576a935bea)) + ## [0.0.39](https://github.com/cloudquery/plugin-pb-python/compare/v0.0.38...v0.0.39) (2025-01-01) diff --git a/cloudquery/discovery_v1/discovery_pb2.py b/cloudquery/discovery_v1/discovery_pb2.py index 86a7779..37f9976 100644 --- a/cloudquery/discovery_v1/discovery_pb2.py +++ b/cloudquery/discovery_v1/discovery_pb2.py @@ -2,7 +2,7 @@ # Generated by the protocol buffer compiler. DO NOT EDIT! # NO CHECKED-IN PROTOBUF GENCODE # source: cloudquery/discovery_v1/discovery.proto -# Protobuf Python Version: 5.28.1 +# Protobuf Python Version: 5.29.0 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool @@ -12,8 +12,8 @@ _runtime_version.ValidateProtobufRuntimeVersion( _runtime_version.Domain.PUBLIC, 5, - 28, - 1, + 29, + 0, '', 'cloudquery/discovery_v1/discovery.proto' ) diff --git a/cloudquery/discovery_v1/discovery_pb2_grpc.py b/cloudquery/discovery_v1/discovery_pb2_grpc.py index 6224bea..fd11ff1 100644 --- a/cloudquery/discovery_v1/discovery_pb2_grpc.py +++ b/cloudquery/discovery_v1/discovery_pb2_grpc.py @@ -5,7 +5,7 @@ from cloudquery.discovery_v1 import discovery_pb2 as cloudquery_dot_discovery__v1_dot_discovery__pb2 -GRPC_GENERATED_VERSION = '1.68.1' +GRPC_GENERATED_VERSION = '1.70.0' GRPC_VERSION = grpc.__version__ _version_not_supported = False diff --git a/cloudquery/plugin_v3/plugin_pb2.py b/cloudquery/plugin_v3/plugin_pb2.py index eed556d..464b046 100644 --- a/cloudquery/plugin_v3/plugin_pb2.py +++ b/cloudquery/plugin_v3/plugin_pb2.py @@ -2,7 +2,7 @@ # Generated by the protocol buffer compiler. DO NOT EDIT! # NO CHECKED-IN PROTOBUF GENCODE # source: cloudquery/plugin_v3/plugin.proto -# Protobuf Python Version: 5.28.1 +# Protobuf Python Version: 5.29.0 """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool @@ -12,8 +12,8 @@ _runtime_version.ValidateProtobufRuntimeVersion( _runtime_version.Domain.PUBLIC, 5, - 28, - 1, + 29, + 0, '', 'cloudquery/plugin_v3/plugin.proto' ) diff --git a/cloudquery/plugin_v3/plugin_pb2_grpc.py b/cloudquery/plugin_v3/plugin_pb2_grpc.py index ad11b24..e04d89d 100644 --- a/cloudquery/plugin_v3/plugin_pb2_grpc.py +++ b/cloudquery/plugin_v3/plugin_pb2_grpc.py @@ -5,7 +5,7 @@ from cloudquery.plugin_v3 import plugin_pb2 as cloudquery_dot_plugin__v3_dot_plugin__pb2 -GRPC_GENERATED_VERSION = '1.68.1' +GRPC_GENERATED_VERSION = '1.70.0' GRPC_VERSION = grpc.__version__ _version_not_supported = False diff --git a/requirements.txt b/requirements.txt index f373889..48a9b2d 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,6 @@ black==24.10.0 -grpcio-tools==1.68.1 -grpcio==1.68.1 -protobuf==5.29.2 -pyarrow==18.0.0 +grpcio-tools==1.70.0 +grpcio==1.70.0 +protobuf==5.29.3 +pyarrow==19.0.0 pytest==8.3.4 diff --git a/setup.py b/setup.py index c2cbb2b..5713d1a 100644 --- a/setup.py +++ b/setup.py @@ -37,7 +37,7 @@ ] setuptools.setup( name=name, - version="0.0.39", + version="0.0.40", description=description, long_description=long_description, author="CloudQuery LTD",