chore: remove mentions of compatibility with go toolchain < go1.18#760
Merged
zeroshade merged 1 commit intoapache:mainfrom Apr 12, 2026
Merged
chore: remove mentions of compatibility with go toolchain < go1.18#760zeroshade merged 1 commit intoapache:mainfrom
zeroshade merged 1 commit intoapache:mainfrom
Conversation
The github.com/apache/arrow/go/v11/arrow/compute module was removed in commit f6e3442, making it part of the main module. The go version in go.mod was updated to go1.18, but older versions of the go toolchain could still be used; > Requirements > > Despite the go.mod stating go1.18, everything except for the compute package > is able to be built with go1.17 (and most is also compatible with go1.16). Before Go 1.21, the go line in go.mod was effectively advisory: older toolchains might still try to build the module, and only complain if they hit something unsupported. Starting with Go 1.21 (backported to go1.19.3 and go1.20.8), the go line became a strict minimum requirement. https://go.dev/doc/go1.21 Commit ddfa815 updated the go version in go.mod to go1.21.0, no longer allowing older toolchains to be used. This patch removes the mentions of older toolchains. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
zeroshade
approved these changes
Apr 12, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The github.com/apache/arrow/go/v11/arrow/compute module was removed in commit f6e3442, making it part of the main module. The go version in go.mod was updated to go1.18, but older versions of the go toolchain could still be used;
Before Go 1.21, the go line in go.mod was effectively advisory: older toolchains might still try to build the module, and only complain if they hit something unsupported. Starting with Go 1.21 (backported to go1.19.3 and go1.20.8), the go line became a strict minimum requirement. https://go.dev/doc/go1.21
Commit ddfa815 updated the go version in go.mod to go1.21.0, no longer allowing older toolchains to be used.
This patch removes the mentions of older toolchains.
Rationale for this change
What changes are included in this PR?
Are these changes tested?
Are there any user-facing changes?