Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 7f27c56

Browse files
authored
fix(deps): Update module github.com/apache/arrow-go/v18 to v18.3.1 (#2199)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [github.com/apache/arrow-go/v18](https://redirect.github.com/apache/arrow-go) | require | patch | `v18.3.0` -> `v18.3.1` | --- ### Release Notes <details> <summary>apache/arrow-go (github.com/apache/arrow-go/v18)</summary> ### [`v18.3.1`](https://redirect.github.com/apache/arrow-go/releases/tag/v18.3.1) [Compare Source](https://redirect.github.com/apache/arrow-go/compare/v18.3.0...v18.3.1) ##### What's Changed - feat(arrow/cdata): Add ReleaseCArrowArrayStream function by [@&#8203;karsov](https://redirect.github.com/karsov) in [https://github.com/apache/arrow-go/pull/373](https://redirect.github.com/apache/arrow-go/pull/373) - chore: Bump golang.org/x/sync from 0.13.0 to 0.14.0 by [@&#8203;dependabot](https://redirect.github.com/dependabot) in [https://github.com/apache/arrow-go/pull/368](https://redirect.github.com/apache/arrow-go/pull/368) - fix: TestDeltaByteArray implementation and fix by [@&#8203;MetalBlueberry](https://redirect.github.com/MetalBlueberry) in [https://github.com/apache/arrow-go/pull/369](https://redirect.github.com/apache/arrow-go/pull/369) - chore: Bump golang.org/x/tools from 0.32.0 to 0.33.0 by [@&#8203;dependabot](https://redirect.github.com/dependabot) in [https://github.com/apache/arrow-go/pull/376](https://redirect.github.com/apache/arrow-go/pull/376) - chore: Bump actions/setup-go from 5.4.0 to 5.5.0 by [@&#8203;dependabot](https://redirect.github.com/dependabot) in [https://github.com/apache/arrow-go/pull/377](https://redirect.github.com/apache/arrow-go/pull/377) - chore: move .github/ISSUE_TEMPLATE/config.yaml to config.yml as currently does not work by [@&#8203;raulcd](https://redirect.github.com/raulcd) in [https://github.com/apache/arrow-go/pull/383](https://redirect.github.com/apache/arrow-go/pull/383) - chore: Bump google.golang.org/grpc from 1.72.0 to 1.72.1 by [@&#8203;dependabot](https://redirect.github.com/dependabot) in [https://github.com/apache/arrow-go/pull/381](https://redirect.github.com/apache/arrow-go/pull/381) - fix: list_columns.parquet testing by [@&#8203;MetalBlueberry](https://redirect.github.com/MetalBlueberry) in [https://github.com/apache/arrow-go/pull/378](https://redirect.github.com/apache/arrow-go/pull/378) ##### New Contributors - [@&#8203;karsov](https://redirect.github.com/karsov) made their first contribution in [https://github.com/apache/arrow-go/pull/373](https://redirect.github.com/apache/arrow-go/pull/373) **Full Changelog**: apache/arrow-go@v18.3.0...v18.3.1 </details> --- ### 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://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MC4yMi4xIiwidXBkYXRlZEluVmVyIjoiNDAuMjIuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiYXV0b21lcmdlIl19-->
1 parent 57d0285 commit 7f27c56

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

examples/simple_plugin/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/cloudquery/plugin-sdk/examples/simple_plugin
33
go 1.24.3
44

55
require (
6-
github.com/apache/arrow-go/v18 v18.3.0
6+
github.com/apache/arrow-go/v18 v18.3.1
77
github.com/cloudquery/plugin-sdk/v4 v4.84.2
88
github.com/rs/zerolog v1.34.0
99
)
@@ -82,7 +82,7 @@ require (
8282
golang.org/x/sync v0.14.0 // indirect
8383
golang.org/x/sys v0.33.0 // indirect
8484
golang.org/x/text v0.25.0 // indirect
85-
golang.org/x/tools v0.32.0 // indirect
85+
golang.org/x/tools v0.33.0 // indirect
8686
golang.org/x/xerrors v0.0.0-20240903120638-7835f813f4da // indirect
8787
google.golang.org/genproto/googleapis/api v0.0.0-20250519155744-55703ea1f237 // indirect
8888
google.golang.org/genproto/googleapis/rpc v0.0.0-20250519155744-55703ea1f237 // indirect

examples/simple_plugin/go.sum

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ github.com/adrg/xdg v0.5.3 h1:xRnxJXne7+oWDatRhR1JLnvuccuIeCoBu2rtuLqQB78=
33
github.com/adrg/xdg v0.5.3/go.mod h1:nlTsY+NNiCBGCK2tpm09vRqfVzrc2fLmXGpBLF0zlTQ=
44
github.com/andybalholm/brotli v1.1.1 h1:PR2pgnyFznKEugtsUo0xLdDop5SKXd5Qf5ysW+7XdTA=
55
github.com/andybalholm/brotli v1.1.1/go.mod h1:05ib4cKhjx3OQYUY22hTVd34Bc8upXjOLL2rKwwZBoA=
6-
github.com/apache/arrow-go/v18 v18.3.0 h1:Xq4A6dZj9Nu33sqZibzn012LNnewkTUlfKVUFD/RX/I=
7-
github.com/apache/arrow-go/v18 v18.3.0/go.mod h1:eEM1DnUTHhgGAjf/ChvOAQbUQ+EPohtDrArffvUjPg8=
6+
github.com/apache/arrow-go/v18 v18.3.1 h1:oYZT8FqONiK74JhlH3WKVv+2NKYoyZ7C2ioD4Dj3ixk=
7+
github.com/apache/arrow-go/v18 v18.3.1/go.mod h1:12QBya5JZT6PnBihi5NJTzbACrDGXYkrgjujz3MRQXU=
88
github.com/apache/arrow/go/v13 v13.0.0-20230731205701-112f94971882 h1:mFDZW1FQk9yndPvxScp7RpcOpdSHaqcgBWO7sDlx4S8=
99
github.com/apache/arrow/go/v13 v13.0.0-20230731205701-112f94971882/go.mod h1:W69eByFNO0ZR30q1/7Sr9d83zcVZmF2MiP3fFYAWJOc=
1010
github.com/apache/thrift v0.21.0 h1:tdPmh/ptjE1IJnhbhrcl2++TauVjy242rkV/UzJChnE=
@@ -209,8 +209,8 @@ golang.org/x/sys v0.33.0 h1:q3i8TbbEz+JRD9ywIRlyRAQbM0qF7hu24q3teo2hbuw=
209209
golang.org/x/sys v0.33.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k=
210210
golang.org/x/text v0.25.0 h1:qVyWApTSYLk/drJRO5mDlNYskwQznZmkpV2c8q9zls4=
211211
golang.org/x/text v0.25.0/go.mod h1:WEdwpYrmk1qmdHvhkSTNPm3app7v4rsT8F2UD6+VHIA=
212-
golang.org/x/tools v0.32.0 h1:Q7N1vhpkQv7ybVzLFtTjvQya2ewbwNDZzUgfXGqtMWU=
213-
golang.org/x/tools v0.32.0/go.mod h1:ZxrU41P/wAbZD8EDa6dDCa6XfpkhJ7HFMjHJXfBDu8s=
212+
golang.org/x/tools v0.33.0 h1:4qz2S3zmRxbGIhDIAgjxvFutSvH5EfnsYrRBj0UI0bc=
213+
golang.org/x/tools v0.33.0/go.mod h1:CIJMaWEY88juyUfo7UbgPqbC8rU2OqfAV1h2Qp0oMYI=
214214
golang.org/x/xerrors v0.0.0-20240903120638-7835f813f4da h1:noIWHXmPHxILtqtCOPIhSt0ABwskkZKjD3bXGnZGpNY=
215215
golang.org/x/xerrors v0.0.0-20240903120638-7835f813f4da/go.mod h1:NDW/Ps6MPRej6fsCIbMTohpP40sJ/P/vI1MoTEGwX90=
216216
gonum.org/v1/gonum v0.16.0 h1:5+ul4Swaf3ESvrOnidPp4GZbzf0mxVQpDCYUQE7OJfk=

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/cloudquery/plugin-sdk/v4
33
go 1.24.3
44

55
require (
6-
github.com/apache/arrow-go/v18 v18.3.0
6+
github.com/apache/arrow-go/v18 v18.3.1
77
github.com/aws/aws-sdk-go-v2 v1.36.4
88
github.com/aws/aws-sdk-go-v2/config v1.29.16
99
github.com/aws/aws-sdk-go-v2/service/licensemanager v1.31.2
@@ -89,7 +89,7 @@ require (
8989
golang.org/x/mod v0.24.0 // indirect
9090
golang.org/x/net v0.40.0 // indirect
9191
golang.org/x/sys v0.33.0 // indirect
92-
golang.org/x/tools v0.32.0 // indirect
92+
golang.org/x/tools v0.33.0 // indirect
9393
golang.org/x/xerrors v0.0.0-20240903120638-7835f813f4da // indirect
9494
google.golang.org/genproto/googleapis/api v0.0.0-20250519155744-55703ea1f237 // indirect
9595
google.golang.org/genproto/googleapis/rpc v0.0.0-20250519155744-55703ea1f237 // indirect

go.sum

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ github.com/adrg/xdg v0.5.3 h1:xRnxJXne7+oWDatRhR1JLnvuccuIeCoBu2rtuLqQB78=
33
github.com/adrg/xdg v0.5.3/go.mod h1:nlTsY+NNiCBGCK2tpm09vRqfVzrc2fLmXGpBLF0zlTQ=
44
github.com/andybalholm/brotli v1.1.1 h1:PR2pgnyFznKEugtsUo0xLdDop5SKXd5Qf5ysW+7XdTA=
55
github.com/andybalholm/brotli v1.1.1/go.mod h1:05ib4cKhjx3OQYUY22hTVd34Bc8upXjOLL2rKwwZBoA=
6-
github.com/apache/arrow-go/v18 v18.3.0 h1:Xq4A6dZj9Nu33sqZibzn012LNnewkTUlfKVUFD/RX/I=
7-
github.com/apache/arrow-go/v18 v18.3.0/go.mod h1:eEM1DnUTHhgGAjf/ChvOAQbUQ+EPohtDrArffvUjPg8=
6+
github.com/apache/arrow-go/v18 v18.3.1 h1:oYZT8FqONiK74JhlH3WKVv+2NKYoyZ7C2ioD4Dj3ixk=
7+
github.com/apache/arrow-go/v18 v18.3.1/go.mod h1:12QBya5JZT6PnBihi5NJTzbACrDGXYkrgjujz3MRQXU=
88
github.com/apache/arrow/go/v13 v13.0.0-20230731205701-112f94971882 h1:mFDZW1FQk9yndPvxScp7RpcOpdSHaqcgBWO7sDlx4S8=
99
github.com/apache/arrow/go/v13 v13.0.0-20230731205701-112f94971882/go.mod h1:W69eByFNO0ZR30q1/7Sr9d83zcVZmF2MiP3fFYAWJOc=
1010
github.com/apache/thrift v0.21.0 h1:tdPmh/ptjE1IJnhbhrcl2++TauVjy242rkV/UzJChnE=
@@ -240,8 +240,8 @@ golang.org/x/text v0.25.0/go.mod h1:WEdwpYrmk1qmdHvhkSTNPm3app7v4rsT8F2UD6+VHIA=
240240
golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
241241
golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
242242
golang.org/x/tools v0.1.1/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk=
243-
golang.org/x/tools v0.32.0 h1:Q7N1vhpkQv7ybVzLFtTjvQya2ewbwNDZzUgfXGqtMWU=
244-
golang.org/x/tools v0.32.0/go.mod h1:ZxrU41P/wAbZD8EDa6dDCa6XfpkhJ7HFMjHJXfBDu8s=
243+
golang.org/x/tools v0.33.0 h1:4qz2S3zmRxbGIhDIAgjxvFutSvH5EfnsYrRBj0UI0bc=
244+
golang.org/x/tools v0.33.0/go.mod h1:CIJMaWEY88juyUfo7UbgPqbC8rU2OqfAV1h2Qp0oMYI=
245245
golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
246246
golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
247247
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=

0 commit comments

Comments
 (0)