diff --git a/.github/workflows/regen.yml b/.github/workflows/regen.yml index 304ef57..1ece6aa 100644 --- a/.github/workflows/regen.yml +++ b/.github/workflows/regen.yml @@ -24,7 +24,7 @@ jobs: make clone-proto make gen-proto - name: Create Pull Request - uses: peter-evans/create-pull-request@v6 + uses: peter-evans/create-pull-request@v7 with: # required so the PR triggers workflow runs token: ${{ secrets.GH_CQ_BOT }} diff --git a/.release-please-manifest.json b/.release-please-manifest.json index a4c7ad2..d1b9552 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.0.35" + ".": "0.0.36" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e8b826..d56da68 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [0.0.36](https://github.com/cloudquery/plugin-pb-python/compare/v0.0.35...v0.0.36) (2024-10-01) + + +### Bug Fixes + +* **deps:** Update dependency grpcio to v1.66.2 ([#118](https://github.com/cloudquery/plugin-pb-python/issues/118)) ([491dfbc](https://github.com/cloudquery/plugin-pb-python/commit/491dfbc1e714dabd54825825543402268fc8887c)) +* **deps:** Update dependency grpcio-tools to v1.66.2 ([#119](https://github.com/cloudquery/plugin-pb-python/issues/119)) ([5b415b0](https://github.com/cloudquery/plugin-pb-python/commit/5b415b081b357254d3469217fab9610f494190ad)) +* **deps:** Update dependency protobuf to v5.28.2 ([#121](https://github.com/cloudquery/plugin-pb-python/issues/121)) ([daf7e7d](https://github.com/cloudquery/plugin-pb-python/commit/daf7e7d745ae7a55097d7ba6c68150037a97d38c)) +* **deps:** Update dependency pytest to v8.3.3 ([#122](https://github.com/cloudquery/plugin-pb-python/issues/122)) ([74720e7](https://github.com/cloudquery/plugin-pb-python/commit/74720e7eb5041e2154d58fe2cc1e67bef58477ce)) +* Generate Python Code from `plugin-pb` ([#124](https://github.com/cloudquery/plugin-pb-python/issues/124)) ([72ca377](https://github.com/cloudquery/plugin-pb-python/commit/72ca37759dea593c9b5bd9b0afd936ae6c583b50)) + ## [0.0.35](https://github.com/cloudquery/plugin-pb-python/compare/v0.0.34...v0.0.35) (2024-09-17) diff --git a/cloudquery/discovery_v1/discovery_pb2_grpc.py b/cloudquery/discovery_v1/discovery_pb2_grpc.py index 1ce89ff..0518302 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.66.1' +GRPC_GENERATED_VERSION = '1.66.2' 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 62e36e2..6219d65 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.66.1' +GRPC_GENERATED_VERSION = '1.66.2' GRPC_VERSION = grpc.__version__ _version_not_supported = False diff --git a/requirements.txt b/requirements.txt index b3fb4d9..aac77db 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,6 @@ black==24.8.0 -grpcio-tools==1.66.1 -grpcio==1.66.1 -protobuf==5.28.0 +grpcio-tools==1.66.2 +grpcio==1.66.2 +protobuf==5.28.2 pyarrow==17.0.0 -pytest==8.3.2 +pytest==8.3.3 diff --git a/setup.py b/setup.py index 459d98f..e56d4e7 100644 --- a/setup.py +++ b/setup.py @@ -37,7 +37,7 @@ ] setuptools.setup( name=name, - version="0.0.35", + version="0.0.36", description=description, long_description=long_description, author="CloudQuery LTD",