From dc93551596179ac1b4faf98c6bed2b6d0d1db620 Mon Sep 17 00:00:00 2001 From: Yevgeny Pats Date: Mon, 16 Oct 2023 20:44:37 +0300 Subject: [PATCH 1/3] Create config.yml --- .github/ISSUE_TEMPLATE/config.yml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/config.yml diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 0000000..733537c --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,8 @@ +blank_issues_enabled: false +contact_links: + - name: CloudQuery Central Issues Tracker + url: https://github.com/cloudquery/cloudquery/issues + about: Please file any issue with regards to any of CloudQuery repo in the main repository with the right labels. + - name: CloudQuery Discord Support + url: https://cloudquery.io/discord + about: Join our discord to get live support from us and the community. From 361a318d7b116744a36ac808784d5e5c0b72ec21 Mon Sep 17 00:00:00 2001 From: CloudQuery Bot <102256036+cq-bot@users.noreply.github.com> Date: Fri, 27 Oct 2023 15:09:04 +0300 Subject: [PATCH 2/3] fix(deps): Update dependency pyarrow to v13 (#19) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR contains the following updates: | Package | Update | Change | |---|---|---| | [pyarrow](https://arrow.apache.org/) ([source](https://togithub.com/apache/arrow)) | major | `==12.0.1` -> `==13.0.0` | --- ### Configuration 📅 **Schedule**: Branch creation - "before 4am on the first day of the month" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://togithub.com/renovatebot/renovate). --- .github/workflows/lint.yml | 6 ++++-- .github/workflows/unittest.yml | 6 ++++-- requirements.txt | 2 +- setup.py | 2 +- 4 files changed, 10 insertions(+), 6 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index a4f6ce0..c9f4c8c 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -14,8 +14,10 @@ jobs: - name: Set up Python uses: actions/setup-python@v4 with: - python-version: "3.x" + python-version: "3.11" - name: Install dependencies - run: pip install -r requirements.txt + run: | + pip install --upgrade pip + pip install -r requirements.txt - name: Check formatting run: make fmt-check diff --git a/.github/workflows/unittest.yml b/.github/workflows/unittest.yml index 3f6e2d7..2be8cd1 100644 --- a/.github/workflows/unittest.yml +++ b/.github/workflows/unittest.yml @@ -16,8 +16,10 @@ jobs: - name: Set up Python uses: actions/setup-python@v4 with: - python-version: '3.x' + python-version: '3.11' - name: Install dependencies - run: pip install -r requirements.txt + run: | + pip install --upgrade pip + pip install -r requirements.txt - name: Run tests run: make test diff --git a/requirements.txt b/requirements.txt index 4792f28..860f7f5 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,5 +2,5 @@ black==23.9.1 grpcio-tools==1.59.0 grpcio==1.59.0 protobuf==4.24.3 -pyarrow==12.0.1 +pyarrow==13.0.0 pytest==7.4.2 \ No newline at end of file diff --git a/setup.py b/setup.py index febd04b..fc73442 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ "grpcio >= 1.56.0", "grpcio-tools >= 1.56.0", "protobuf >= 4.23.4", - "pyarrow >= 12.0.1", + "pyarrow >= 13.0.0", ] url = "https://github.com/cloudquery/plugin-pb-python" From 09633463f1e568387ad8cceec1db423ef1869c55 Mon Sep 17 00:00:00 2001 From: CloudQuery Bot <102256036+cq-bot@users.noreply.github.com> Date: Fri, 27 Oct 2023 15:10:04 +0300 Subject: [PATCH 3/3] chore(main): Release v0.0.19 (#30) :robot: I have created a release *beep* *boop* --- ## [0.0.19](https://github.com/cloudquery/plugin-pb-python/compare/v0.0.18...v0.0.19) (2023-10-27) ### Bug Fixes * **deps:** Update dependency pyarrow to v13 ([#19](https://github.com/cloudquery/plugin-pb-python/issues/19)) ([361a318](https://github.com/cloudquery/plugin-pb-python/commit/361a318d7b116744a36ac808784d5e5c0b72ec21)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). --- CHANGELOG.md | 7 +++++++ setup.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 847680b..34548e3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.0.19](https://github.com/cloudquery/plugin-pb-python/compare/v0.0.18...v0.0.19) (2023-10-27) + + +### Bug Fixes + +* **deps:** Update dependency pyarrow to v13 ([#19](https://github.com/cloudquery/plugin-pb-python/issues/19)) ([361a318](https://github.com/cloudquery/plugin-pb-python/commit/361a318d7b116744a36ac808784d5e5c0b72ec21)) + ## [0.0.18](https://github.com/cloudquery/plugin-pb-python/compare/v0.0.17...v0.0.18) (2023-10-12) diff --git a/setup.py b/setup.py index fc73442..15b712c 100644 --- a/setup.py +++ b/setup.py @@ -37,7 +37,7 @@ ] setuptools.setup( name=name, - version="0.0.18", + version="0.0.19", description=description, long_description=long_description, author="CloudQuery LTD",