diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index f2cb227..0ddedfa 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -14,7 +14,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v5 with: - python-version: "3.11" + python-version: "3.13" - name: Install dependencies run: | pip install --upgrade pip diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 2a521b3..5208925 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -17,7 +17,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v5 with: - python-version: '3.11' + python-version: '3.13' - name: Install dependencies run: | pip install -r requirements.txt diff --git a/.github/workflows/regen.yml b/.github/workflows/regen.yml index 1ece6aa..9a35f61 100644 --- a/.github/workflows/regen.yml +++ b/.github/workflows/regen.yml @@ -14,7 +14,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v5 with: - python-version: '3.11' + python-version: '3.13' - name: Install dependencies run: | pip install --upgrade pip diff --git a/.github/workflows/unittest.yml b/.github/workflows/unittest.yml index cb88dc8..4a5c707 100644 --- a/.github/workflows/unittest.yml +++ b/.github/workflows/unittest.yml @@ -16,7 +16,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v5 with: - python-version: '3.11' + python-version: '3.13' - name: Install dependencies run: | pip install --upgrade pip diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 34879d8..d7a636b 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.0.42" + ".": "0.0.43" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 61d4e24..bb03777 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [0.0.43](https://github.com/cloudquery/plugin-pb-python/compare/v0.0.42...v0.0.43) (2025-05-01) + + +### Bug Fixes + +* **deps:** Update dependency grpcio to v1.71.0 ([#156](https://github.com/cloudquery/plugin-pb-python/issues/156)) ([d17be22](https://github.com/cloudquery/plugin-pb-python/commit/d17be22dba8e080a0d40cda7063d03cfc18598f4)) +* **deps:** Update dependency grpcio-tools to v1.71.0 ([#158](https://github.com/cloudquery/plugin-pb-python/issues/158)) ([0f0d9f8](https://github.com/cloudquery/plugin-pb-python/commit/0f0d9f89c4f9f25332452907705c4b3c7e476fbe)) +* Generate Python Code from `plugin-pb` ([#160](https://github.com/cloudquery/plugin-pb-python/issues/160)) ([84e433c](https://github.com/cloudquery/plugin-pb-python/commit/84e433c35126a4bf5b240f953f80baf89e22ef89)) + ## [0.0.42](https://github.com/cloudquery/plugin-pb-python/compare/v0.0.41...v0.0.42) (2025-04-01) diff --git a/cloudquery/discovery_v1/discovery_pb2_grpc.py b/cloudquery/discovery_v1/discovery_pb2_grpc.py index fd11ff1..141ae65 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.70.0' +GRPC_GENERATED_VERSION = '1.71.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 e04d89d..824b053 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.70.0' +GRPC_GENERATED_VERSION = '1.71.0' GRPC_VERSION = grpc.__version__ _version_not_supported = False diff --git a/requirements.txt b/requirements.txt index c1d6b08..160e0f5 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,6 @@ black==25.1.0 -grpcio-tools==1.70.0 -grpcio==1.70.0 +grpcio-tools==1.71.0 +grpcio==1.71.0 protobuf==5.29.4 pyarrow==19.0.1 pytest==8.3.5 diff --git a/setup.py b/setup.py index c3e58f9..98fa3a1 100644 --- a/setup.py +++ b/setup.py @@ -37,7 +37,7 @@ ] setuptools.setup( name=name, - version="0.0.42", + version="0.0.43", description=description, long_description=long_description, author="CloudQuery LTD",