diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index ccfa990..1e3853f 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -13,9 +13,9 @@ jobs: lint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Set up Python - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: "3.13" - name: Install dependencies diff --git a/.github/workflows/pr_title.yml b/.github/workflows/pr_title.yml index d234e31..8a6f52a 100644 --- a/.github/workflows/pr_title.yml +++ b/.github/workflows/pr_title.yml @@ -17,7 +17,7 @@ jobs: steps: # Please look up the latest version from # https://github.com/amannn/action-semantic-pull-request/releases - - uses: amannn/action-semantic-pull-request@v5 + - uses: amannn/action-semantic-pull-request@v6 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 3bc8748..55c4068 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -16,9 +16,9 @@ jobs: id-token: write steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Set up Python - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: "3.13" - name: Install dependencies diff --git a/.github/workflows/unittests.yml b/.github/workflows/unittests.yml index f3e9089..826a1ab 100644 --- a/.github/workflows/unittests.yml +++ b/.github/workflows/unittests.yml @@ -14,12 +14,12 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - # Required for the package command tests to work name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 - name: Set up Python - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: "3.13" - name: Install dependencies diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 831e66e..a802fbf 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.1.48" + ".": "0.1.49" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 2b91ab4..b43df55 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [0.1.49](https://github.com/cloudquery/plugin-sdk-python/compare/v0.1.48...v0.1.49) (2025-10-01) + + +### Bug Fixes + +* **deps:** Update dependency cloudquery-plugin-pb to v0.0.48 ([#329](https://github.com/cloudquery/plugin-sdk-python/issues/329)) ([8f911a4](https://github.com/cloudquery/plugin-sdk-python/commit/8f911a42ec8aefbffe7cbc67ab48694a7b66c4f3)) +* **deps:** Update dependency grpcio to v1.75.1 ([#330](https://github.com/cloudquery/plugin-sdk-python/issues/330)) ([990bf23](https://github.com/cloudquery/plugin-sdk-python/commit/990bf23f71a763cd2162fb56473b0bdb87d82fe6)) +* **deps:** Update dependency MarkupSafe to v3.0.3 ([#332](https://github.com/cloudquery/plugin-sdk-python/issues/332)) ([b07bff3](https://github.com/cloudquery/plugin-sdk-python/commit/b07bff38b9af88f020ba1f732c816b34f30f7172)) +* **deps:** Update dependency pandas to v2.3.3 ([#333](https://github.com/cloudquery/plugin-sdk-python/issues/333)) ([39877e7](https://github.com/cloudquery/plugin-sdk-python/commit/39877e7a8dcc1052bb0f5f80368ed252b1e959ac)) +* **deps:** Update dependency pyarrow to v21 ([#339](https://github.com/cloudquery/plugin-sdk-python/issues/339)) ([ff1a04e](https://github.com/cloudquery/plugin-sdk-python/commit/ff1a04ee9b5eadcbd2784380e2879a7f49854397)) +* **deps:** Update dependency tzdata to v2025.2 ([#334](https://github.com/cloudquery/plugin-sdk-python/issues/334)) ([93f5a9e](https://github.com/cloudquery/plugin-sdk-python/commit/93f5a9edaf11ae82bb0b74ab6de56bbf7002fdb9)) + ## [0.1.48](https://github.com/cloudquery/plugin-sdk-python/compare/v0.1.47...v0.1.48) (2025-10-01) diff --git a/setup.py b/setup.py index 05bb7e9..d9f2f6e 100644 --- a/setup.py +++ b/setup.py @@ -10,27 +10,27 @@ description = "CloudQuery Plugin SDK for Python" dependencies = [ - "cloudquery-plugin-pb==0.0.47", + "cloudquery-plugin-pb==0.0.48", "exceptiongroup==1.3.0", "black==25.9.0", - "grpcio==1.75.0", + "grpcio==1.75.1", "grpcio-tools==1.75.0", "iniconfig==2.1.0", "Jinja2==3.1.6", - "MarkupSafe==3.0.2", + "MarkupSafe==3.0.3", "numpy==2.3.3", "packaging==24.2", - "pandas==2.3.2", + "pandas==2.3.3", "pluggy==1.6.0", "protobuf>=6.31.1", - "pyarrow==19.0.1", + "pyarrow==21.0.0", "pytest==8.4.2", "python-dateutil>=2.8.1", "pytz==2025.2", "six==1.17.0", "structlog==25.4.0", "tomli==2.2.1", - "tzdata==2025.1", + "tzdata==2025.2", ] url = "https://github.com/cloudquery/plugin-sdk-python" @@ -51,7 +51,7 @@ ] setuptools.setup( name=name, - version="0.1.48", + version="0.1.49", description=description, long_description=long_description, author="CloudQuery LTD",