Skip to content

Commit d4599bd

Browse files
authored
Merge branch 'main' into renovate/packaging-25.x
2 parents a4aa808 + 381b602 commit d4599bd

File tree

7 files changed

+23
-11
lines changed

7 files changed

+23
-11
lines changed

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ jobs:
1313
lint:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v5
1717
- name: Set up Python
18-
uses: actions/setup-python@v5
18+
uses: actions/setup-python@v6
1919
with:
2020
python-version: "3.13"
2121
- name: Install dependencies

.github/workflows/pr_title.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
steps:
1818
# Please look up the latest version from
1919
# https://github.com/amannn/action-semantic-pull-request/releases
20-
- uses: amannn/action-semantic-pull-request@v5
20+
- uses: amannn/action-semantic-pull-request@v6
2121
env:
2222
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2323
with:

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ jobs:
1616
id-token: write
1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v5
2020
- name: Set up Python
21-
uses: actions/setup-python@v5
21+
uses: actions/setup-python@v6
2222
with:
2323
python-version: "3.13"
2424
- name: Install dependencies

.github/workflows/unittests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818
- # Required for the package command tests to work
1919
name: Set up Docker Buildx
2020
uses: docker/setup-buildx-action@v3
2121
- name: Set up Python
22-
uses: actions/setup-python@v5
22+
uses: actions/setup-python@v6
2323
with:
2424
python-version: "3.13"
2525
- name: Install dependencies

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.1.48"
2+
".": "0.1.49"
33
}

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## [0.1.49](https://github.com/cloudquery/plugin-sdk-python/compare/v0.1.48...v0.1.49) (2025-10-01)
4+
5+
6+
### Bug Fixes
7+
8+
* **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))
9+
* **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))
10+
* **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))
11+
* **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))
12+
* **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))
13+
* **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))
14+
315
## [0.1.48](https://github.com/cloudquery/plugin-sdk-python/compare/v0.1.47...v0.1.48) (2025-10-01)
416

517

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"exceptiongroup==1.3.0",
1515
"black==25.9.0",
1616
"grpcio==1.75.1",
17-
"grpcio-tools==1.75.0",
17+
"grpcio-tools==1.75.1",
1818
"iniconfig==2.1.0",
1919
"Jinja2==3.1.6",
2020
"MarkupSafe==3.0.3",
@@ -23,7 +23,7 @@
2323
"pandas==2.3.3",
2424
"pluggy==1.6.0",
2525
"protobuf>=6.31.1",
26-
"pyarrow==19.0.1",
26+
"pyarrow==21.0.0",
2727
"pytest==8.4.2",
2828
"python-dateutil>=2.8.1",
2929
"pytz==2025.2",
@@ -51,7 +51,7 @@
5151
]
5252
setuptools.setup(
5353
name=name,
54-
version="0.1.48",
54+
version="0.1.49",
5555
description=description,
5656
long_description=long_description,
5757
author="CloudQuery LTD",

0 commit comments

Comments
 (0)