Open
Conversation
Bumps the following direct dependencies to their latest released versions: - github.com/alecthomas/chroma/v2: v2.24.0 -> v2.24.1 - github.com/blevesearch/bleve/v2: v2.5.7 -> v2.6.0 - github.com/modelcontextprotocol/go-sdk: v1.5.0 -> v1.6.0 - github.com/pb33f/libopenapi: v0.36.2 -> v0.36.3 Indirect dependencies were also refreshed via 'go mod tidy'. Assisted-By: docker-agent
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.
Summary
This PR bumps the direct Go dependencies of
docker/docker-agentto their latest released versions.Direct dependency bumps
github.com/alecthomas/chroma/v2github.com/blevesearch/bleve/v2github.com/modelcontextprotocol/go-sdkgithub.com/pb33f/libopenapiIndirect dependencies were refreshed via
go mod tidy(notably theblevesearchfamily pulled in by the bleve bump).Validation
go build ./...✅go vet ./...✅go run ./lint .(custom cops) ✅ — 926 files inspected, no offensesgo mod tidyis clean ✅go test ./...runs the same set of tests as before; the only failures are pre-existing environment-related ones (CGO, root-owned filesystem, localhost DNS in this sandbox), all of which also fail onmain.Notes
go list -m -u, so there is nothing else to bump at this time.github.com/wk8/go-ordered-map/v2was intentionally kept at its existing pseudo-version (v2.1.9-0.20250401010720-...) because it is newer than the latest tagged release (v2.1.8); using@latestwould have been a downgrade.Assisted-By: docker-agent