Skip to content

Commit 5b89f33

Browse files
authored
fix(deps): Update module github.com/cloudquery/plugin-sdk to v1.41.0 (#86)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [github.com/cloudquery/plugin-sdk](https://togithub.com/cloudquery/plugin-sdk) | require | minor | `v1.40.0` -> `v1.41.0` | --- ### ⚠ Dependency Lookup Warnings ⚠ Warnings were logged while processing this repo. Please check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>cloudquery/plugin-sdk</summary> ### [`v1.41.0`](https://togithub.com/cloudquery/plugin-sdk/releases/tag/v1.41.0) [Compare Source](https://togithub.com/cloudquery/plugin-sdk/compare/v1.40.0...v1.41.0) ##### Features - Deterministic \_cq_id ([#&#8203;712](https://togithub.com/cloudquery/plugin-sdk/issues/712)) ([2e7ad2c](https://togithub.com/cloudquery/plugin-sdk/commit/2e7ad2c03e9817ea00de31774a8869ef77b60325)) - **multiplex:** Detect duplicated clients ([#&#8203;723](https://togithub.com/cloudquery/plugin-sdk/issues/723)) ([dfb039d](https://togithub.com/cloudquery/plugin-sdk/commit/dfb039d76c6976749c001bd7f12fcb32fa052e9d)) ##### Bug Fixes - Cleanup code ([#&#8203;710](https://togithub.com/cloudquery/plugin-sdk/issues/710)) ([963f03c](https://togithub.com/cloudquery/plugin-sdk/commit/963f03cd3d12a6ebdc091a5a555472abec858c00)) - **deps:** Update golang.org/x/exp digest to [`c95f2b4`](https://togithub.com/cloudquery/plugin-sdk/commit/c95f2b4) ([#&#8203;718](https://togithub.com/cloudquery/plugin-sdk/issues/718)) ([de52c10](https://togithub.com/cloudquery/plugin-sdk/commit/de52c10aa43132b2ceb08486722bb5fdd2acf8a1)) - **deps:** Update google.golang.org/genproto digest to [`9b19f0b`](https://togithub.com/cloudquery/plugin-sdk/commit/9b19f0b) ([#&#8203;719](https://togithub.com/cloudquery/plugin-sdk/issues/719)) ([ecfddea](https://togithub.com/cloudquery/plugin-sdk/commit/ecfddeaff6a6ffcc4cc9c454ae3906bd7e9e01f7)) - **deps:** Update module github.com/rivo/uniseg to v0.4.4 ([#&#8203;720](https://togithub.com/cloudquery/plugin-sdk/issues/720)) ([0da69b6](https://togithub.com/cloudquery/plugin-sdk/commit/0da69b6a488fbbc6010cecea26522836a2ddba65)) - **deps:** Update module github.com/stretchr/testify to v1.8.2 ([#&#8203;721](https://togithub.com/cloudquery/plugin-sdk/issues/721)) ([19c0742](https://togithub.com/cloudquery/plugin-sdk/commit/19c07425eb1c82a2ef962ed411742291557db2b8)) - **pk:** Skip filter for no PK ([#&#8203;709](https://togithub.com/cloudquery/plugin-sdk/issues/709)) ([d0c2e26](https://togithub.com/cloudquery/plugin-sdk/commit/d0c2e2682b164707a0c15bfc5173ca7461cbf175)) - **types-json:** Disable HTML escaping during JSON marshalling ([#&#8203;714](https://togithub.com/cloudquery/plugin-sdk/issues/714)) ([2f6f1d8](https://togithub.com/cloudquery/plugin-sdk/commit/2f6f1d8c65653d2816c263851b07fa455c3cb5d1)) - **types-timestamp:** Ensure timestamp is UTC ([#&#8203;716](https://togithub.com/cloudquery/plugin-sdk/issues/716)) ([bb33629](https://togithub.com/cloudquery/plugin-sdk/commit/bb33629678bb01ee74da49296b0b14e024ce94af)) </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:eyJjcmVhdGVkSW5WZXIiOiIzNC4xNTQuMCIsInVwZGF0ZWRJblZlciI6IjM0LjE1NC4wIn0=-->
1 parent a9c9da3 commit 5b89f33

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

go.mod

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/cloudquery/filetypes
33
go 1.19
44

55
require (
6-
github.com/cloudquery/plugin-sdk v1.40.0
6+
github.com/cloudquery/plugin-sdk v1.41.0
77
github.com/davecgh/go-spew v1.1.1 // indirect
88
github.com/pmezard/go-difflib v1.0.0 // indirect
99
github.com/stretchr/testify v1.8.2
@@ -25,6 +25,8 @@ require (
2525

2626
require github.com/xitongsys/parquet-go v1.6.2
2727

28+
require golang.org/x/exp v0.0.0-20230224173230-c95f2b4c22f2 // indirect
29+
2830
require (
2931
github.com/apache/arrow/go/arrow v0.0.0-20200730104253-651201b0f516 // indirect
3032
github.com/apache/thrift v0.18.0 // indirect; indirect // indirect

go.sum

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,8 +150,8 @@ github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWR
150150
github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI=
151151
github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU=
152152
github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw=
153-
github.com/cloudquery/plugin-sdk v1.40.0 h1:xAhPq/AltbhFeHD5V3jNV99BNZyxShR721PycNIqajo=
154-
github.com/cloudquery/plugin-sdk v1.40.0/go.mod h1:mnz+Lov1Oe99lDhFZEcnIvLoGYRPohjzyW4LNsrn654=
153+
github.com/cloudquery/plugin-sdk v1.41.0 h1:kLizXmIpNV7fW4AdfWS6oCGv8AXBoEc/m9aeARk9xL8=
154+
github.com/cloudquery/plugin-sdk v1.41.0/go.mod h1:CIv+fgm6siZhReOuMGU/OCBPNRLNY4At2RkC31LRaS0=
155155
github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGXZJjfX53e64911xZQV5JYwmTeXPW+k8Sc=
156156
github.com/cncf/udpa/go v0.0.0-20200629203442-efcf912fb354/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk=
157157
github.com/cncf/udpa/go v0.0.0-20201120205902-5459f2c99403/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk=
@@ -547,6 +547,8 @@ golang.org/x/exp v0.0.0-20191227195350-da58074b4299/go.mod h1:2RIsYlXP63K8oxa1u0
547547
golang.org/x/exp v0.0.0-20200119233911-0405dc783f0a/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4=
548548
golang.org/x/exp v0.0.0-20200207192155-f17229e696bd/go.mod h1:J/WKrq2StrnmMY6+EHIKF9dgMWnmCNThgcyBT1FY9mM=
549549
golang.org/x/exp v0.0.0-20200224162631-6cc2880d07d6/go.mod h1:3jZMyOhIsHpP37uCMkUooju7aAi5cS1Q23tOzKc+0MU=
550+
golang.org/x/exp v0.0.0-20230224173230-c95f2b4c22f2 h1:Jvc7gsqn21cJHCmAWx0LiimpP18LZmUxkT5Mp7EZ1mI=
551+
golang.org/x/exp v0.0.0-20230224173230-c95f2b4c22f2/go.mod h1:CxIveKay+FTh1D0yPZemJVgC/95VzuuOLq5Qi4xnoYc=
550552
golang.org/x/image v0.0.0-20190227222117-0694c2d4d067/go.mod h1:kZ7UVZpmo3dzQBMxlp+ypCbDeSB+sBbTgSJuh5dn5js=
551553
golang.org/x/image v0.0.0-20190802002840-cff245a6509b/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0=
552554
golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE=

0 commit comments

Comments
 (0)