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/filetypes
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v4.2.11
Choose a base ref
...
head repository: cloudquery/filetypes
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v4.2.12
Choose a head ref
  • 15 commits
  • 8 files changed
  • 1 contributor

Commits on Mar 2, 2024

  1. fix(deps): Update module google.golang.org/grpc to v1.62.0 (#455)

    This PR contains the following updates:
    
    | Package | Type | Update | Change |
    |---|---|---|---|
    | [google.golang.org/grpc](https://togithub.com/grpc/grpc-go) | indirect | minor | `v1.60.1` -> `v1.62.0` |
    
    ---
    
    > [!WARNING]
    > Some dependencies could not be looked up. Check the Dependency Dashboard for more information.
    
    ---
    
    ### Release Notes
    
    <details>
    <summary>grpc/grpc-go (google.golang.org/grpc)</summary>
    
    ### [`v1.62.0`](https://togithub.com/grpc/grpc-go/releases/tag/v1.62.0): Release 1.62.0
    
    [Compare Source](https://togithub.com/grpc/grpc-go/compare/v1.61.1...v1.62.0)
    
    ### New Features
    
    -   grpc: Add StaticMethod CallOption as a signal to stats handler that a method is safe to use as an instrument key ([#&#8203;6986](https://togithub.com/grpc/grpc-go/issues/6986))
    
    ### Behavior Changes
    
    -   grpc: Return canonical target string from ClientConn.Target() and resolver.Address.String() ([#&#8203;6923](https://togithub.com/grpc/grpc-go/issues/6923))
    
    ### Bug Fixes
    
    -   server: wait to close connection until incoming socket is drained (with timeout) to prevent data loss on client-side ([#&#8203;6977](https://togithub.com/grpc/grpc-go/issues/6977))
        -   Special Thanks: [@&#8203;s-matyukevich](https://togithub.com/s-matyukevich) for discovering the root cause
    
    ### Performance Improvements
    
    -   \*: Allow building without `x/net/trace` by using `grpcnotrace` to enable dead code elimination ([#&#8203;6954](https://togithub.com/grpc/grpc-go/issues/6954))
        -   Special Thanks: [@&#8203;hugelgupf](https://togithub.com/hugelgupf)
    -   rand: improve performance and simplify implementation of `grpcrand` by adopting `math/rand`'s top-level functions for go version 1.21.0 and newer. ([#&#8203;6925](https://togithub.com/grpc/grpc-go/issues/6925))
        -   Special Thanks: [@&#8203;kmirzavaziri](https://togithub.com/kmirzavaziri)
    
    ### Dependencies
    
    -   \*: Use google.golang.org/protobuf/proto instead of github.com/golang/protobuf. ([#&#8203;6919](https://togithub.com/grpc/grpc-go/issues/6919))
        -   Special Thanks: [@&#8203;Clement-Jean](https://togithub.com/Clement-Jean)
    
    > \[!NOTE]
    > The above change in proto library usage introduces a minor behavior change within those libraries.  The old `github.com/golang/protobuf` library would error if given a `nil` message to `Marshal`, while the new `google.golang.org/protobuf` library will successfully output zero bytes in this case.  This means server method handlers that did `return nil, nil` will now return an empty message and no error, while it used to return an error.  This also affects the client side, where clients sending `nil` messages used to fail without sending the RPC, and now they will send an empty message.
    
    ### [`v1.61.1`](https://togithub.com/grpc/grpc-go/releases/tag/v1.61.1): Release 1.61.1
    
    [Compare Source](https://togithub.com/grpc/grpc-go/compare/v1.61.0...v1.61.1)
    
    ### Bug Fixes
    
    -   server: wait to close connection until incoming socket is drained (with timeout) to prevent data loss on client-side ([#&#8203;6977](https://togithub.com/grpc/grpc-go/issues/6977))
        -   Special Thanks: [@&#8203;s-matyukevich](https://togithub.com/s-matyukevich) for discovering the root cause
    
    ### [`v1.61.0`](https://togithub.com/grpc/grpc-go/releases/tag/v1.61.0): Release 1.61.0
    
    [Compare Source](https://togithub.com/grpc/grpc-go/compare/v1.60.1...v1.61.0)
    
    ### New Features
    
    -   resolver: provide method, `AuthorityOverrider`, to allow resolver.Builders to override the default authority for a `ClientConn`. (EXPERIMENTAL) ([#&#8203;6752](https://togithub.com/grpc/grpc-go/issues/6752))
        -   Special Thanks: [@&#8203;Aditya-Sood](https://togithub.com/Aditya-Sood)
    -   xds: add support for mTLS Credentials in xDS bootstrap ([gRFC A65](github.com/grpc/proposal/blob/8c31bfedded5f0a51c4933e9e9a8246122f9c41a/A65-xds-mtls-creds-in-bootstrap.md)) ([#&#8203;6757](https://togithub.com/grpc/grpc-go/issues/6757))
        -   Special Thanks: [@&#8203;atollena](https://togithub.com/atollena)
    -   server: add `grpc.WaitForHandlers` `ServerOption` to cause `Server.Stop` to block until method handlers return. (EXPERIMENTAL)  ([#&#8203;6922](https://togithub.com/grpc/grpc-go/issues/6922))
    
    ### Performance Improvements
    
    -   grpc: skip compression of empty messages as an optimization ([#&#8203;6842](https://togithub.com/grpc/grpc-go/issues/6842))
        -   Special Thanks: [@&#8203;jroper](https://togithub.com/jroper)
    -   orca: use atomic pointer to improve performance in server metrics recorder ([#&#8203;6799](https://togithub.com/grpc/grpc-go/issues/6799))
        -   Special Thanks: [@&#8203;danielzhaotongliu](https://togithub.com/danielzhaotongliu)
    
    ### Bug Fixes
    
    -   client: correctly enable TCP keepalives with OS defaults on windows ([#&#8203;6863](https://togithub.com/grpc/grpc-go/issues/6863))
        -   Special Thanks: [@&#8203;mmatczuk](https://togithub.com/mmatczuk)
    -   server: change some stream operations to return `UNAVAILABLE` instead of `UNKNOWN` when underlying connection is broken ([#&#8203;6891](https://togithub.com/grpc/grpc-go/issues/6891))
        -   Special Thanks: [@&#8203;mustafasen81](https://togithub.com/mustafasen81)
    -   server: fix `GracefulStop` to block until all method handlers return (v1.60 regression). ([#&#8203;6922](https://togithub.com/grpc/grpc-go/issues/6922))
    -   server: fix two bugs that could lead to panics at shutdown when using [`NumStreamWorkers`](https://pkg.go.dev/google.golang.org/grpc#NumStreamWorkers) (EXPERIMENTAL). ([#&#8203;6856](https://togithub.com/grpc/grpc-go/issues/6856))
    -   reflection: do not send invalid descriptors to clients for files that cannot be fully resolved ([#&#8203;6771](https://togithub.com/grpc/grpc-go/issues/6771))
        -   Special Thanks: [@&#8203;jhump](https://togithub.com/jhump)
    -   xds: don't fail channel/server startup when xds creds is specified, but bootstrap is missing certificate providers ([#&#8203;6848](https://togithub.com/grpc/grpc-go/issues/6848))
    -   xds: Atomically read and write xDS security configuration client side ([#&#8203;6796](https://togithub.com/grpc/grpc-go/issues/6796))
    -   xds/server: fix RDS handling for non-inline route configs ([#&#8203;6915](https://togithub.com/grpc/grpc-go/issues/6915))
    
    </details>
    
    ---
    
    ### Configuration
    
    📅 **Schedule**: Branch creation - "before 3am on Saturday" (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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMjIuMyIsInVwZGF0ZWRJblZlciI6IjM3LjIyMi4zIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->
    cq-bot authored Mar 2, 2024
    Configuration menu
    Copy the full SHA
    d77769f View commit details
    Browse the repository at this point in the history

Commits on Mar 6, 2024

  1. fix(deps): Update module github.com/cloudquery/plugin-sdk/v4 to v4.32…

    ….1 (#457)
    
    This PR contains the following updates:
    
    | Package | Type | Update | Change |
    |---|---|---|---|
    | [github.com/cloudquery/plugin-sdk/v4](https://togithub.com/cloudquery/plugin-sdk) | require | patch | `v4.32.0` -> `v4.32.1` |
    
    ---
    
    > [!WARNING]
    > Some dependencies could not be looked up. Check the Dependency Dashboard for more information.
    
    ---
    
    ### Release Notes
    
    <details>
    <summary>cloudquery/plugin-sdk (github.com/cloudquery/plugin-sdk/v4)</summary>
    
    ### [`v4.32.1`](https://togithub.com/cloudquery/plugin-sdk/releases/tag/v4.32.1)
    
    [Compare Source](https://togithub.com/cloudquery/plugin-sdk/compare/v4.32.0...v4.32.1)
    
    ##### Bug Fixes
    
    -   **deps:** Update golang.org/x/exp digest to [`814bf88`](https://togithub.com/cloudquery/plugin-sdk/commit/814bf88) ([#&#8203;1540](https://togithub.com/cloudquery/plugin-sdk/issues/1540)) ([e80fb24](https://togithub.com/cloudquery/plugin-sdk/commit/e80fb24ad916e84e391595ed482b4285ea5e1a9c))
    -   **deps:** Update google.golang.org/genproto/googleapis/api digest to [`df926f6`](https://togithub.com/cloudquery/plugin-sdk/commit/df926f6) ([#&#8203;1541](https://togithub.com/cloudquery/plugin-sdk/issues/1541)) ([9d8a3ec](https://togithub.com/cloudquery/plugin-sdk/commit/9d8a3ec5c7a4bffe3e625f148de43d71c836794d))
    -   **deps:** Update google.golang.org/genproto/googleapis/rpc digest to [`df926f6`](https://togithub.com/cloudquery/plugin-sdk/commit/df926f6) ([#&#8203;1543](https://togithub.com/cloudquery/plugin-sdk/issues/1543)) ([9315c16](https://togithub.com/cloudquery/plugin-sdk/commit/9315c1639e02474e97670ffb6c9b198b63aec5ef))
    -   **deps:** Update module github.com/cloudquery/plugin-pb-go to v1.19.1 ([#&#8203;1549](https://togithub.com/cloudquery/plugin-sdk/issues/1549)) ([3112739](https://togithub.com/cloudquery/plugin-sdk/commit/3112739d2a897b784ed85f27ee7632f5fbcb5091))
    -   **deps:** Update module github.com/klauspost/compress to v1.17.7 ([#&#8203;1544](https://togithub.com/cloudquery/plugin-sdk/issues/1544)) ([4e04027](https://togithub.com/cloudquery/plugin-sdk/commit/4e04027488cb1c32830d5fd14440beabf4a07500))
    -   **deps:** Update module github.com/klauspost/cpuid/v2 to v2.2.7 ([#&#8203;1545](https://togithub.com/cloudquery/plugin-sdk/issues/1545)) ([0fff7ed](https://togithub.com/cloudquery/plugin-sdk/commit/0fff7ed4464ac572e00eb5e0dc289e467b8e7afb))
    -   **deps:** Update module github.com/tdewolff/minify/v2 to v2.20.18 ([#&#8203;1546](https://togithub.com/cloudquery/plugin-sdk/issues/1546)) ([45fa641](https://togithub.com/cloudquery/plugin-sdk/commit/45fa641b50f177d2ab01298b0c14fc764464fcd7))
    -   **deps:** Update module github.com/ugorji/go/codec to v1.2.12 ([#&#8203;1547](https://togithub.com/cloudquery/plugin-sdk/issues/1547)) ([cd3488a](https://togithub.com/cloudquery/plugin-sdk/commit/cd3488ab730499dd513996d73987c9b86fca34c0))
    -   **deps:** Update module google.golang.org/grpc to v1.62.0 ([#&#8203;1550](https://togithub.com/cloudquery/plugin-sdk/issues/1550)) ([9ccec98](https://togithub.com/cloudquery/plugin-sdk/commit/9ccec989cd143e685fd7d3f66d840c2e2cb8d74b))
    -   **deps:** Update module google.golang.org/grpc to v1.62.0 ([#&#8203;1551](https://togithub.com/cloudquery/plugin-sdk/issues/1551)) ([d907120](https://togithub.com/cloudquery/plugin-sdk/commit/d907120661cb2ebead90c68b0f1a42767112bba3))
    -   MixedBatchWriter should nil the slice instead of zeroing ([#&#8203;1553](https://togithub.com/cloudquery/plugin-sdk/issues/1553)) ([f565da8](https://togithub.com/cloudquery/plugin-sdk/commit/f565da8961db0b9f88efcdaa6f083faa789de324))
    
    </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://togithub.com/renovatebot/renovate).
    <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMjcuMiIsInVwZGF0ZWRJblZlciI6IjM3LjIyNy4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->
    cq-bot authored Mar 6, 2024
    Configuration menu
    Copy the full SHA
    199e492 View commit details
    Browse the repository at this point in the history

Commits on Mar 14, 2024

  1. fix(deps): Update module github.com/cloudquery/plugin-sdk/v4 to v4.33…

    ….0 (#458)
    
    This PR contains the following updates:
    
    | Package | Type | Update | Change |
    |---|---|---|---|
    | [github.com/cloudquery/plugin-sdk/v4](https://togithub.com/cloudquery/plugin-sdk) | require | minor | `v4.32.1` -> `v4.33.0` |
    
    ---
    
    > [!WARNING]
    > Some dependencies could not be looked up. Check the Dependency Dashboard for more information.
    
    ---
    
    ### Release Notes
    
    <details>
    <summary>cloudquery/plugin-sdk (github.com/cloudquery/plugin-sdk/v4)</summary>
    
    ### [`v4.33.0`](https://togithub.com/cloudquery/plugin-sdk/releases/tag/v4.33.0)
    
    [Compare Source](https://togithub.com/cloudquery/plugin-sdk/compare/v4.32.1...v4.33.0)
    
    ##### Features
    
    -   Add destination tests for removing a unique constraint ([#&#8203;1558](https://togithub.com/cloudquery/plugin-sdk/issues/1558)) ([8add2b3](https://togithub.com/cloudquery/plugin-sdk/commit/8add2b36b8a9bf37bd24bc6cb03597c9843a592e))
    
    ##### Bug Fixes
    
    -   **deps:** Update Google Golang modules ([#&#8203;1556](https://togithub.com/cloudquery/plugin-sdk/issues/1556)) ([e89d4ce](https://togithub.com/cloudquery/plugin-sdk/commit/e89d4cea569abf81973d14db600a00db1d5133f3))
    -   **deps:** Update module github.com/cloudquery/plugin-pb-go to v1.19.2 ([#&#8203;1554](https://togithub.com/cloudquery/plugin-sdk/issues/1554)) ([09c24f1](https://togithub.com/cloudquery/plugin-sdk/commit/09c24f1e6b2f53c1a40df65bb7e0cea7b66c3722))
    
    </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://togithub.com/renovatebot/renovate).
    <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNDYuMCIsInVwZGF0ZWRJblZlciI6IjM3LjI0Ni4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->
    cq-bot authored Mar 14, 2024
    Configuration menu
    Copy the full SHA
    05dbef5 View commit details
    Browse the repository at this point in the history

Commits on Mar 15, 2024

  1. fix(deps): Update module github.com/cloudquery/plugin-sdk/v4 to v4.34…

    ….0 (#459)
    
    This PR contains the following updates:
    
    | Package | Type | Update | Change |
    |---|---|---|---|
    | [github.com/cloudquery/plugin-sdk/v4](https://togithub.com/cloudquery/plugin-sdk) | require | minor | `v4.33.0` -> `v4.34.0` |
    
    ---
    
    > [!WARNING]
    > Some dependencies could not be looked up. Check the Dependency Dashboard for more information.
    
    ---
    
    ### Release Notes
    
    <details>
    <summary>cloudquery/plugin-sdk (github.com/cloudquery/plugin-sdk/v4)</summary>
    
    ### [`v4.34.0`](https://togithub.com/cloudquery/plugin-sdk/releases/tag/v4.34.0)
    
    [Compare Source](https://togithub.com/cloudquery/plugin-sdk/compare/v4.33.0...v4.34.0)
    
    ##### Features
    
    -   Enable destinations to completely skip migration that are not supported ([#&#8203;1560](https://togithub.com/cloudquery/plugin-sdk/issues/1560)) ([3d3479b](https://togithub.com/cloudquery/plugin-sdk/commit/3d3479bcf7f4b10a50f19bf32af4aa71361b526f))
    
    </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://togithub.com/renovatebot/renovate).
    <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNDkuMCIsInVwZGF0ZWRJblZlciI6IjM3LjI0OS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->
    cq-bot authored Mar 15, 2024
    Configuration menu
    Copy the full SHA
    e19fe52 View commit details
    Browse the repository at this point in the history
  2. fix(deps): Update module github.com/cloudquery/plugin-sdk/v4 to v4.34…

    ….1 (#460)
    
    This PR contains the following updates:
    
    | Package | Type | Update | Change |
    |---|---|---|---|
    | [github.com/cloudquery/plugin-sdk/v4](https://togithub.com/cloudquery/plugin-sdk) | require | patch | `v4.34.0` -> `v4.34.1` |
    
    ---
    
    > [!WARNING]
    > Some dependencies could not be looked up. Check the Dependency Dashboard for more information.
    
    ---
    
    ### Release Notes
    
    <details>
    <summary>cloudquery/plugin-sdk (github.com/cloudquery/plugin-sdk/v4)</summary>
    
    ### [`v4.34.1`](https://togithub.com/cloudquery/plugin-sdk/releases/tag/v4.34.1)
    
    [Compare Source](https://togithub.com/cloudquery/plugin-sdk/compare/v4.34.0...v4.34.1)
    
    ##### Bug Fixes
    
    -   **deps:** Update module github.com/cloudquery/cloudquery-api-go to v1.8.0 ([#&#8203;1563](https://togithub.com/cloudquery/plugin-sdk/issues/1563)) ([abf3794](https://togithub.com/cloudquery/plugin-sdk/commit/abf37940ef2b413774d452dce907003f9deb7ff6))
    -   **deps:** Update module github.com/cloudquery/plugin-pb-go to v1.19.3 ([#&#8203;1565](https://togithub.com/cloudquery/plugin-sdk/issues/1565)) ([5107ad0](https://togithub.com/cloudquery/plugin-sdk/commit/5107ad08419f4c3f5d46e0c68da942d0ebba41a5))
    
    </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://togithub.com/renovatebot/renovate).
    <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNDkuMSIsInVwZGF0ZWRJblZlciI6IjM3LjI0OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->
    cq-bot authored Mar 15, 2024
    Configuration menu
    Copy the full SHA
    b52aacf View commit details
    Browse the repository at this point in the history

Commits on Mar 18, 2024

  1. fix(deps): Update module github.com/cloudquery/plugin-sdk/v4 to v4.34…

    ….2 (#461)
    
    This PR contains the following updates:
    
    | Package | Type | Update | Change |
    |---|---|---|---|
    | [github.com/cloudquery/plugin-sdk/v4](https://togithub.com/cloudquery/plugin-sdk) | require | patch | `v4.34.1` -> `v4.34.2` |
    
    ---
    
    > [!WARNING]
    > Some dependencies could not be looked up. Check the Dependency Dashboard for more information.
    
    ---
    
    ### Release Notes
    
    <details>
    <summary>cloudquery/plugin-sdk (github.com/cloudquery/plugin-sdk/v4)</summary>
    
    ### [`v4.34.2`](https://togithub.com/cloudquery/plugin-sdk/releases/tag/v4.34.2)
    
    [Compare Source](https://togithub.com/cloudquery/plugin-sdk/compare/v4.34.1...v4.34.2)
    
    ##### Bug Fixes
    
    -   **deps:** Update module github.com/cloudquery/cloudquery-api-go to v1.8.1 ([#&#8203;1567](https://togithub.com/cloudquery/plugin-sdk/issues/1567)) ([d6f5c18](https://togithub.com/cloudquery/plugin-sdk/commit/d6f5c18aad252a1a82451362d6834238360baa0f))
    -   **deps:** Update module github.com/cloudquery/plugin-pb-go to v1.19.4 ([#&#8203;1569](https://togithub.com/cloudquery/plugin-sdk/issues/1569)) ([e4895d3](https://togithub.com/cloudquery/plugin-sdk/commit/e4895d3c17bc4c01e81b620d19d88527f3fb1bf3))
    
    </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://togithub.com/renovatebot/renovate).
    <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNTMuMSIsInVwZGF0ZWRJblZlciI6IjM3LjI1My4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->
    cq-bot authored Mar 18, 2024
    Configuration menu
    Copy the full SHA
    dcf5a54 View commit details
    Browse the repository at this point in the history

Commits on Mar 22, 2024

  1. fix(deps): Update module github.com/cloudquery/plugin-sdk/v4 to v4.35…

    ….0 (#462)
    
    This PR contains the following updates:
    
    | Package | Type | Update | Change |
    |---|---|---|---|
    | [github.com/cloudquery/plugin-sdk/v4](https://togithub.com/cloudquery/plugin-sdk) | require | minor | `v4.34.2` -> `v4.35.0` |
    
    ---
    
    > [!WARNING]
    > Some dependencies could not be looked up. Check the Dependency Dashboard for more information.
    
    ---
    
    ### Release Notes
    
    <details>
    <summary>cloudquery/plugin-sdk (github.com/cloudquery/plugin-sdk/v4)</summary>
    
    ### [`v4.35.0`](https://togithub.com/cloudquery/plugin-sdk/releases/tag/v4.35.0)
    
    [Compare Source](https://togithub.com/cloudquery/plugin-sdk/compare/v4.34.2...v4.35.0)
    
    ##### Features
    
    -   Handle unknown token types when getting team name in usage client ([#&#8203;1572](https://togithub.com/cloudquery/plugin-sdk/issues/1572)) ([b6cb796](https://togithub.com/cloudquery/plugin-sdk/commit/b6cb79643a10bd79016478ee74629e8db6d16031))
    
    </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://togithub.com/renovatebot/renovate).
    <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNjUuMCIsInVwZGF0ZWRJblZlciI6IjM3LjI2NS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->
    cq-bot authored Mar 22, 2024
    Configuration menu
    Copy the full SHA
    6353efb View commit details
    Browse the repository at this point in the history

Commits on Mar 25, 2024

  1. fix(deps): Update module github.com/cloudquery/plugin-sdk/v4 to v4.36…

    ….0 (#463)
    
    This PR contains the following updates:
    
    | Package | Type | Update | Change |
    |---|---|---|---|
    | [github.com/cloudquery/plugin-sdk/v4](https://togithub.com/cloudquery/plugin-sdk) | require | minor | `v4.35.0` -> `v4.36.0` |
    
    ---
    
    > [!WARNING]
    > Some dependencies could not be looked up. Check the Dependency Dashboard for more information.
    
    ---
    
    ### Release Notes
    
    <details>
    <summary>cloudquery/plugin-sdk (github.com/cloudquery/plugin-sdk/v4)</summary>
    
    ### [`v4.36.0`](https://togithub.com/cloudquery/plugin-sdk/releases/tag/v4.36.0)
    
    [Compare Source](https://togithub.com/cloudquery/plugin-sdk/compare/v4.35.0...v4.36.0)
    
    ##### Features
    
    -   Expose InvocationID to Plugin Client ([#&#8203;1571](https://togithub.com/cloudquery/plugin-sdk/issues/1571)) ([038e401](https://togithub.com/cloudquery/plugin-sdk/commit/038e401e37062ef82d7c3439dbbdd998ab520fab))
    
    </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://togithub.com/renovatebot/renovate).
    <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNjkuNSIsInVwZGF0ZWRJblZlciI6IjM3LjI2OS41IiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->
    cq-bot authored Mar 25, 2024
    Configuration menu
    Copy the full SHA
    b9dee2b View commit details
    Browse the repository at this point in the history

Commits on Mar 28, 2024

  1. fix(deps): Update module github.com/cloudquery/plugin-sdk/v4 to v4.36…

    ….1 (#464)
    
    This PR contains the following updates:
    
    | Package | Type | Update | Change |
    |---|---|---|---|
    | [github.com/cloudquery/plugin-sdk/v4](https://togithub.com/cloudquery/plugin-sdk) | require | patch | `v4.36.0` -> `v4.36.1` |
    
    ---
    
    > [!WARNING]
    > Some dependencies could not be looked up. Check the Dependency Dashboard for more information.
    
    ---
    
    ### Release Notes
    
    <details>
    <summary>cloudquery/plugin-sdk (github.com/cloudquery/plugin-sdk/v4)</summary>
    
    ### [`v4.36.1`](https://togithub.com/cloudquery/plugin-sdk/releases/tag/v4.36.1)
    
    [Compare Source](https://togithub.com/cloudquery/plugin-sdk/compare/v4.36.0...v4.36.1)
    
    ##### Bug Fixes
    
    -   **deps:** Update module github.com/cloudquery/cloudquery-api-go to v1.9.0 ([#&#8203;1578](https://togithub.com/cloudquery/plugin-sdk/issues/1578)) ([f8d350a](https://togithub.com/cloudquery/plugin-sdk/commit/f8d350a50d9b01b88321bcefabde7795fdcf00b6))
    
    </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://togithub.com/renovatebot/renovate).
    <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNzMuMCIsInVwZGF0ZWRJblZlciI6IjM3LjI3My4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->
    cq-bot authored Mar 28, 2024
    Configuration menu
    Copy the full SHA
    c1bb510 View commit details
    Browse the repository at this point in the history

Commits on Apr 1, 2024

  1. chore(deps): Update dependency golangci/golangci-lint to v1.57.2 (#465)

    This PR contains the following updates:
    
    | Package | Update | Change |
    |---|---|---|
    | [golangci/golangci-lint](https://togithub.com/golangci/golangci-lint) | minor | `v1.56.2` -> `v1.57.2` |
    
    ---
    
    > [!WARNING]
    > Some dependencies could not be looked up. Check the Dependency Dashboard for more information.
    
    ---
    
    ### Release Notes
    
    <details>
    <summary>golangci/golangci-lint (golangci/golangci-lint)</summary>
    
    ### [`v1.57.2`](https://togithub.com/golangci/golangci-lint/blob/HEAD/CHANGELOG.md#v1572)
    
    [Compare Source](https://togithub.com/golangci/golangci-lint/compare/v1.57.1...v1.57.2)
    
    1.  Updated linters
        -   `contextcheck`: from 1.1.4 to 1.1.5
        -   `copyloopvar`: from 1.0.8 to 1.0.10
        -   `ginkgolinter`: from 0.16.1 to 0.16.2
        -   `goconst`: from 1.7.0 to 1.7.1
        -   `gomoddirectives`: from 0.2.3 to 0.2.4
        -   `intrange`: from 0.1.0 to 0.1.1
    2.  Misc.
        -   fix: display warnings on deprecated linter options
        -   fix: missing `colored-tab` output format
        -   fix: TeamCity `inspectionType` service message
    3.  Documentation
        -   Remove invalid example about mixing files and directory
        -   Improve linters page
    
    ### [`v1.57.1`](https://togithub.com/golangci/golangci-lint/blob/HEAD/CHANGELOG.md#v1571)
    
    [Compare Source](https://togithub.com/golangci/golangci-lint/compare/v1.57.0...v1.57.1)
    
    1.  Fixes:
        -   Ignore issues with invalid position (e.g. `contextcheck`).
    
    ### [`v1.57.0`](https://togithub.com/golangci/golangci-lint/blob/HEAD/CHANGELOG.md#v1570)
    
    [Compare Source](https://togithub.com/golangci/golangci-lint/compare/v1.56.2...v1.57.0)
    
    1.  New linters
        -   `copyloopvar`: https://github.com/karamaru-alpha/copyloopvar
        -   `intrange`: https://github.com/ckaznocha/intrange
    2.  Updated linters
        -   `dupword`: from 0.0.13 to 0.0.14
        -   `gci`: from 0.12.1 to 0.12.3
        -   `ginkgolinter`: from 0.15.2 to 0.16.1 (new option `force-expect-to`, `validate-async-intervals`, and `forbid-spec-pollution`)
        -   `go-critic`: from 0.11.1 to 0.11.2
        -   `go-critic`: support of `enable-all` and `disable-all` options
        -   `go-spancheck`: from 0.5.2 to 0.5.3
        -   `gomodguard`: from 1.3.0 to 1.3.1
        -   `govet`: deprecation of `check-shadowing` ⚠️
        -   `govet`: disable temporarily `httpresponse` because of a bug [https://github.com/golang/go/issues/66259](https://togithub.com/golang/go/issues/66259)
        -   `misspell`: add `extra-words`
        -   `musttag`: from 0.8.0 to 0.9.0
        -   `nakedret`: from 2.0.2 to 2.0.4
        -   `paralleltest`: from 1.0.9 to 1.0.10
        -   `perfsprint`: from 0.6.0 to 0.7.1 (new option `strconcat`)
        -   `protogetter`: from 0.3.4 to 0.3.5
        -   `revive`: add `exclude` option
        -   `sloglint`: from 0.4.0 to 0.5.0 (new option `no-global`)
        -   `staticcheck`: from 0.4.6 to 0.4.7
        -   `testifylint`: from 1.1.2 to 1.2.0 (new option `bool-compare`)
        -   `unconvert`: to HEAD (new options `fast-math` and `safe`)
        -   `wrapcheck`: from 2.8.1 to 2.8.3
        -   Disable `copyloopvar` and `intrange` on Go < 1.22
    3.  Enhancements
        -   🧩 New custom linters system https://golangci-lint.run/plugins/module-plugins/
        -   🎉 Allow running only a specific linter without modifying the file configuration (`--enable-only`)
        -   Allow custom sort order for the reports (`output.sort-order`)
        -   Automatically adjust the maximum concurrency to the container CPU quota if `run.concurrency=0`
        -   Add `verify` command to check the configuration against the JSON Schema
        -   Option to strictly follow Go generated file convention (`issues.exclude-generated-strict`)
        -   Syntax to not override `severity` from linters (`@linter`)
        -   Use severities from `gosec`
        -   Create automatically directory related to `output.formats.path`
        -   Use the first issue without inline on `mergeLineIssues` on multiple issues
    4.  Misc.
        -   ⚠️ Inactivate deprecated linters (`deadcode`, `exhaustivestruct`, `golint`, `ifshort`, `interfacer`, `maligned`, `nosnakecase`, `scopelint`, `structcheck`, `varcheck`)
        -   ⚠️ Deprecated CLI flags have been removed (deprecated since 2018)
        -   ⚠️ Move `show-stats` option from `run` to `output` configuration section
        -   ⚠️ Replace `run.skip-xxx` options by `issues.exclude-xxx` options
        -   ⚠️ Replace `output.format` by `output.formats` with a new file configuration syntax
        -   Internal rewrite of the CLI
        -   Improve 'no go files to analyze' message
        -   Use `GOTOOLCHAIN=auto` inside the Docker images
    5.  Documentation
        -   ⚠️ Define the linter deprecation cycle https://golangci-lint.run/product/roadmap/#linter-deprecation-cycle
        -   🎉 Use information from the previous release to create linter pages
        -   🎉 Publish JSON schema on https://golangci-lint.run/jsonschema/golangci.jsonschema.json
        -   Reorganize documentation pages
        -   Add an explanation about the configuration file inside golangci-lint repository
    
    **⚠️ Important ⚠️**
    
    1.  Deprecated linters are inactivated, you still need to disable them if you are using `enable-all`.
    2.  Deprecated CLI flags (about linter settings and `deadline`) have been removed.
    
    </details>
    
    ---
    
    ### 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.
    
    ---
    
     - [ ] <!-- 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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNzguMCIsInVwZGF0ZWRJblZlciI6IjM3LjI3OC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJhdXRvbWVyZ2UiXX0=-->
    cq-bot authored Apr 1, 2024
    Configuration menu
    Copy the full SHA
    a10395c View commit details
    Browse the repository at this point in the history
  2. fix(deps): Update module github.com/stretchr/testify to v1.9.0 (#466)

    This PR contains the following updates:
    
    | Package | Type | Update | Change |
    |---|---|---|---|
    | [github.com/stretchr/testify](https://togithub.com/stretchr/testify) | require | minor | `v1.8.4` -> `v1.9.0` |
    
    ---
    
    > [!WARNING]
    > Some dependencies could not be looked up. Check the Dependency Dashboard for more information.
    
    ---
    
    ### Release Notes
    
    <details>
    <summary>stretchr/testify (github.com/stretchr/testify)</summary>
    
    ### [`v1.9.0`](https://togithub.com/stretchr/testify/releases/tag/v1.9.0)
    
    [Compare Source](https://togithub.com/stretchr/testify/compare/v1.8.4...v1.9.0)
    
    #### What's Changed
    
    -   Fix Go modules version by [@&#8203;SuperQ](https://togithub.com/SuperQ) in [https://github.com/stretchr/testify/pull/1394](https://togithub.com/stretchr/testify/pull/1394)
    -   Document that require is not safe to call in created goroutines by [@&#8203;programmer04](https://togithub.com/programmer04) in [https://github.com/stretchr/testify/pull/1392](https://togithub.com/stretchr/testify/pull/1392)
    -   Remove myself from MAINTAINERS.md by [@&#8203;mvdkleijn](https://togithub.com/mvdkleijn) in [https://github.com/stretchr/testify/pull/1367](https://togithub.com/stretchr/testify/pull/1367)
    -   Correct spelling/grammar by [@&#8203;echarrod](https://togithub.com/echarrod) in [https://github.com/stretchr/testify/pull/1389](https://togithub.com/stretchr/testify/pull/1389)
    -   docs: Update URLs in README by [@&#8203;davidjb](https://togithub.com/davidjb) in [https://github.com/stretchr/testify/pull/1349](https://togithub.com/stretchr/testify/pull/1349)
    -   Update mockery link to Github Pages in README by [@&#8203;LandonTClipp](https://togithub.com/LandonTClipp) in [https://github.com/stretchr/testify/pull/1346](https://togithub.com/stretchr/testify/pull/1346)
    -   docs: Fix typos in tests and comments by [@&#8203;alexandear](https://togithub.com/alexandear) in [https://github.com/stretchr/testify/pull/1410](https://togithub.com/stretchr/testify/pull/1410)
    -   CI: tests from go1.17 by [@&#8203;SuperQ](https://togithub.com/SuperQ) in [https://github.com/stretchr/testify/pull/1409](https://togithub.com/stretchr/testify/pull/1409)
    -   Fix adding ? when no values passed by [@&#8203;lesichkovm](https://togithub.com/lesichkovm) in [https://github.com/stretchr/testify/pull/1320](https://togithub.com/stretchr/testify/pull/1320)
    -   codegen: use standard header for generated files by [@&#8203;dolmen](https://togithub.com/dolmen) in [https://github.com/stretchr/testify/pull/1406](https://togithub.com/stretchr/testify/pull/1406)
    -   mock: AssertExpectations log reason only on failure by [@&#8203;hikyaru-suzuki](https://togithub.com/hikyaru-suzuki) in [https://github.com/stretchr/testify/pull/1360](https://togithub.com/stretchr/testify/pull/1360)
    -   assert: fix flaky TestNeverTrue by [@&#8203;dolmen](https://togithub.com/dolmen) in [https://github.com/stretchr/testify/pull/1417](https://togithub.com/stretchr/testify/pull/1417)
    -   README: fix typos "set up" vs "setup" by [@&#8203;ossan-dev](https://togithub.com/ossan-dev) in [https://github.com/stretchr/testify/pull/1428](https://togithub.com/stretchr/testify/pull/1428)
    -   mock: move regexp compilation outside of `Called` by [@&#8203;aud10slave](https://togithub.com/aud10slave) in [https://github.com/stretchr/testify/pull/631](https://togithub.com/stretchr/testify/pull/631)
    -   assert: refactor internal func getLen() by [@&#8203;dolmen](https://togithub.com/dolmen) in [https://github.com/stretchr/testify/pull/1445](https://togithub.com/stretchr/testify/pull/1445)
    -   mock: deprecate type AnythingOfTypeArgument ([#&#8203;1434](https://togithub.com/stretchr/testify/issues/1434)) by [@&#8203;dolmen](https://togithub.com/dolmen) in [https://github.com/stretchr/testify/pull/1441](https://togithub.com/stretchr/testify/pull/1441)
    -   Remove no longer needed assert.canConvert by [@&#8203;alexandear](https://togithub.com/alexandear) in [https://github.com/stretchr/testify/pull/1470](https://togithub.com/stretchr/testify/pull/1470)
    -   assert: ObjectsAreEqual: use time.Equal for time.Time types by [@&#8203;tscales](https://togithub.com/tscales) in [https://github.com/stretchr/testify/pull/1464](https://togithub.com/stretchr/testify/pull/1464)
    -   Bump actions/checkout from 3 to 4 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/stretchr/testify/pull/1466](https://togithub.com/stretchr/testify/pull/1466)
    -   Bump actions/setup-go from 3.2.0 to 4.1.0 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/stretchr/testify/pull/1451](https://togithub.com/stretchr/testify/pull/1451)
    -   fix: make EventuallyWithT concurrency safe by [@&#8203;czeslavo](https://togithub.com/czeslavo) in [https://github.com/stretchr/testify/pull/1395](https://togithub.com/stretchr/testify/pull/1395)
    -   assert: fix httpCode and HTTPBody occur panic when http.Handler read Body by [@&#8203;hidu](https://togithub.com/hidu) in [https://github.com/stretchr/testify/pull/1484](https://togithub.com/stretchr/testify/pull/1484)
    -   assert.EqualExportedValues: fix handling of arrays by [@&#8203;zrbecker](https://togithub.com/zrbecker) in [https://github.com/stretchr/testify/pull/1473](https://togithub.com/stretchr/testify/pull/1473)
    -   .github: use latest Go versions by [@&#8203;kevinburkesegment](https://togithub.com/kevinburkesegment) in [https://github.com/stretchr/testify/pull/1489](https://togithub.com/stretchr/testify/pull/1489)
    -   assert: Deprecate EqualExportedValues by [@&#8203;HaraldNordgren](https://togithub.com/HaraldNordgren) in [https://github.com/stretchr/testify/pull/1488](https://togithub.com/stretchr/testify/pull/1488)
    -   suite: refactor test assertions by [@&#8203;alexandear](https://togithub.com/alexandear) in [https://github.com/stretchr/testify/pull/1474](https://togithub.com/stretchr/testify/pull/1474)
    -   suite: fix SetupSubTest and TearDownSubTest execution order by [@&#8203;linusbarth](https://togithub.com/linusbarth) in [https://github.com/stretchr/testify/pull/1471](https://togithub.com/stretchr/testify/pull/1471)
    -   docs: Fix deprecation comments for http package by [@&#8203;alexandear](https://togithub.com/alexandear) in [https://github.com/stretchr/testify/pull/1335](https://togithub.com/stretchr/testify/pull/1335)
    -   Add map support doc comments to Subset and NotSubset by [@&#8203;jedevc](https://togithub.com/jedevc) in [https://github.com/stretchr/testify/pull/1306](https://togithub.com/stretchr/testify/pull/1306)
    -   TestErrorIs/TestNotErrorIs: check error message contents by [@&#8203;craig65535](https://togithub.com/craig65535) in [https://github.com/stretchr/testify/pull/1435](https://togithub.com/stretchr/testify/pull/1435)
    -   suite: fix subtest names (fix [#&#8203;1501](https://togithub.com/stretchr/testify/issues/1501)) by [@&#8203;dolmen](https://togithub.com/dolmen) in [https://github.com/stretchr/testify/pull/1504](https://togithub.com/stretchr/testify/pull/1504)
    -   assert: improve unsafe.Pointer tests by [@&#8203;dolmen](https://togithub.com/dolmen) in [https://github.com/stretchr/testify/pull/1505](https://togithub.com/stretchr/testify/pull/1505)
    -   assert: simplify isNil implementation by [@&#8203;dolmen](https://togithub.com/dolmen) in [https://github.com/stretchr/testify/pull/1506](https://togithub.com/stretchr/testify/pull/1506)
    -   assert.InEpsilonSlice: fix expected/actual order and other improvements by [@&#8203;dolmen](https://togithub.com/dolmen) in [https://github.com/stretchr/testify/pull/1483](https://togithub.com/stretchr/testify/pull/1483)
    -   Fix dependency cycle with objx [#&#8203;1292](https://togithub.com/stretchr/testify/issues/1292) by [@&#8203;dolmen](https://togithub.com/dolmen) in [https://github.com/stretchr/testify/pull/1453](https://togithub.com/stretchr/testify/pull/1453)
    -   mock: refactor TestIsArgsEqual by [@&#8203;dolmen](https://togithub.com/dolmen) in [https://github.com/stretchr/testify/pull/1444](https://togithub.com/stretchr/testify/pull/1444)
    -   mock: optimize argument matching checks by [@&#8203;dolmen](https://togithub.com/dolmen) in [https://github.com/stretchr/testify/pull/1416](https://togithub.com/stretchr/testify/pull/1416)
    -   assert: fix TestEventuallyTimeout by [@&#8203;dolmen](https://togithub.com/dolmen) in [https://github.com/stretchr/testify/pull/1412](https://togithub.com/stretchr/testify/pull/1412)
    -   CI: add go 1.21 in GitHub Actions by [@&#8203;dolmen](https://togithub.com/dolmen) in [https://github.com/stretchr/testify/pull/1450](https://togithub.com/stretchr/testify/pull/1450)
    -   suite: fix recoverAndFailOnPanic to report test failure at the right location by [@&#8203;dolmen](https://togithub.com/dolmen) in [https://github.com/stretchr/testify/pull/1502](https://togithub.com/stretchr/testify/pull/1502)
    -   Update maintainers by [@&#8203;brackendawson](https://togithub.com/brackendawson) in [https://github.com/stretchr/testify/pull/1533](https://togithub.com/stretchr/testify/pull/1533)
    -   assert: Fix EqualValues to handle overflow/underflow by [@&#8203;arjunmahishi](https://togithub.com/arjunmahishi) in [https://github.com/stretchr/testify/pull/1531](https://togithub.com/stretchr/testify/pull/1531)
    -   assert: better formatting for Len() error by [@&#8203;kevinburkesegment](https://togithub.com/kevinburkesegment) in [https://github.com/stretchr/testify/pull/1485](https://togithub.com/stretchr/testify/pull/1485)
    -   Ensure AssertExpectations does not fail in skipped tests by [@&#8203;ianrose14](https://togithub.com/ianrose14) in [https://github.com/stretchr/testify/pull/1331](https://togithub.com/stretchr/testify/pull/1331)
    -   suite: fix deadlock in suite.Require()/Assert() by [@&#8203;arjunmahishi](https://togithub.com/arjunmahishi) in [https://github.com/stretchr/testify/pull/1535](https://togithub.com/stretchr/testify/pull/1535)
    -   Revert "assert: ObjectsAreEqual: use time.Equal for time.Time type" by [@&#8203;brackendawson](https://togithub.com/brackendawson) in [https://github.com/stretchr/testify/pull/1537](https://togithub.com/stretchr/testify/pull/1537)
    -   \[chore] Add issue templates by [@&#8203;arjunmahishi](https://togithub.com/arjunmahishi) in [https://github.com/stretchr/testify/pull/1538](https://togithub.com/stretchr/testify/pull/1538)
    -   Update the build status badge by [@&#8203;brackendawson](https://togithub.com/brackendawson) in [https://github.com/stretchr/testify/pull/1540](https://togithub.com/stretchr/testify/pull/1540)
    -   Update Github workflows setup-go to V5 by [@&#8203;hendrywiranto](https://togithub.com/hendrywiranto) in [https://github.com/stretchr/testify/pull/1545](https://togithub.com/stretchr/testify/pull/1545)
    -   Support Pointer to Struct in EqualExportedValues by [@&#8203;Lucaber](https://togithub.com/Lucaber) in [https://github.com/stretchr/testify/pull/1517](https://togithub.com/stretchr/testify/pull/1517)
    -   README: drop link to gorc by [@&#8203;guettli](https://togithub.com/guettli) in [https://github.com/stretchr/testify/pull/1248](https://togithub.com/stretchr/testify/pull/1248)
    -   http_assertions: honour the msgAndArgs provided with each assertion by [@&#8203;arjunmahishi](https://togithub.com/arjunmahishi) in [https://github.com/stretchr/testify/pull/1548](https://togithub.com/stretchr/testify/pull/1548)
    -   fix typos in comments and tests by [@&#8203;ccoVeille](https://togithub.com/ccoVeille) in [https://github.com/stretchr/testify/pull/1247](https://togithub.com/stretchr/testify/pull/1247)
    -   Include the auto-release notes in releases by [@&#8203;brackendawson](https://togithub.com/brackendawson) in [https://github.com/stretchr/testify/pull/1550](https://togithub.com/stretchr/testify/pull/1550)
    -   Add `NotImplements` and variants by [@&#8203;hslatman](https://togithub.com/hslatman) in [https://github.com/stretchr/testify/pull/1385](https://togithub.com/stretchr/testify/pull/1385)
    -   Add support to compare uintptr by [@&#8203;bogdandrutu](https://togithub.com/bogdandrutu) in [https://github.com/stretchr/testify/pull/1339](https://togithub.com/stretchr/testify/pull/1339)
    -   build(deps): bump github.com/stretchr/objx from 0.5.1 to 0.5.2 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/stretchr/testify/pull/1552](https://togithub.com/stretchr/testify/pull/1552)
    
    #### New Contributors
    
    -   [@&#8203;SuperQ](https://togithub.com/SuperQ) made their first contribution in [https://github.com/stretchr/testify/pull/1394](https://togithub.com/stretchr/testify/pull/1394)
    -   [@&#8203;programmer04](https://togithub.com/programmer04) made their first contribution in [https://github.com/stretchr/testify/pull/1392](https://togithub.com/stretchr/testify/pull/1392)
    -   [@&#8203;echarrod](https://togithub.com/echarrod) made their first contribution in [https://github.com/stretchr/testify/pull/1389](https://togithub.com/stretchr/testify/pull/1389)
    -   [@&#8203;davidjb](https://togithub.com/davidjb) made their first contribution in [https://github.com/stretchr/testify/pull/1349](https://togithub.com/stretchr/testify/pull/1349)
    -   [@&#8203;LandonTClipp](https://togithub.com/LandonTClipp) made their first contribution in [https://github.com/stretchr/testify/pull/1346](https://togithub.com/stretchr/testify/pull/1346)
    -   [@&#8203;alexandear](https://togithub.com/alexandear) made their first contribution in [https://github.com/stretchr/testify/pull/1410](https://togithub.com/stretchr/testify/pull/1410)
    -   [@&#8203;lesichkovm](https://togithub.com/lesichkovm) made their first contribution in [https://github.com/stretchr/testify/pull/1320](https://togithub.com/stretchr/testify/pull/1320)
    -   [@&#8203;dolmen](https://togithub.com/dolmen) made their first contribution in [https://github.com/stretchr/testify/pull/1406](https://togithub.com/stretchr/testify/pull/1406)
    -   [@&#8203;hikyaru-suzuki](https://togithub.com/hikyaru-suzuki) made their first contribution in [https://github.com/stretchr/testify/pull/1360](https://togithub.com/stretchr/testify/pull/1360)
    -   [@&#8203;ossan-dev](https://togithub.com/ossan-dev) made their first contribution in [https://github.com/stretchr/testify/pull/1428](https://togithub.com/stretchr/testify/pull/1428)
    -   [@&#8203;aud10slave](https://togithub.com/aud10slave) made their first contribution in [https://github.com/stretchr/testify/pull/631](https://togithub.com/stretchr/testify/pull/631)
    -   [@&#8203;tscales](https://togithub.com/tscales) made their first contribution in [https://github.com/stretchr/testify/pull/1464](https://togithub.com/stretchr/testify/pull/1464)
    -   [@&#8203;czeslavo](https://togithub.com/czeslavo) made their first contribution in [https://github.com/stretchr/testify/pull/1395](https://togithub.com/stretchr/testify/pull/1395)
    -   [@&#8203;hidu](https://togithub.com/hidu) made their first contribution in [https://github.com/stretchr/testify/pull/1484](https://togithub.com/stretchr/testify/pull/1484)
    -   [@&#8203;zrbecker](https://togithub.com/zrbecker) made their first contribution in [https://github.com/stretchr/testify/pull/1473](https://togithub.com/stretchr/testify/pull/1473)
    -   [@&#8203;kevinburkesegment](https://togithub.com/kevinburkesegment) made their first contribution in [https://github.com/stretchr/testify/pull/1489](https://togithub.com/stretchr/testify/pull/1489)
    -   [@&#8203;linusbarth](https://togithub.com/linusbarth) made their first contribution in [https://github.com/stretchr/testify/pull/1471](https://togithub.com/stretchr/testify/pull/1471)
    -   [@&#8203;jedevc](https://togithub.com/jedevc) made their first contribution in [https://github.com/stretchr/testify/pull/1306](https://togithub.com/stretchr/testify/pull/1306)
    -   [@&#8203;craig65535](https://togithub.com/craig65535) made their first contribution in [https://github.com/stretchr/testify/pull/1435](https://togithub.com/stretchr/testify/pull/1435)
    -   [@&#8203;arjunmahishi](https://togithub.com/arjunmahishi) made their first contribution in [https://github.com/stretchr/testify/pull/1531](https://togithub.com/stretchr/testify/pull/1531)
    -   [@&#8203;ianrose14](https://togithub.com/ianrose14) made their first contribution in [https://github.com/stretchr/testify/pull/1331](https://togithub.com/stretchr/testify/pull/1331)
    -   [@&#8203;hendrywiranto](https://togithub.com/hendrywiranto) made their first contribution in [https://github.com/stretchr/testify/pull/1545](https://togithub.com/stretchr/testify/pull/1545)
    -   [@&#8203;Lucaber](https://togithub.com/Lucaber) made their first contribution in [https://github.com/stretchr/testify/pull/1517](https://togithub.com/stretchr/testify/pull/1517)
    -   [@&#8203;guettli](https://togithub.com/guettli) made their first contribution in [https://github.com/stretchr/testify/pull/1248](https://togithub.com/stretchr/testify/pull/1248)
    -   [@&#8203;ccoVeille](https://togithub.com/ccoVeille) made their first contribution in [https://github.com/stretchr/testify/pull/1247](https://togithub.com/stretchr/testify/pull/1247)
    -   [@&#8203;hslatman](https://togithub.com/hslatman) made their first contribution in [https://github.com/stretchr/testify/pull/1385](https://togithub.com/stretchr/testify/pull/1385)
    -   [@&#8203;bogdandrutu](https://togithub.com/bogdandrutu) made their first contribution in [https://github.com/stretchr/testify/pull/1339](https://togithub.com/stretchr/testify/pull/1339)
    
    **Full Changelog**: stretchr/testify@v1.8.4...v1.9.0
    
    </details>
    
    ---
    
    ### 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.
    
    ---
    
     - [ ] <!-- 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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNzguMCIsInVwZGF0ZWRJblZlciI6IjM3LjI3OC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJhdXRvbWVyZ2UiXX0=-->
    cq-bot authored Apr 1, 2024
    Configuration menu
    Copy the full SHA
    828d3db View commit details
    Browse the repository at this point in the history
  3. chore(deps): Update actions/setup-go action to v5 (#467)

    This PR contains the following updates:
    
    | Package | Type | Update | Change |
    |---|---|---|---|
    | [actions/setup-go](https://togithub.com/actions/setup-go) | action | major | `v4` -> `v5` |
    
    ---
    
    > [!WARNING]
    > Some dependencies could not be looked up. Check the Dependency Dashboard for more information.
    
    ---
    
    ### Release Notes
    
    <details>
    <summary>actions/setup-go (actions/setup-go)</summary>
    
    ### [`v5`](https://togithub.com/actions/setup-go/compare/v4...v5)
    
    [Compare Source](https://togithub.com/actions/setup-go/compare/v4...v5)
    
    </details>
    
    ---
    
    ### 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.
    
    ---
    
     - [ ] <!-- 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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNzguMCIsInVwZGF0ZWRJblZlciI6IjM3LjI3OC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
    cq-bot authored Apr 1, 2024
    Configuration menu
    Copy the full SHA
    cb51170 View commit details
    Browse the repository at this point in the history
  4. chore(deps): Update golangci/golangci-lint-action action to v4 (#468)

    This PR contains the following updates:
    
    | Package | Type | Update | Change |
    |---|---|---|---|
    | [golangci/golangci-lint-action](https://togithub.com/golangci/golangci-lint-action) | action | major | `v3` -> `v4` |
    
    ---
    
    > [!WARNING]
    > Some dependencies could not be looked up. Check the Dependency Dashboard for more information.
    
    ---
    
    ### Release Notes
    
    <details>
    <summary>golangci/golangci-lint-action (golangci/golangci-lint-action)</summary>
    
    ### [`v4`](https://togithub.com/golangci/golangci-lint-action/compare/v3...v4)
    
    [Compare Source](https://togithub.com/golangci/golangci-lint-action/compare/v3...v4)
    
    </details>
    
    ---
    
    ### 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.
    
    ---
    
     - [ ] <!-- 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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNzguMCIsInVwZGF0ZWRJblZlciI6IjM3LjI3OC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
    cq-bot authored Apr 1, 2024
    Configuration menu
    Copy the full SHA
    6f1b09d View commit details
    Browse the repository at this point in the history
  5. chore(deps): Update google-github-actions/release-please-action actio…

    …n to v4 (#469)
    
    This PR contains the following updates:
    
    | Package | Type | Update | Change |
    |---|---|---|---|
    | [google-github-actions/release-please-action](https://togithub.com/google-github-actions/release-please-action) | action | major | `v3` -> `v4` |
    
    ---
    
    > [!WARNING]
    > Some dependencies could not be looked up. Check the Dependency Dashboard for more information.
    
    ---
    
    ### Release Notes
    
    <details>
    <summary>google-github-actions/release-please-action (google-github-actions/release-please-action)</summary>
    
    ### [`v4`](https://togithub.com/google-github-actions/release-please-action/compare/v3...v4)
    
    [Compare Source](https://togithub.com/google-github-actions/release-please-action/compare/v3...v4)
    
    </details>
    
    ---
    
    ### 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.
    
    ---
    
     - [ ] <!-- 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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNzguMCIsInVwZGF0ZWRJblZlciI6IjM3LjI3OC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
    cq-bot authored Apr 1, 2024
    Configuration menu
    Copy the full SHA
    f370b56 View commit details
    Browse the repository at this point in the history
  6. chore(main): Release v4.2.12 (#470)

    🤖 I have created a release *beep* *boop*
    ---
    
    
    ## [4.2.12](v4.2.11...v4.2.12) (2024-04-01)
    
    
    ### Bug Fixes
    
    * **deps:** Update module github.com/cloudquery/plugin-sdk/v4 to v4.32.1 ([#457](#457)) ([199e492](199e492))
    * **deps:** Update module github.com/cloudquery/plugin-sdk/v4 to v4.33.0 ([#458](#458)) ([05dbef5](05dbef5))
    * **deps:** Update module github.com/cloudquery/plugin-sdk/v4 to v4.34.0 ([#459](#459)) ([e19fe52](e19fe52))
    * **deps:** Update module github.com/cloudquery/plugin-sdk/v4 to v4.34.1 ([#460](#460)) ([b52aacf](b52aacf))
    * **deps:** Update module github.com/cloudquery/plugin-sdk/v4 to v4.34.2 ([#461](#461)) ([dcf5a54](dcf5a54))
    * **deps:** Update module github.com/cloudquery/plugin-sdk/v4 to v4.35.0 ([#462](#462)) ([6353efb](6353efb))
    * **deps:** Update module github.com/cloudquery/plugin-sdk/v4 to v4.36.0 ([#463](#463)) ([b9dee2b](b9dee2b))
    * **deps:** Update module github.com/cloudquery/plugin-sdk/v4 to v4.36.1 ([#464](#464)) ([c1bb510](c1bb510))
    * **deps:** Update module github.com/stretchr/testify to v1.9.0 ([#466](#466)) ([828d3db](828d3db))
    * **deps:** Update module google.golang.org/grpc to v1.62.0 ([#455](#455)) ([d77769f](d77769f))
    
    ---
    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 Apr 1, 2024
    Configuration menu
    Copy the full SHA
    29d129f View commit details
    Browse the repository at this point in the history
Loading