Bump spirit to @main#11
Closed
morgo wants to merge 1 commit into
Closed
Conversation
There was a problem hiding this comment.
Pull request overview
This PR updates the project’s Go module dependencies, primarily bumping github.com/block/spirit to a newer main-based pseudo-version, which in turn updates a number of transitive dependencies.
Changes:
- Bump
github.com/block/spirittov0.15.2-0.20260629112820-8f451ff83766. - Refresh
go.mod/go.sumviago get+go mod tidy, updating several direct and indirect dependencies (e.g.,golang.org/x/*,go-sql-driver/mysql,klauspost/compress).
Reviewed changes
Copilot reviewed 1 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| go.mod | Updates direct/indirect module requirements, including the spirit bump and resulting transitive version changes. |
| go.sum | Updates checksum entries to match the new resolved module graph after the dependency bump. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Bumps github.com/block/spirit to the latest main (v0.15.2-0.20260630130838-0df21ada57a0). Transitively upgrades alecthomas/kong v0.8.0 -> v1.15.0 (now required by spirit) and golang.org/x/sync v0.20.0 -> v0.21.0. No polt code changes are required: the spirit APIs polt uses (table.NewChunker/Chunker, dbconn.BeginStandardTrx, throttler) are unchanged in this range. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
ad0b844 to
03f5da5
Compare
Collaborator
Author
|
🤖 Superseded by #12, which bumps to the latest spirit |
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.
Bumps the
github.com/block/spiritdependency to the latestmain(v0.15.2-0.20260630130838-0df21ada57a0).Updated via
go get github.com/block/spirit@main && go mod tidy, on top of currentmain. Transitive bumps pulled in by the new spirit:github.com/alecthomas/kongv0.8.0→v1.15.0(now required by spirit; usage is plainkong.Parse+ struct tags, compatible with v1)golang.org/x/syncv0.20.0→v0.21.0No polt code changes are required.
mainalready migrated to the new chunker API (table.NewChunker) in #10, and every spirit API polt depends on (table.Chunkerinterface,dbconn.BeginStandardTrx,throttler) is unchanged acrossv0.15.1→v0.15.2. The only spirit API changes in that range (dbconn.RetryableTransactiondup-key enum, copier ETA, checksum refactors) are not used by polt.Verified locally:
go build ./...,go vet ./...,golangci-lint run(0 issues). Database tests run in CI.🤖 Generated with Claude Code