Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: cloudquery/plugin-sdk-python
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.1.48
Choose a base ref
...
head repository: cloudquery/plugin-sdk-python
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.1.49
Choose a head ref
  • 10 commits
  • 7 files changed
  • 2 contributors

Commits on Oct 1, 2025

  1. fix(deps): Update dependency cloudquery-plugin-pb to v0.0.48 (#329)

    This PR contains the following updates:
    
    | Package | Update | Change |
    |---|---|---|
    | [cloudquery-plugin-pb](https://redirect.github.com/cloudquery/plugin-pb-python) | patch | `==0.0.47` -> `==0.0.48` |
    
    ---
    
    ### Release Notes
    
    <details>
    <summary>cloudquery/plugin-pb-python (cloudquery-plugin-pb)</summary>
    
    ### [`v0.0.48`](https://redirect.github.com/cloudquery/plugin-pb-python/blob/HEAD/CHANGELOG.md#0048-2025-10-01)
    
    [Compare Source](https://redirect.github.com/cloudquery/plugin-pb-python/compare/v0.0.47...v0.0.48)
    
    ##### Bug Fixes
    
    -   **deps:** Update dependency black to v25.9.0 ([#&#8203;182](https://redirect.github.com/cloudquery/plugin-pb-python/issues/182)) ([d14d469](https://redirect.github.com/cloudquery/plugin-pb-python/commit/d14d469d9963b54889fb7fe436afd9e4fcafefd5))
    -   **deps:** Update dependency grpcio to v1.75.0 ([#&#8203;184](https://redirect.github.com/cloudquery/plugin-pb-python/issues/184)) ([0f86305](https://redirect.github.com/cloudquery/plugin-pb-python/commit/0f86305f8c008a2367477be7bdcc0e60f875759a))
    -   **deps:** Update dependency grpcio-tools to v1.75.0 ([#&#8203;185](https://redirect.github.com/cloudquery/plugin-pb-python/issues/185)) ([72a8929](https://redirect.github.com/cloudquery/plugin-pb-python/commit/72a892963422b099fe9c83aa01337cf4e5c20e2b))
    -   **deps:** Update dependency pytest to v8.4.2 ([#&#8203;181](https://redirect.github.com/cloudquery/plugin-pb-python/issues/181)) ([dba629c](https://redirect.github.com/cloudquery/plugin-pb-python/commit/dba629cfc5cef8a69f0760f60e9bfff015c3dc87))
    -   Generate Python Code from `plugin-pb` ([#&#8203;187](https://redirect.github.com/cloudquery/plugin-pb-python/issues/187)) ([85223aa](https://redirect.github.com/cloudquery/plugin-pb-python/commit/85223aab25b4f6d500a844669c36043c0c717371))
    
    </details>
    
    ---
    
    ### 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.
    
    ---
    
     - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box
    
    ---
    
    This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate).
    <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MC4yMi4xIiwidXBkYXRlZEluVmVyIjoiNDAuMjIuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiYXV0b21lcmdlIl19-->
    cq-bot authored Oct 1, 2025
    Configuration menu
    Copy the full SHA
    8f911a4 View commit details
    Browse the repository at this point in the history
  2. fix(deps): Update dependency grpcio to v1.75.1 (#330)

    This PR contains the following updates:
    
    | Package | Update | Change |
    |---|---|---|
    | [grpcio](https://grpc.io) ([source](https://redirect.github.com/grpc/grpc)) | patch | `==1.75.0` -> `==1.75.1` |
    
    ---
    
    ### Release Notes
    
    <details>
    <summary>grpc/grpc (grpcio)</summary>
    
    ### [`v1.75.1`](https://redirect.github.com/grpc/grpc/releases/tag/v1.75.1)
    
    [Compare Source](https://redirect.github.com/grpc/grpc/compare/v1.75.0...v1.75.1)
    
    This is release gRPC Core 1.75.1 (gemini).
    
    For gRPC documentation, see [grpc.io](https://grpc.io/). For previous releases, see [Releases](https://redirect.github.com/grpc/grpc/releases).
    
    This release contains refinements, improvements, and bug fixes.
    
    #### What's Changed
    
    ##### Python
    
    -   Release grpcio wheels with Python 3.14 support ([#&#8203;40403](https://redirect.github.com/grpc/grpc/issues/40403))
    -   Asyncio: fixes grpc shutdown race condition occurring during python interpreter finalizations. ([#&#8203;40447](https://redirect.github.com/grpc/grpc/issues/40447))
        -   This also addresses previously reported issues with empty error message on Python interpreter exit (`Error in sys.excepthook:`/`Original exception was:` empty): [#&#8203;36655](https://redirect.github.com/grpc/grpc/issues/36655), [#&#8203;38679](https://redirect.github.com/grpc/grpc/issues/38679), [#&#8203;33342](https://redirect.github.com/grpc/grpc/issues/33342)
    -   Python 3.14: preserve current behavior when using grpc.aio async methods outside of a running event loop. ([#&#8203;40750](https://redirect.github.com/grpc/grpc/issues/40750))
        -   Note: using async methods outside of a running event loop is [discouraged](https://docs.python.org/3.14/library/asyncio-policy.html#asyncio-policies) by Python, and **will be deprecated in future gRPC releases**. Please use the [asyncio.run()](https://docs.python.org/3.14/library/asyncio-runner.html#asyncio.run) function (or [asyncio.Runner](https://docs.python.org/3.14/library/asyncio-runner.html#asyncio.Runner) for custom loop factories). For interactive mode, use dedicated [asyncio REPL](https://docs.python.org/3/library/asyncio.html#asyncio-cli): `python -m asyncio`.
    
    **Full Changelog**: grpc/grpc@v1.75.0...v1.75.1
    
    </details>
    
    ---
    
    ### Configuration
    
    📅 **Schedule**: Branch creation - Between 12:00 AM and 03:59 AM, on day 1 of the month ( * 0-3 1 * * ) (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.
    
    ---
    
     - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box
    
    ---
    
    This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate).
    <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MC4yMi4xIiwidXBkYXRlZEluVmVyIjoiNDAuMjIuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiYXV0b21lcmdlIl19-->
    cq-bot authored Oct 1, 2025
    Configuration menu
    Copy the full SHA
    990bf23 View commit details
    Browse the repository at this point in the history
  3. fix(deps): Update dependency MarkupSafe to v3.0.3 (#332)

    This PR contains the following updates:
    
    | Package | Update | Change |
    |---|---|---|
    | [MarkupSafe](https://redirect.github.com/pallets/markupsafe) ([changelog](https://markupsafe.palletsprojects.com/page/changes/)) | patch | `==3.0.2` -> `==3.0.3` |
    
    ---
    
    ### Release Notes
    
    <details>
    <summary>pallets/markupsafe (MarkupSafe)</summary>
    
    ### [`v3.0.3`](https://redirect.github.com/pallets/markupsafe/blob/HEAD/CHANGES.rst#Version-303)
    
    [Compare Source](https://redirect.github.com/pallets/markupsafe/compare/3.0.2...3.0.3)
    
    Released 2025-09-27
    
    -   `__version__` raises `DeprecationWarning` instead of `UserWarning`.
        :issue:`487`
    -   Adopt multi-phase initialisation (:pep:`489`) for the C extension.
        :issue:`494`
    -   Build Windows ARM64 wheels. :issue:`485`
    -   Build Python 3.14 wheels. :issue:`503`
    -   Build riscv64 wheels. :issue:`505`
    
    </details>
    
    ---
    
    ### Configuration
    
    📅 **Schedule**: Branch creation - Between 12:00 AM and 03:59 AM, on day 1 of the month ( * 0-3 1 * * ) (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.
    
    ---
    
     - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box
    
    ---
    
    This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate).
    <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MC4yMi4xIiwidXBkYXRlZEluVmVyIjoiNDAuMjIuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiYXV0b21lcmdlIl19-->
    cq-bot authored Oct 1, 2025
    Configuration menu
    Copy the full SHA
    b07bff3 View commit details
    Browse the repository at this point in the history
  4. fix(deps): Update dependency pandas to v2.3.3 (#333)

    This PR contains the following updates:
    
    | Package | Update | Change |
    |---|---|---|
    | [pandas](https://redirect.github.com/pandas-dev/pandas) | patch | `==2.3.2` -> `==2.3.3` |
    
    ---
    
    ### Release Notes
    
    <details>
    <summary>pandas-dev/pandas (pandas)</summary>
    
    ### [`v2.3.3`](https://redirect.github.com/pandas-dev/pandas/releases/tag/v2.3.3): Pandas 2.3.3
    
    [Compare Source](https://redirect.github.com/pandas-dev/pandas/compare/v2.3.2...v2.3.3)
    
    We are pleased to announce the release of pandas 2.3.3.
    This release includes some improvements and fixes to the future string data type (preview feature for the upcoming pandas 3.0). We recommend that all users upgrade to this version.
    
    See the [full whatsnew](https://pandas.pydata.org/pandas-docs/version/2.3/whatsnew/v2.3.3.html) for a list of all the changes.
    Pandas 2.3.3 supports Python 3.9 and higher, and is the first release to support Python 3.14.
    
    The release will be available on the conda-forge channel:
    
        conda install pandas --channel conda-forge
    
    Or via PyPI:
    
        python3 -m pip install --upgrade pandas
    
    Please report any issues with the release on the [pandas issue tracker](https://redirect.github.com/pandas-dev/pandas/issues).
    
    Thanks to all the contributors who made this release possible.
    
    </details>
    
    ---
    
    ### Configuration
    
    📅 **Schedule**: Branch creation - Between 12:00 AM and 03:59 AM, on day 1 of the month ( * 0-3 1 * * ) (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.
    
    ---
    
     - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box
    
    ---
    
    This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate).
    <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MC4yMi4xIiwidXBkYXRlZEluVmVyIjoiNDAuMjIuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiYXV0b21lcmdlIl19-->
    cq-bot authored Oct 1, 2025
    Configuration menu
    Copy the full SHA
    39877e7 View commit details
    Browse the repository at this point in the history
  5. fix(deps): Update dependency tzdata to v2025.2 (#334)

    This PR contains the following updates:
    
    | Package | Update | Change |
    |---|---|---|
    | [tzdata](https://redirect.github.com/python/tzdata) | minor | `==2025.1` -> `==2025.2` |
    
    ---
    
    ### Release Notes
    
    <details>
    <summary>python/tzdata (tzdata)</summary>
    
    ### [`v2025.2`](https://redirect.github.com/python/tzdata/releases/tag/2025.2): : Release of upstream tzdata 2025b
    
    [Compare Source](https://redirect.github.com/python/tzdata/compare/2025.1...2025.2)
    
    ### Version 2025.2
    
    Upstream version 2025b released 2025-03-22T20:40:46+00:00
    
    #### Briefly:
    
    New zone for Aysén Region in Chile which moves from -04/-03 to -03.
    
    #### Changes to future timestamps
    
    Chile's Aysén Region moves from -04/-03 to -03 year-round, joining Magallanes
    Region.  The region will not change its clocks on 2025-04-05 at 24:00, diverging
    from America/Santiago and creating a new zone America/Coyhaique.  (Thanks to
    Yonathan Dossow.)  Model this as a change to standard offset effective
    2025-03-20.
    
    #### Changes to past timestamps
    
    Iran switched from +04 to +0330 on 1978-11-10 at 24:00, not at year end.
    (Thanks to Roozbeh Pournader.)
    
    </details>
    
    ---
    
    ### Configuration
    
    📅 **Schedule**: Branch creation - Between 12:00 AM and 03:59 AM, on day 1 of the month ( * 0-3 1 * * ) (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.
    
    ---
    
     - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box
    
    ---
    
    This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate).
    <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MC4yMi4xIiwidXBkYXRlZEluVmVyIjoiNDAuMjIuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiYXV0b21lcmdlIl19-->
    cq-bot authored Oct 1, 2025
    Configuration menu
    Copy the full SHA
    93f5a9e View commit details
    Browse the repository at this point in the history
  6. chore(deps): Update actions/checkout action to v5 (#335)

    This PR contains the following updates:
    
    | Package | Type | Update | Change |
    |---|---|---|---|
    | [actions/checkout](https://redirect.github.com/actions/checkout) | action | major | `v4` -> `v5` |
    
    ---
    
    ### Release Notes
    
    <details>
    <summary>actions/checkout (actions/checkout)</summary>
    
    ### [`v5`](https://redirect.github.com/actions/checkout/compare/v4...v5)
    
    [Compare Source](https://redirect.github.com/actions/checkout/compare/v4...v5)
    
    </details>
    
    ---
    
    ### Configuration
    
    📅 **Schedule**: Branch creation - Between 12:00 AM and 03:59 AM, on day 1 of the month ( * 0-3 1 * * ) (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.
    
    ---
    
     - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box
    
    ---
    
    This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate).
    <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MC4yMi4xIiwidXBkYXRlZEluVmVyIjoiNDAuMjIuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->
    cq-bot authored Oct 1, 2025
    Configuration menu
    Copy the full SHA
    ac85967 View commit details
    Browse the repository at this point in the history
  7. chore(deps): Update actions/setup-python action to v6 (#336)

    This PR contains the following updates:
    
    | Package | Type | Update | Change |
    |---|---|---|---|
    | [actions/setup-python](https://redirect.github.com/actions/setup-python) | action | major | `v5` -> `v6` |
    
    ---
    
    ### Release Notes
    
    <details>
    <summary>actions/setup-python (actions/setup-python)</summary>
    
    ### [`v6`](https://redirect.github.com/actions/setup-python/compare/v5...v6)
    
    [Compare Source](https://redirect.github.com/actions/setup-python/compare/v5...v6)
    
    </details>
    
    ---
    
    ### Configuration
    
    📅 **Schedule**: Branch creation - Between 12:00 AM and 03:59 AM, on day 1 of the month ( * 0-3 1 * * ) (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.
    
    ---
    
     - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box
    
    ---
    
    This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate).
    <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MC4yMi4xIiwidXBkYXRlZEluVmVyIjoiNDAuMjIuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->
    cq-bot authored Oct 1, 2025
    Configuration menu
    Copy the full SHA
    398ca65 View commit details
    Browse the repository at this point in the history
  8. chore(deps): Update amannn/action-semantic-pull-request action to v6 (#…

    …337)
    
    This PR contains the following updates:
    
    | Package | Type | Update | Change |
    |---|---|---|---|
    | [amannn/action-semantic-pull-request](https://redirect.github.com/amannn/action-semantic-pull-request) | action | major | `v5` -> `v6` |
    
    ---
    
    ### Release Notes
    
    <details>
    <summary>amannn/action-semantic-pull-request (amannn/action-semantic-pull-request)</summary>
    
    ### [`v6`](https://redirect.github.com/amannn/action-semantic-pull-request/compare/v5...v6)
    
    [Compare Source](https://redirect.github.com/amannn/action-semantic-pull-request/compare/v5...v6)
    
    </details>
    
    ---
    
    ### Configuration
    
    📅 **Schedule**: Branch creation - Between 12:00 AM and 03:59 AM, on day 1 of the month ( * 0-3 1 * * ) (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.
    
    ---
    
     - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box
    
    ---
    
    This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate).
    <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MC4yMi4xIiwidXBkYXRlZEluVmVyIjoiNDAuMjIuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->
    cq-bot authored Oct 1, 2025
    Configuration menu
    Copy the full SHA
    05e15f9 View commit details
    Browse the repository at this point in the history
  9. fix(deps): Update dependency pyarrow to v21 (#339)

    Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
    cq-bot and kodiakhq[bot] authored Oct 1, 2025
    Configuration menu
    Copy the full SHA
    ff1a04e View commit details
    Browse the repository at this point in the history
  10. chore(main): Release v0.1.49 (#340)

    🤖 I have created a release *beep* *boop*
    ---
    
    
    ## [0.1.49](v0.1.48...v0.1.49) (2025-10-01)
    
    
    ### Bug Fixes
    
    * **deps:** Update dependency cloudquery-plugin-pb to v0.0.48 ([#329](#329)) ([8f911a4](8f911a4))
    * **deps:** Update dependency grpcio to v1.75.1 ([#330](#330)) ([990bf23](990bf23))
    * **deps:** Update dependency MarkupSafe to v3.0.3 ([#332](#332)) ([b07bff3](b07bff3))
    * **deps:** Update dependency pandas to v2.3.3 ([#333](#333)) ([39877e7](39877e7))
    * **deps:** Update dependency pyarrow to v21 ([#339](#339)) ([ff1a04e](ff1a04e))
    * **deps:** Update dependency tzdata to v2025.2 ([#334](#334)) ([93f5a9e](93f5a9e))
    
    ---
    This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
    cq-bot authored Oct 1, 2025
    Configuration menu
    Copy the full SHA
    c237db0 View commit details
    Browse the repository at this point in the history
Loading