diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 1e3853f..353f4c0 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -13,7 +13,7 @@ jobs: lint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Set up Python uses: actions/setup-python@v6 with: diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 8c0bdde..5eee69e 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -16,7 +16,7 @@ jobs: id-token: write steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Set up Python uses: actions/setup-python@v6 with: diff --git a/.github/workflows/regen.yml b/.github/workflows/regen.yml index baff0d2..7e4c458 100644 --- a/.github/workflows/regen.yml +++ b/.github/workflows/regen.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Set up Python uses: actions/setup-python@v6 with: @@ -24,7 +24,7 @@ jobs: make clone-proto make gen-proto - name: Create Pull Request - uses: peter-evans/create-pull-request@v7 + uses: peter-evans/create-pull-request@v8 with: # required so the PR triggers workflow runs token: ${{ secrets.GH_CQ_BOT }} diff --git a/.github/workflows/unittest.yml b/.github/workflows/unittest.yml index 17583dc..6bdbacc 100644 --- a/.github/workflows/unittest.yml +++ b/.github/workflows/unittest.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Set up Python uses: actions/setup-python@v6 with: diff --git a/.release-please-manifest.json b/.release-please-manifest.json index c0ab9f1..90899cc 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.0.50" + ".": "0.0.51" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 1d65981..aec06a4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## [0.0.51](https://github.com/cloudquery/plugin-pb-python/compare/v0.0.50...v0.0.51) (2026-01-02) + + +### Bug Fixes + +* **deps:** Update dependency black to v25.11.0 ([#198](https://github.com/cloudquery/plugin-pb-python/issues/198)) ([1154ca1](https://github.com/cloudquery/plugin-pb-python/commit/1154ca146e50bdc052f2d9dc8020c541969faeba)) +* **deps:** Update dependency black to v25.12.0 ([#203](https://github.com/cloudquery/plugin-pb-python/issues/203)) ([d87488c](https://github.com/cloudquery/plugin-pb-python/commit/d87488cf6acc68018764fb374e15f28a584750ed)) +* **deps:** Update dependency pytest to v9 ([#201](https://github.com/cloudquery/plugin-pb-python/issues/201)) ([73cf3b6](https://github.com/cloudquery/plugin-pb-python/commit/73cf3b634700370efab9d1f135d9835a202ec2ed)) +* **deps:** Update dependency pytest to v9.0.2 ([#202](https://github.com/cloudquery/plugin-pb-python/issues/202)) ([b92331f](https://github.com/cloudquery/plugin-pb-python/commit/b92331f7925f4681f653110a9a3ff0670d1ac8c7)) + ## [0.0.50](https://github.com/cloudquery/plugin-pb-python/compare/v0.0.49...v0.0.50) (2025-11-03) diff --git a/requirements.txt b/requirements.txt index e74bb73..b7592d4 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,6 @@ -black==25.9.0 +black==25.12.0 grpcio-tools==1.76.0 grpcio==1.76.0 protobuf>=6.30.0 pyarrow==22.0.0 -pytest==8.4.2 +pytest==9.0.2 diff --git a/setup.py b/setup.py index 87b7d44..adad5a9 100644 --- a/setup.py +++ b/setup.py @@ -37,7 +37,7 @@ ] setuptools.setup( name=name, - version="0.0.50", + version="0.0.51", description=description, long_description=long_description, author="CloudQuery LTD",