From f11258a34e84520cce07f642c17a09c78846747a Mon Sep 17 00:00:00 2001 From: Erez Rokah Date: Wed, 3 Apr 2024 19:35:12 +0300 Subject: [PATCH 01/12] chore: Create CODEOWNERS --- CODEOWNERS | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 CODEOWNERS diff --git a/CODEOWNERS b/CODEOWNERS new file mode 100644 index 0000000..7a7e644 --- /dev/null +++ b/CODEOWNERS @@ -0,0 +1,6 @@ +* @cloudquery/cloudquery-framework + +requirements.txt +setup.cfg +.release-please-manifest.json +CHANGELOG.md From 4ae506b97d04056cddc077733d771c05a5d974e3 Mon Sep 17 00:00:00 2001 From: Erez Rokah Date: Wed, 3 Apr 2024 19:35:48 +0300 Subject: [PATCH 02/12] chore: Update CODEOWNERS --- CODEOWNERS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CODEOWNERS b/CODEOWNERS index 7a7e644..d02d433 100644 --- a/CODEOWNERS +++ b/CODEOWNERS @@ -1,6 +1,6 @@ * @cloudquery/cloudquery-framework requirements.txt -setup.cfg +setup.py .release-please-manifest.json CHANGELOG.md From 21c5de734617f13b747ef8e4ae8bfb94c5b0fe25 Mon Sep 17 00:00:00 2001 From: CloudQuery Bot <102256036+cq-bot@users.noreply.github.com> Date: Wed, 1 May 2024 03:43:36 +0300 Subject: [PATCH 03/12] fix(deps): Update dependency exceptiongroup to v1.2.1 (#159) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR contains the following updates: | Package | Update | Change | |---|---|---| | [exceptiongroup](https://togithub.com/agronholm/exceptiongroup) ([changelog](https://togithub.com/agronholm/exceptiongroup/blob/main/CHANGES.rst)) | patch | `==1.2.0` -> `==1.2.1` | --- ### Release Notes
agronholm/exceptiongroup (exceptiongroup) ### [`v1.2.1`](https://togithub.com/agronholm/exceptiongroup/releases/tag/1.2.1) [Compare Source](https://togithub.com/agronholm/exceptiongroup/compare/1.2.0...1.2.1) - Updated the copying of `__notes__` to match CPython behavior (PR by CF Bolz-Tereick) - Corrected the type annotation of the exception handler callback to accept a `BaseExceptionGroup` instead of `BaseException` - Fixed type errors on Python < 3.10 and the type annotation of `suppress()` (PR by John Litborn)
--- ### 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). --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 43a44da..d3c2916 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ dependencies = [ "cloudquery-plugin-pb==0.0.25", - "exceptiongroup==1.2.0", + "exceptiongroup==1.2.1", "black==24.3.0", "grpcio==1.62.1", "grpcio-tools==1.62.1", From 0cc0fc02a0c9616deb113ad3ac2e39d80b94d13a Mon Sep 17 00:00:00 2001 From: CloudQuery Bot <102256036+cq-bot@users.noreply.github.com> Date: Wed, 1 May 2024 03:46:42 +0300 Subject: [PATCH 04/12] fix(deps): Update dependency pandas to v2.2.2 (#160) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR contains the following updates: | Package | Update | Change | |---|---|---| | [pandas](https://pandas.pydata.org) ([source](https://togithub.com/pandas-dev/pandas)) | patch | `==2.2.1` -> `==2.2.2` | --- ### Release Notes
pandas-dev/pandas (pandas) ### [`v2.2.2`](https://togithub.com/pandas-dev/pandas/releases/tag/v2.2.2): Pandas 2.2.2 [Compare Source](https://togithub.com/pandas-dev/pandas/compare/v2.2.1...v2.2.2) We are pleased to announce the release of pandas 2.2.2. This release includes some new features, bug fixes, and performance improvements. We recommend that all users upgrade to this version. See the [full whatsnew](https://pandas.pydata.org/pandas-docs/version/2.2.2/whatsnew/v2.2.2.html) for a list of all the changes. Pandas 2.2.2 supports Python 3.9 and higher. The release will be available on the defaults and conda-forge channels: conda install pandas Or via PyPI: python3 -m pip install --upgrade pandas Please report any issues with the release on the [pandas issue tracker](https://togithub.com/pandas-dev/pandas/issues). Thanks to all the contributors who made this release possible.
--- ### 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). --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index d3c2916..c13bfa5 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ "MarkupSafe==2.1.5", "numpy==1.26.4", "packaging==24.0", - "pandas==2.2.1", + "pandas==2.2.2", "pluggy==1.4.0", "protobuf==4.25.3", "pyarrow==15.0.2", From 0b5b482c22c8a7bf352597a25606c21538dfa0c2 Mon Sep 17 00:00:00 2001 From: CloudQuery Bot <102256036+cq-bot@users.noreply.github.com> Date: Wed, 1 May 2024 04:48:46 +0300 Subject: [PATCH 05/12] fix(deps): Update dependency black to v24.4.2 (#162) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR contains the following updates: | Package | Update | Change | |---|---|---| | [black](https://togithub.com/psf/black) ([changelog](https://togithub.com/psf/black/blob/main/CHANGES.md)) | minor | `==24.3.0` -> `==24.4.2` | --- ### Release Notes
psf/black (black) ### [`v24.4.2`](https://togithub.com/psf/black/blob/HEAD/CHANGES.md#2442) [Compare Source](https://togithub.com/psf/black/compare/24.4.1...24.4.2) This is a bugfix release to fix two regressions in the new f-string parser introduced in 24.4.1. ##### Parser - Fix regression where certain complex f-strings failed to parse ([#​4332](https://togithub.com/psf/black/issues/4332)) ##### Performance - Fix bad performance on certain complex string literals ([#​4331](https://togithub.com/psf/black/issues/4331)) ### [`v24.4.1`](https://togithub.com/psf/black/blob/HEAD/CHANGES.md#2441) [Compare Source](https://togithub.com/psf/black/compare/24.4.0...24.4.1) ##### Highlights - Add support for the new Python 3.12 f-string syntax introduced by PEP 701 ([#​3822](https://togithub.com/psf/black/issues/3822)) ##### Stable style - Fix crash involving indented dummy functions containing newlines ([#​4318](https://togithub.com/psf/black/issues/4318)) ##### Parser - Add support for type parameter defaults, a new syntactic feature added to Python 3.13 by PEP 696 ([#​4327](https://togithub.com/psf/black/issues/4327)) ##### Integrations - Github Action now works even when `git archive` is skipped ([#​4313](https://togithub.com/psf/black/issues/4313)) ### [`v24.4.0`](https://togithub.com/psf/black/blob/HEAD/CHANGES.md#2440) [Compare Source](https://togithub.com/psf/black/compare/24.3.0...24.4.0) ##### Stable style - Fix unwanted crashes caused by AST equivalency check ([#​4290](https://togithub.com/psf/black/issues/4290)) ##### Preview style - `if` guards in `case` blocks are now wrapped in parentheses when the line is too long. ([#​4269](https://togithub.com/psf/black/issues/4269)) - Stop moving multiline strings to a new line unless inside brackets ([#​4289](https://togithub.com/psf/black/issues/4289)) ##### Integrations - Add a new option `use_pyproject` to the GitHub Action `psf/black`. This will read the Black version from `pyproject.toml`. ([#​4294](https://togithub.com/psf/black/issues/4294))
--- ### 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). --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index c13bfa5..0d45bb3 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ dependencies = [ "cloudquery-plugin-pb==0.0.25", "exceptiongroup==1.2.1", - "black==24.3.0", + "black==24.4.2", "grpcio==1.62.1", "grpcio-tools==1.62.1", "iniconfig==2.0.0", From 531c4b884a9d34da872518dcbb036418240fab03 Mon Sep 17 00:00:00 2001 From: CloudQuery Bot <102256036+cq-bot@users.noreply.github.com> Date: Wed, 1 May 2024 05:36:09 +0300 Subject: [PATCH 06/12] fix(deps): Update dependency grpcio to v1.63.0 (#163) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR contains the following updates: | Package | Update | Change | |---|---|---| | [grpcio](https://grpc.io) ([source](https://togithub.com/grpc/grpc)) | minor | `==1.62.1` -> `==1.63.0` | --- ### Release Notes
grpc/grpc (grpcio) ### [`v1.63.0`](https://togithub.com/grpc/grpc/releases/tag/v1.63.0) [Compare Source](https://togithub.com/grpc/grpc/compare/v1.62.2...v1.63.0) This is release 1.63.0 ([giggle](https://togithub.com/grpc/grpc/blob/master/doc/g_stands_for.md)) of gRPC Core. For gRPC documentation, see [grpc.io](https://grpc.io/). For previous releases, see [Releases](https://togithub.com/grpc/grpc/releases). This release contains refinements, improvements, and bug fixes, with highlights listed below. ## Core - \[Deps] Backport: Protobuf upgrade to v26.1. ([#​36353](https://togithub.com/grpc/grpc/pull/36353)) - \[OTel C++] Add experimental optional locality label available to client per-attempt metrics. ([#​36254](https://togithub.com/grpc/grpc/pull/36254)) - \[surface] Add an API to inject connected endpoints into servers. ([#​35957](https://togithub.com/grpc/grpc/pull/35957)) - \[CMake] Add gRPC_USE_SYSTEMD option. ([#​34384](https://togithub.com/grpc/grpc/pull/34384)) - \[OTel C++] Add API to set channel scope filter. ([#​36189](https://togithub.com/grpc/grpc/pull/36189)) - \[Deps] Upgraded protobuf to v26.1. ([#​35796](https://togithub.com/grpc/grpc/pull/35796)) - \[channel] canonify target and set channel arg in only one place. ([#​36134](https://togithub.com/grpc/grpc/pull/36134)) - \[grpc]\[Gpr_To_Absl_Logging] Using absl from within gpr logging. ([#​36108](https://togithub.com/grpc/grpc/pull/36108)) - \[BoringSSL] Update third_party/boringssl-with-bazel. ([#​36089](https://togithub.com/grpc/grpc/pull/36089)) - \[EventEngine] Document RunAfter can return an invalid handle for immediate execution. ([#​36072](https://togithub.com/grpc/grpc/pull/36072)) - \[EventEngine] Enable the EventEngine DNS Resolver on Posix. ([#​35573](https://togithub.com/grpc/grpc/pull/35573)) - \[EventEngine] Support AF_UNIX for windows. ([#​34801](https://togithub.com/grpc/grpc/pull/34801)) ## C++ - \[OTel C++] Add APIs to enable/disable metrics. ([#​36183](https://togithub.com/grpc/grpc/pull/36183)) - \[EventEngine] Refactor ServerCallbackCall to use EventEngine::Run. ([#​36126](https://togithub.com/grpc/grpc/pull/36126)) - \[OTel C++] Add CMake build support. ([#​36063](https://togithub.com/grpc/grpc/pull/36063)) - gRPC C++ upgraded Protobuf to v26.1. ([#​36323](https://togithub.com/grpc/grpc/pull/36323)) ## C\# - \[csharp] Fix csharp doc comments. ([#​36000](https://togithub.com/grpc/grpc/pull/36000)) - C#: Grpc.Tools: Handle regex timeout when parsing protoc output. ([#​36185](https://togithub.com/grpc/grpc/pull/36185)) ## PHP - Update min PHP testing version from PHP 7.4 to 8.1. ([#​35964](https://togithub.com/grpc/grpc/pull/35964)) ## Python - \[Python Version] Drop support for Python 3.7. ([#​34450](https://togithub.com/grpc/grpc/pull/34450)) - \[Python Aio] Change aio Metadata inheritance. ([#​36214](https://togithub.com/grpc/grpc/pull/36214)) - \[Documentation] fix asyncio Server and Channel stop() method documentation. ([#​35946](https://togithub.com/grpc/grpc/pull/35946)) - \[Python O11y] Change public interface. ([#​36094](https://togithub.com/grpc/grpc/pull/36094)) - \[Python Stub] Add version check to stubs generated by grpcio_tools. ([#​35906](https://togithub.com/grpc/grpc/pull/35906)) - \[AbortError] Reapply "\[AbortError] And and check AbortError while abort". ([#​34525](https://togithub.com/grpc/grpc/pull/34525)) - \[Build Reproducibility] Sort input file list. ([#​35687](https://togithub.com/grpc/grpc/pull/35687)) - \[Python O11Y] Reapply registered method change. ([#​35850](https://togithub.com/grpc/grpc/pull/35850)) - \[Python Modernization] Deprecate pkg_resources. ([#​35849](https://togithub.com/grpc/grpc/pull/35849)) - \[Python Bazel] Allow overwriting grpc_library in python_rules.bzl. ([#​35629](https://togithub.com/grpc/grpc/pull/35629)) ## Ruby - ruby: register grpc_rb_sStatus as a global variable. ([#​36125](https://togithub.com/grpc/grpc/pull/36125)) ### [`v1.62.2`](https://togithub.com/grpc/grpc/releases/tag/v1.62.2) [Compare Source](https://togithub.com/grpc/grpc/compare/v1.62.1...v1.62.2) This is release gRPC Core 1.62.2 (guardian). For gRPC documentation, see [grpc.io](https://grpc.io/). For previous releases, see [Releases](https://togithub.com/grpc/grpc/releases). This release contains refinements, improvements, and bug fixes. ## Python - \[Fix Python Deadlock] Guard grpc_google_default_credentials_create with nogil by [@​XuanWang-Amos](https://togithub.com/XuanWang-Amos) in [https://github.com/grpc/grpc/pull/36376](https://togithub.com/grpc/grpc/pull/36376) **Full Changelog**: https://github.com/grpc/grpc/compare/v1.62.1...v1.62.2
--- ### 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). --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 0d45bb3..017911d 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ "cloudquery-plugin-pb==0.0.25", "exceptiongroup==1.2.1", "black==24.4.2", - "grpcio==1.62.1", + "grpcio==1.63.0", "grpcio-tools==1.62.1", "iniconfig==2.0.0", "Jinja2==3.1.3", From c9c3b933583fb3992970cc46ffa42c2cb89dcedd Mon Sep 17 00:00:00 2001 From: CloudQuery Bot <102256036+cq-bot@users.noreply.github.com> Date: Wed, 1 May 2024 05:36:33 +0300 Subject: [PATCH 07/12] fix(deps): Update dependency pluggy to v1.5.0 (#165) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR contains the following updates: | Package | Update | Change | |---|---|---| | [pluggy](https://togithub.com/pytest-dev/pluggy) | minor | `==1.4.0` -> `==1.5.0` | --- ### Release Notes
pytest-dev/pluggy (pluggy) ### [`v1.5.0`](https://togithub.com/pytest-dev/pluggy/blob/HEAD/CHANGELOG.rst#pluggy-150-2024-04-19) [Compare Source](https://togithub.com/pytest-dev/pluggy/compare/1.4.0...1.5.0) \========================= ## Features - `#​178 `\_: Add support for deprecating specific hook parameters, or more generally, for issuing a warning whenever a hook implementation requests certain parameters. See :ref:`warn_on_impl` for details. ## Bug Fixes - `#​481 `\_: `PluginManager.get_plugins()` no longer returns `None` for blocked plugins.
--- ### 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). --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 017911d..f23f595 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ "numpy==1.26.4", "packaging==24.0", "pandas==2.2.2", - "pluggy==1.4.0", + "pluggy==1.5.0", "protobuf==4.25.3", "pyarrow==15.0.2", "pytest==8.1.1", From 85c29c060e49d4f6fc1de2b3a0391a82a5a52970 Mon Sep 17 00:00:00 2001 From: CloudQuery Bot <102256036+cq-bot@users.noreply.github.com> Date: Wed, 1 May 2024 06:21:44 +0300 Subject: [PATCH 08/12] fix(deps): Update dependency pytest to v8.2.0 (#166) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR contains the following updates: | Package | Update | Change | |---|---|---| | [pytest](https://togithub.com/pytest-dev/pytest) ([changelog](https://docs.pytest.org/en/stable/changelog.html)) | minor | `==8.1.1` -> `==8.2.0` | --- ### Release Notes
pytest-dev/pytest (pytest) ### [`v8.2.0`](https://togithub.com/pytest-dev/pytest/releases/tag/8.2.0) [Compare Source](https://togithub.com/pytest-dev/pytest/compare/8.1.2...8.2.0) # pytest 8.2.0 (2024-04-27) ## Deprecations - [#​12069](https://togithub.com/pytest-dev/pytest/issues/12069): A deprecation warning is now raised when implementations of one of the following hooks request a deprecated `py.path.local` parameter instead of the `pathlib.Path` parameter which replaced it: - `pytest_ignore_collect`{.interpreted-text role="hook"} - the `path` parameter - use `collection_path` instead. - `pytest_collect_file`{.interpreted-text role="hook"} - the `path` parameter - use `file_path` instead. - `pytest_pycollect_makemodule`{.interpreted-text role="hook"} - the `path` parameter - use `module_path` instead. - `pytest_report_header`{.interpreted-text role="hook"} - the `startdir` parameter - use `start_path` instead. - `pytest_report_collectionfinish`{.interpreted-text role="hook"} - the `startdir` parameter - use `start_path` instead. The replacement parameters are available since pytest 7.0.0. The old parameters will be removed in pytest 9.0.0. See `legacy-path-hooks-deprecated`{.interpreted-text role="ref"} for more details. ## Features - [#​11871](https://togithub.com/pytest-dev/pytest/issues/11871): Added support for reading command line arguments from a file using the prefix character `@`, like e.g.: `pytest @​tests.txt`. The file must have one argument per line. See `Read arguments from file `{.interpreted-text role="ref"} for details. ## Improvements - [#​11523](https://togithub.com/pytest-dev/pytest/issues/11523): `pytest.importorskip`{.interpreted-text role="func"} will now issue a warning if the module could be found, but raised `ImportError`{.interpreted-text role="class"} instead of `ModuleNotFoundError`{.interpreted-text role="class"}. The warning can be suppressed by passing `exc_type=ImportError` to `pytest.importorskip`{.interpreted-text role="func"}. See `import-or-skip-import-error`{.interpreted-text role="ref"} for details. - [#​11728](https://togithub.com/pytest-dev/pytest/issues/11728): For `unittest`-based tests, exceptions during class cleanup (as raised by functions registered with `TestCase.addClassCleanup `{.interpreted-text role="meth"}) are now reported instead of silently failing. - [#​11777](https://togithub.com/pytest-dev/pytest/issues/11777): Text is no longer truncated in the `short test summary info` section when `-vv` is given. - [#​12112](https://togithub.com/pytest-dev/pytest/issues/12112): Improved namespace packages detection when `consider_namespace_packages`{.interpreted-text role="confval"} is enabled, covering more situations (like editable installs). - [#​9502](https://togithub.com/pytest-dev/pytest/issues/9502): Added `PYTEST_VERSION`{.interpreted-text role="envvar"} environment variable which is defined at the start of the pytest session and undefined afterwards. It contains the value of `pytest.__version__`, and among other things can be used to easily check if code is running from within a pytest run. ## Bug Fixes - [#​12065](https://togithub.com/pytest-dev/pytest/issues/12065): Fixed a regression in pytest 8.0.0 where test classes containing `setup_method` and tests using `@staticmethod` or `@classmethod` would crash with `AttributeError: 'NoneType' object has no attribute 'setup_method'`. Now the `request.instance `{.interpreted-text role="attr"} attribute of tests using `@staticmethod` and `@classmethod` is no longer `None`, but a fresh instance of the class, like in non-static methods. Previously it was `None`, and all fixtures of such tests would share a single `self`. - [#​12135](https://togithub.com/pytest-dev/pytest/issues/12135): Fixed issue where fixtures adding their finalizer multiple times to fixtures they request would cause unreliable and non-intuitive teardown ordering in some instances. - [#​12194](https://togithub.com/pytest-dev/pytest/issues/12194): Fixed a bug with `--importmode=importlib` and `--doctest-modules` where child modules did not appear as attributes in parent modules. - [#​1489](https://togithub.com/pytest-dev/pytest/issues/1489): Fixed some instances where teardown of higher-scoped fixtures was not happening in the reverse order they were initialized in. ## Trivial/Internal Changes - [#​12069](https://togithub.com/pytest-dev/pytest/issues/12069): `pluggy>=1.5.0` is now required. - [#​12167](https://togithub.com/pytest-dev/pytest/issues/12167): `cache `{.interpreted-text role="ref"}: create supporting files (`CACHEDIR.TAG`, `.gitignore`, etc.) in a temporary directory to provide atomic semantics. ### [`v8.1.2`](https://togithub.com/pytest-dev/pytest/releases/tag/8.1.2) [Compare Source](https://togithub.com/pytest-dev/pytest/compare/8.1.1...8.1.2) # pytest 8.1.2 (2024-04-26) ## Bug Fixes - [#​12114](https://togithub.com/pytest-dev/pytest/issues/12114): Fixed error in `pytest.approx`{.interpreted-text role="func"} when used with \[numpy]{.title-ref} arrays and comparing with other types.
--- ### 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). --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index f23f595..5cb53fd 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ "pluggy==1.5.0", "protobuf==4.25.3", "pyarrow==15.0.2", - "pytest==8.1.1", + "pytest==8.2.0", "python-dateutil==2.8.2", "pytz==2024.1", "six==1.16.0", From fbf5de12b0a86774053ac5529a569428d282ed65 Mon Sep 17 00:00:00 2001 From: CloudQuery Bot <102256036+cq-bot@users.noreply.github.com> Date: Wed, 1 May 2024 07:19:37 +0300 Subject: [PATCH 09/12] fix(deps): Update dependency python-dateutil to v2.9.0.post0 (#167) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR contains the following updates: | Package | Update | Change | |---|---|---| | [python-dateutil](https://togithub.com/dateutil/dateutil) | minor | `==2.8.2` -> `==2.9.0.post0` | --- ### Release Notes
dateutil/dateutil (python-dateutil) ### [`v2.9.0.post0`](https://togithub.com/dateutil/dateutil/releases/tag/2.9.0.post0) [Compare Source](https://togithub.com/dateutil/dateutil/compare/2.9.0...2.9.0.post0) ### Version 2.9.0.post0 (2024-03-01) #### Bugfixes - Pinned `setuptools_scm` to `<8`, which should make the generated `_version.py` file compatible with all supported versions of Python. ### [`v2.9.0`](https://togithub.com/dateutil/dateutil/releases/tag/2.9.0) [Compare Source](https://togithub.com/dateutil/dateutil/compare/2.8.2...2.9.0) ### Version 2.9.0 (2024-02-29) #### Data updates - Updated tzdata version to 2024a. (gh pr [#​1342](https://togithub.com/dateutil/dateutil/issues/1342)) #### Features - Made all `dateutil` submodules lazily imported using [PEP 562](https://www.python.org/dev/peps/pep-0562/). On Python 3.7+, things like `import dateutil; dateutil.tz.gettz("America/New_York")` will now work without explicitly importing `dateutil.tz`, with the import occurring behind the scenes on first use. The old behavior remains on Python 3.6 and earlier. Fixed by Orson Adams. (gh issue [#​771](https://togithub.com/dateutil/dateutil/issues/771), gh pr [#​1007](https://togithub.com/dateutil/dateutil/issues/1007)) #### Bugfixes - Removed a call to `datetime.utcfromtimestamp`, which is deprecated as of Python 3.12. Reported by Hugo van Kemenade (gh pr [#​1284](https://togithub.com/dateutil/dateutil/issues/1284)), fixed by Thomas Grainger (gh pr [#​1285](https://togithub.com/dateutil/dateutil/issues/1285)). #### Documentation changes - Added note into docs and tests where relativedelta would return last day of the month only if the same day on a different month resolves to a date that doesn't exist. Reported by [@​hawkEye-01](https://togithub.com/hawkEye-01) (gh issue [#​1167](https://togithub.com/dateutil/dateutil/issues/1167)). Fixed by [@​Mifrill](https://togithub.com/Mifrill) (gh pr [#​1168](https://togithub.com/dateutil/dateutil/issues/1168))
--- ### 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). --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 5cb53fd..800415f 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ "protobuf==4.25.3", "pyarrow==15.0.2", "pytest==8.2.0", - "python-dateutil==2.8.2", + "python-dateutil==2.9.0.post0", "pytz==2024.1", "six==1.16.0", "structlog==23.3.0", From 07c043597d3c2afb018dc1a08b16ba8e90be0ff8 Mon Sep 17 00:00:00 2001 From: CloudQuery Bot <102256036+cq-bot@users.noreply.github.com> Date: Mon, 6 May 2024 13:51:24 +0300 Subject: [PATCH 10/12] fix(deps): Update dependency cloudquery-plugin-pb to v0.0.26 (#168) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR contains the following updates: | Package | Update | Change | |---|---|---| | [cloudquery-plugin-pb](https://togithub.com/cloudquery/plugin-pb-python) | patch | `==0.0.25` -> `==0.0.26` | --- ### Release Notes
cloudquery/plugin-pb-python (cloudquery-plugin-pb) ### [`v0.0.26`](https://togithub.com/cloudquery/plugin-pb-python/blob/HEAD/CHANGELOG.md#0026-2024-05-06) [Compare Source](https://togithub.com/cloudquery/plugin-pb-python/compare/v0.0.25...v0.0.26) ##### Bug Fixes - **deps:** Update dependency black to v24.4.2 ([#​76](https://togithub.com/cloudquery/plugin-pb-python/issues/76)) ([a9edc09](https://togithub.com/cloudquery/plugin-pb-python/commit/a9edc097ee450f854c60dd3d9089176596dfe0f7)) - **deps:** Update dependency grpcio to v1.63.0 ([#​77](https://togithub.com/cloudquery/plugin-pb-python/issues/77)) ([7f54eca](https://togithub.com/cloudquery/plugin-pb-python/commit/7f54eca6ab82d8f391f936267c174dc365721ca5)) - **deps:** Update dependency grpcio-tools to v1.63.0 ([#​79](https://togithub.com/cloudquery/plugin-pb-python/issues/79)) ([c31fceb](https://togithub.com/cloudquery/plugin-pb-python/commit/c31fceb2130e3a3389d409374dd07718159869ea)) - **deps:** Update dependency pytest to v8.2.0 ([#​80](https://togithub.com/cloudquery/plugin-pb-python/issues/80)) ([f598b84](https://togithub.com/cloudquery/plugin-pb-python/commit/f598b846af21d685def553b9ebdd3a457d057b82))
--- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), 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). --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 800415f..9254cbb 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ description = "CloudQuery Plugin SDK for Python" dependencies = [ - "cloudquery-plugin-pb==0.0.25", + "cloudquery-plugin-pb==0.0.26", "exceptiongroup==1.2.1", "black==24.4.2", "grpcio==1.63.0", From 4ceb7ae30861d538ef835a62861ed8ad91a97da7 Mon Sep 17 00:00:00 2001 From: CloudQuery Bot <102256036+cq-bot@users.noreply.github.com> Date: Mon, 6 May 2024 14:25:00 +0300 Subject: [PATCH 11/12] fix(deps): Update dependency grpcio-tools to v1.63.0 (#164) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR contains the following updates: | Package | Update | Change | |---|---|---| | [grpcio-tools](https://grpc.io) | minor | `==1.62.1` -> `==1.63.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). --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 9254cbb..445ee09 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ "exceptiongroup==1.2.1", "black==24.4.2", "grpcio==1.63.0", - "grpcio-tools==1.62.1", + "grpcio-tools==1.63.0", "iniconfig==2.0.0", "Jinja2==3.1.3", "MarkupSafe==2.1.5", @@ -22,7 +22,7 @@ "packaging==24.0", "pandas==2.2.2", "pluggy==1.5.0", - "protobuf==4.25.3", + "protobuf==5.26.1", "pyarrow==15.0.2", "pytest==8.2.0", "python-dateutil==2.9.0.post0", From 7a32aadd9f84f64cebe5e947616bbc1ac1d92fd8 Mon Sep 17 00:00:00 2001 From: CloudQuery Bot <102256036+cq-bot@users.noreply.github.com> Date: Mon, 6 May 2024 16:01:20 +0300 Subject: [PATCH 12/12] chore(main): Release v0.1.21 (#161) :robot: I have created a release *beep* *boop* --- ## [0.1.21](https://github.com/cloudquery/plugin-sdk-python/compare/v0.1.20...v0.1.21) (2024-05-06) ### Bug Fixes * **deps:** Update dependency black to v24.4.2 ([#162](https://github.com/cloudquery/plugin-sdk-python/issues/162)) ([0b5b482](https://github.com/cloudquery/plugin-sdk-python/commit/0b5b482c22c8a7bf352597a25606c21538dfa0c2)) * **deps:** Update dependency cloudquery-plugin-pb to v0.0.26 ([#168](https://github.com/cloudquery/plugin-sdk-python/issues/168)) ([07c0435](https://github.com/cloudquery/plugin-sdk-python/commit/07c043597d3c2afb018dc1a08b16ba8e90be0ff8)) * **deps:** Update dependency exceptiongroup to v1.2.1 ([#159](https://github.com/cloudquery/plugin-sdk-python/issues/159)) ([21c5de7](https://github.com/cloudquery/plugin-sdk-python/commit/21c5de734617f13b747ef8e4ae8bfb94c5b0fe25)) * **deps:** Update dependency grpcio to v1.63.0 ([#163](https://github.com/cloudquery/plugin-sdk-python/issues/163)) ([531c4b8](https://github.com/cloudquery/plugin-sdk-python/commit/531c4b884a9d34da872518dcbb036418240fab03)) * **deps:** Update dependency grpcio-tools to v1.63.0 ([#164](https://github.com/cloudquery/plugin-sdk-python/issues/164)) ([4ceb7ae](https://github.com/cloudquery/plugin-sdk-python/commit/4ceb7ae30861d538ef835a62861ed8ad91a97da7)) * **deps:** Update dependency pandas to v2.2.2 ([#160](https://github.com/cloudquery/plugin-sdk-python/issues/160)) ([0cc0fc0](https://github.com/cloudquery/plugin-sdk-python/commit/0cc0fc02a0c9616deb113ad3ac2e39d80b94d13a)) * **deps:** Update dependency pluggy to v1.5.0 ([#165](https://github.com/cloudquery/plugin-sdk-python/issues/165)) ([c9c3b93](https://github.com/cloudquery/plugin-sdk-python/commit/c9c3b933583fb3992970cc46ffa42c2cb89dcedd)) * **deps:** Update dependency pytest to v8.2.0 ([#166](https://github.com/cloudquery/plugin-sdk-python/issues/166)) ([85c29c0](https://github.com/cloudquery/plugin-sdk-python/commit/85c29c060e49d4f6fc1de2b3a0391a82a5a52970)) * **deps:** Update dependency python-dateutil to v2.9.0.post0 ([#167](https://github.com/cloudquery/plugin-sdk-python/issues/167)) ([fbf5de1](https://github.com/cloudquery/plugin-sdk-python/commit/fbf5de12b0a86774053ac5529a569428d282ed65)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). --- .release-please-manifest.json | 2 +- CHANGELOG.md | 15 +++++++++++++++ setup.py | 2 +- 3 files changed, 17 insertions(+), 2 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 7f26ba9..5520dc3 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.1.20" + ".": "0.1.21" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 4f92b6a..41beb44 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## [0.1.21](https://github.com/cloudquery/plugin-sdk-python/compare/v0.1.20...v0.1.21) (2024-05-06) + + +### Bug Fixes + +* **deps:** Update dependency black to v24.4.2 ([#162](https://github.com/cloudquery/plugin-sdk-python/issues/162)) ([0b5b482](https://github.com/cloudquery/plugin-sdk-python/commit/0b5b482c22c8a7bf352597a25606c21538dfa0c2)) +* **deps:** Update dependency cloudquery-plugin-pb to v0.0.26 ([#168](https://github.com/cloudquery/plugin-sdk-python/issues/168)) ([07c0435](https://github.com/cloudquery/plugin-sdk-python/commit/07c043597d3c2afb018dc1a08b16ba8e90be0ff8)) +* **deps:** Update dependency exceptiongroup to v1.2.1 ([#159](https://github.com/cloudquery/plugin-sdk-python/issues/159)) ([21c5de7](https://github.com/cloudquery/plugin-sdk-python/commit/21c5de734617f13b747ef8e4ae8bfb94c5b0fe25)) +* **deps:** Update dependency grpcio to v1.63.0 ([#163](https://github.com/cloudquery/plugin-sdk-python/issues/163)) ([531c4b8](https://github.com/cloudquery/plugin-sdk-python/commit/531c4b884a9d34da872518dcbb036418240fab03)) +* **deps:** Update dependency grpcio-tools to v1.63.0 ([#164](https://github.com/cloudquery/plugin-sdk-python/issues/164)) ([4ceb7ae](https://github.com/cloudquery/plugin-sdk-python/commit/4ceb7ae30861d538ef835a62861ed8ad91a97da7)) +* **deps:** Update dependency pandas to v2.2.2 ([#160](https://github.com/cloudquery/plugin-sdk-python/issues/160)) ([0cc0fc0](https://github.com/cloudquery/plugin-sdk-python/commit/0cc0fc02a0c9616deb113ad3ac2e39d80b94d13a)) +* **deps:** Update dependency pluggy to v1.5.0 ([#165](https://github.com/cloudquery/plugin-sdk-python/issues/165)) ([c9c3b93](https://github.com/cloudquery/plugin-sdk-python/commit/c9c3b933583fb3992970cc46ffa42c2cb89dcedd)) +* **deps:** Update dependency pytest to v8.2.0 ([#166](https://github.com/cloudquery/plugin-sdk-python/issues/166)) ([85c29c0](https://github.com/cloudquery/plugin-sdk-python/commit/85c29c060e49d4f6fc1de2b3a0391a82a5a52970)) +* **deps:** Update dependency python-dateutil to v2.9.0.post0 ([#167](https://github.com/cloudquery/plugin-sdk-python/issues/167)) ([fbf5de1](https://github.com/cloudquery/plugin-sdk-python/commit/fbf5de12b0a86774053ac5529a569428d282ed65)) + ## [0.1.20](https://github.com/cloudquery/plugin-sdk-python/compare/v0.1.19...v0.1.20) (2024-04-01) diff --git a/setup.py b/setup.py index 445ee09..f544f3c 100644 --- a/setup.py +++ b/setup.py @@ -51,7 +51,7 @@ ] setuptools.setup( name=name, - version="0.1.20", + version="0.1.21", description=description, long_description=long_description, author="CloudQuery LTD",