Skip to content

fix(deps): Update module github.com/apache/arrow-go/v18 to v18.7.0 - #757

Merged
kodiakhq[bot] merged 2 commits into
mainfrom
renovate/github.com-apache-arrow-go-v18-18.x
Jul 28, 2026
Merged

fix(deps): Update module github.com/apache/arrow-go/v18 to v18.7.0#757
kodiakhq[bot] merged 2 commits into
mainfrom
renovate/github.com-apache-arrow-go-v18-18.x

Conversation

@cloudquery-ci

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

PackageChangeAgeConfidence
github.com/apache/arrow-go/v18v18.6.0v18.7.0ageconfidence

Release Notes

apache/arrow-go (github.com/apache/arrow-go/v18)

v18.7.0: Apache Arrow Go v18.7.0

Compare Source

What's Changed

New Contributors

Full Changelog: apache/arrow-go@v18.6.0...v18.7.0


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • "before 3am on Monday"
  • 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.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate.

@cloudquery-cicloudquery-ciBot added the automerge Add to automerge PRs once requirements are met label Jul 27, 2026
@cloudquery-ci

Copy link
Copy Markdown
ContributorAuthor

ℹ️ Artifact update notice

File name: go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 9 additional dependencies were updated

Details:

PackageChange
github.com/andybalholm/brotliv1.2.1 -> v1.2.2
github.com/apache/thriftv0.23.0 -> v0.24.0
github.com/klauspost/compressv1.18.5 -> v1.19.0
github.com/klauspost/cpuid/v2v2.3.0 -> v2.4.0
github.com/pierrec/lz4/v4v4.1.26 -> v4.1.27
golang.org/x/syncv0.20.0 -> v0.22.0
golang.org/x/sysv0.45.0 -> v0.47.0
google.golang.org/genproto/googleapis/rpcv0.0.0-20260401024825-9d38bb4040a9 -> v0.0.0-20260414002931-afd174a4e478
google.golang.org/grpcv1.81.1 -> v1.82.0

@disqdisq removed the automerge Add to automerge PRs once requirements are met label Jul 28, 2026
arrow-go v18.7.0 decodes JSON with UseNumber when building records, so
generated test data is no longer pre-rounded to float64 precision. Decode
JSON-encoded nested columns with UseNumber on read and refresh snapshots.
@disq
disq requested a review from a team as a code ownerJuly 28, 2026 16:07
@disq
disq requested review from erezrokah and marianogappa and removed request for a teamJuly 28, 2026 16:07
@cloudquery-ci

Copy link
Copy Markdown
ContributorAuthor

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️Warning: custom changes will be lost.

@disqdisq added the automerge Add to automerge PRs once requirements are met label Jul 28, 2026
@kodiakhq
kodiakhqBot merged commit 4b47c87 into mainJul 28, 2026
7 checks passed
@kodiakhq
kodiakhqBot deleted the renovate/github.com-apache-arrow-go-v18-18.x branch July 28, 2026 16:42
@cloudquery-cicloudquery-ciBot mentioned this pull request Jul 28, 2026
kodiakhqBot pushed a commit that referenced this pull request Aug 3, 2026
🤖 I have created a release *beep* *boop*
---
## [4.7.2](v4.7.1...v4.7.2) (2026-08-03)
### Bug Fixes
* **deps:** Update go module directive to v1.26.5 ([#760](#760)) ([fe81729](fe81729))
* **deps:** Update module github.com/apache/arrow-go/v18 to v18.7.0 ([#757](#757)) ([4b47c87](4b47c87))
* **deps:** Update module golang.org/x/net to v0.55.0 [SECURITY] ([#755](#755)) ([4bfa4c8](4bfa4c8))
* **deps:** Update module google.golang.org/grpc to v1.82.1 [SECURITY] ([#758](#758)) ([cbaed1f](cbaed1f))
---
This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
erezrokah added a commit to cloudquery/cloudquery that referenced this pull request Aug 4, 2026
…23163)
This PR contains the following updates:
| Package | Change |
|---|---|
| [github.com/apache/arrow-go/v18](https://github.com/apache/arrow-go) |
`v18.6.0` → `v18.7.0` |
|
[github.com/cloudquery/plugin-sdk/v4](https://github.com/cloudquery/plugin-sdk)
| `v4.95.3` → `v4.96.1` |
|
[github.com/cloudquery/filetypes/v4](https://github.com/cloudquery/filetypes)
| `v4.7.1` → `v4.7.3` |
arrow-go v18.7.0 made `array.FromJSON` decode int64/uint64 exactly.
Every other JSON path that rebuilds nested values still went through
float64, so round-trips silently rounded (`-8717895732742165505` became
`-8717895732742165504`) and the mismatch broke the write test suite
across all Go destinations.
Fixed upstream:
- plugin-sdk v4.96.0
(cloudquery/plugin-sdk#2553) — shared write-test
helpers
- plugin-sdk v4.96.1
(cloudquery/plugin-sdk#2556) — the `scalar`
package, which postgresql reads through
- filetypes v4.7.3 (cloudquery/filetypes#757) —
file-based destinations
Fixed here, by decoding nested values with `UseNumber`:
- 16 `AppendValueFromString` call sites across 12 destinations
- `UnmarshalOne` decoders in bigquery, elasticsearch, meilisearch,
mongodb
- postgresql's `stripNullsFromMarshalledJson`
- mongodb's struct/JSON write path, converting `json.Number` to the
integer types the BSON encoder accepts, and its read path, restoring
nested uint64 values stored as int64 bits
- elasticsearch and meilisearch document decodes, with numeric builders
taught to accept `json.Number`
- two float64-rounded literals in the transformer/basic test
azblob fails with `AccountIsDisabled`, which also fails on main and is
unrelated to this PR.
Supersedes #23230, whose plugin-sdk bump is included here — it fails on
its own because v4.96.0 requires arrow v18.7.0.
---------
Co-authored-by: cloudquery-ci[bot] <271027272+cloudquery-ci[bot]@users.noreply.github.com>
Co-authored-by: erezrokah <erezrokah@users.noreply.github.com>
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

automergeAdd to automerge PRs once requirements are met

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants

@erezrokah@disq