diff --git a/.release-please-manifest.json b/.release-please-manifest.json index a5fd37e..c0f8cc3 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.0.52" + ".": "0.0.53" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 26d3138..4459bd7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## [0.0.53](https://github.com/cloudquery/plugin-pb-python/compare/v0.0.52...v0.0.53) (2026-03-01) + + +### Bug Fixes + +* **deps:** Update dependency grpcio to v1.78.0 ([#209](https://github.com/cloudquery/plugin-pb-python/issues/209)) ([006b6c2](https://github.com/cloudquery/plugin-pb-python/commit/006b6c2593afae3f690d78451ea5d743efba7f91)) +* **deps:** Update dependency grpcio-tools to v1.78.0 ([#210](https://github.com/cloudquery/plugin-pb-python/issues/210)) ([2c0f24a](https://github.com/cloudquery/plugin-pb-python/commit/2c0f24a4b3165a35d0854d3c7c3e6349de6ac16a)) +* **deps:** Update dependency pyarrow to v23.0.1 ([#208](https://github.com/cloudquery/plugin-pb-python/issues/208)) ([a7d07fd](https://github.com/cloudquery/plugin-pb-python/commit/a7d07fd86799ecf67175e6b43b951e1568cce57c)) +* Generate Python Code from `plugin-pb` ([#212](https://github.com/cloudquery/plugin-pb-python/issues/212)) ([ab5d47b](https://github.com/cloudquery/plugin-pb-python/commit/ab5d47b7e842e22fdf8e23ed3b1f02b194c3d13e)) + ## [0.0.52](https://github.com/cloudquery/plugin-pb-python/compare/v0.0.51...v0.0.52) (2026-02-02) diff --git a/cloudquery/discovery_v1/discovery_pb2_grpc.py b/cloudquery/discovery_v1/discovery_pb2_grpc.py index aa9687c..a3c67b6 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.76.0' +GRPC_GENERATED_VERSION = '1.78.0' GRPC_VERSION = grpc.__version__ _version_not_supported = False diff --git a/cloudquery/plugin_v3/plugin_pb2_grpc.py b/cloudquery/plugin_v3/plugin_pb2_grpc.py index fcc770e..2a19cc6 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.76.0' +GRPC_GENERATED_VERSION = '1.78.0' GRPC_VERSION = grpc.__version__ _version_not_supported = False diff --git a/requirements.txt b/requirements.txt index bf252ab..ae73322 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,6 @@ black==26.1.0 -grpcio-tools==1.76.0 -grpcio==1.76.0 +grpcio-tools==1.78.0 +grpcio==1.78.0 protobuf>=6.30.0 -pyarrow==23.0.0 +pyarrow==23.0.1 pytest==9.0.2 diff --git a/setup.py b/setup.py index d1f3694..965cf16 100644 --- a/setup.py +++ b/setup.py @@ -37,7 +37,7 @@ ] setuptools.setup( name=name, - version="0.0.52", + version="0.0.53", description=description, long_description=long_description, author="CloudQuery LTD",