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
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v4.8.1-rc1
Choose a base ref
...
head repository: cloudquery/plugin-sdk
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v4.0.0
Choose a head ref
  • 7 commits
  • 9 files changed
  • 3 contributors

Commits on Jul 6, 2023

  1. fix: Use background ctx in batchwriter worker (#1079)

    
    
    <!--
    Explain what problem this PR addresses
    -->
    
    ---
    yevgenypats authored Jul 6, 2023
    Configuration menu
    Copy the full SHA
    dea8168 View commit details
    Browse the repository at this point in the history

Commits on Jul 10, 2023

  1. fix(deps): Update github.com/cloudquery/arrow/go/v13 digest to 0a52533 (

    #1083)
    
    This PR contains the following updates:
    
    | Package | Type | Update | Change |
    |---|---|---|---|
    | [github.com/cloudquery/arrow/go/v13](https://togithub.com/cloudquery/arrow) | replace | digest | `df3b664` -> `0a52533` |
    
    ---
    
    ### Configuration
    
    📅 **Schedule**: Branch creation - "before 3am on Monday" (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://togithub.com/renovatebot/renovate).
    <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNS4xNTkuNyIsInVwZGF0ZWRJblZlciI6IjM1LjE1OS43IiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->
    cq-bot authored Jul 10, 2023
    Configuration menu
    Copy the full SHA
    0370294 View commit details
    Browse the repository at this point in the history
  2. fix(deps): Update github.com/cloudquery/arrow/go/v13 digest to a2a76eb (

    #1084)
    
    This PR contains the following updates:
    
    | Package | Type | Update | Change |
    |---|---|---|---|
    | [github.com/cloudquery/arrow/go/v13](https://togithub.com/cloudquery/arrow) | replace | digest | `0a52533` -> `a2a76eb` |
    
    ---
    
    ### Configuration
    
    📅 **Schedule**: Branch creation - "before 3am on Monday" (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://togithub.com/renovatebot/renovate).
    <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNS4xNTkuNyIsInVwZGF0ZWRJblZlciI6IjM1LjE1OS43IiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->
    cq-bot authored Jul 10, 2023
    Configuration menu
    Copy the full SHA
    26df75f View commit details
    Browse the repository at this point in the history

Commits on Jul 12, 2023

  1. chore: Release 4.0.0 (#998)

    We should merge this PR once we're ready to release `v4.0.0`
    
    BEGIN_COMMIT_OVERRIDE
    chore: release 4.0.0
    
    Release-As: 4.0.0
    END_COMMIT_OVERRIDE
    erezrokah authored Jul 12, 2023
    Configuration menu
    Copy the full SHA
    a80ee69 View commit details
    Browse the repository at this point in the history
  2. chore(ci): Bring back unittest-post, scope runners names to SDK (#1087)

    
    This PR brings back the tests benchmarks, and also renames the runners so they are scoped for the SDK repo.
    
    ---
    erezrokah authored Jul 12, 2023
    1 Configuration menu
    Copy the full SHA
    38d8c0a View commit details
    Browse the repository at this point in the history
  3. fix(types-inet): Align logic with scalar package, set net.IPNet `IP…

    …` field after parsing `ParseCIDR` (#982)
    
    
    
    Discovered this while working on the PostgreSQL source v4 migration.
    When we set string values to the `inet` scalar we set the `IP` field on the resulting `net.IPNet`:
    https://github.com/cloudquery/plugin-sdk/blob/097621f02e4fe1258290c3bfdd744a8fc3ab1c15/scalar/inet.go#L85
    
    However the `inet` arrow type loses that information when returning the value:
    https://github.com/cloudquery/plugin-sdk/blob/097621f02e4fe1258290c3bfdd744a8fc3ab1c15/types/inet.go#L159
    
    This means that if you create an arrow `inet` type from the string `192.168.0.1/24`, then call `ValueStr` you get back `192.168.0.0/24`
    
    This PR sets the IP data on the resulting `net.IPNet` so it is not lost
    
    
    ---
    erezrokah authored Jul 12, 2023
    1 Configuration menu
    Copy the full SHA
    fa07032 View commit details
    Browse the repository at this point in the history
  4. chore(main): Release v4.0.0 (#1080)

    🤖 I have created a release *beep* *boop*
    ---
    
    
    ## [4.0.0](v4.8.1-rc1...v4.0.0) (2023-07-12)
    
    
    ### Bug Fixes
    
    * **deps:** Update github.com/cloudquery/arrow/go/v13 digest to 0a52533 ([#1083](#1083)) ([0370294](0370294))
    * **deps:** Update github.com/cloudquery/arrow/go/v13 digest to a2a76eb ([#1084](#1084)) ([26df75f](26df75f))
    * **types-inet:** Align logic with scalar package, set `net.IPNet` `IP` field after parsing `ParseCIDR` ([#982](#982)) ([fa07032](fa07032))
    * Use background ctx in batchwriter worker ([#1079](#1079)) ([dea8168](dea8168))
    
    
    ### Miscellaneous Chores
    
    * release 4.0.0 ([a80ee69](a80ee69))
    
    ---
    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 Jul 12, 2023
    2 Configuration menu
    Copy the full SHA
    6238bfb View commit details
    Browse the repository at this point in the history
Loading