chore(submodules): bump eyrie to cac004d (post-#46 squash)#62
Merged
Conversation
- eyrie main now at cac004dae2e97 (refactor: make retry fallbacks and sqlite pooling configurable #46) - hawk go.work replace still points at ./external/eyrie and resolves cleanly - builds, vet, gofumpt, golangci-lint, and cmd+routing tests verify the new API surface (NewCodeAgentRetry variadic, storage.Open WithMaxOpenConns) is source-compatible with current hawk callers
Patel230
added a commit
that referenced
this pull request
Jul 11, 2026
- eyrie main now at cac004dae2e97 (refactor: make retry fallbacks and sqlite pooling configurable #46) - hawk go.work replace still points at ./external/eyrie and resolves cleanly - builds, vet, gofumpt, golangci-lint, and cmd+routing tests verify the new API surface (NewCodeAgentRetry variadic, storage.Open WithMaxOpenConns) is source-compatible with current hawk callers
Patel230
added a commit
that referenced
this pull request
Jul 16, 2026
- eyrie main now at cac004dae2e97 (refactor: make retry fallbacks and sqlite pooling configurable #46) - hawk go.work replace still points at ./external/eyrie and resolves cleanly - builds, vet, gofumpt, golangci-lint, and cmd+routing tests verify the new API surface (NewCodeAgentRetry variadic, storage.Open WithMaxOpenConns) is source-compatible with current hawk callers
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.
Bump
external/eyriefrom3ff69b59tocac004dae2e97188785ccae7e527057417a6d7edso hawk tracks the new eyrie main after PR #46 (refactor: make retry fallbacks and sqlite pooling configurable) was squash-merged on eyrie.The pinned SHA on origin was still the previous eyrie main (PR #45, security/correctness hardening), which left hawk effectively one commit behind on eyrie despite local main being up-to-date.
Why
eyrie main advanced and hawk's pinned submodule SHA was not updated. Left unrepinned, the next CI run on a fresh
external/eyriecheckout would still resolve to the old eyrie, masking the API changes that landed in #46 (variadicNewCodeAgentRetry(opts ...Option), variadicstorage.Open(path, opts ...Option)).Test plan
go work synccleanlygo build ./...cleango vet ./...cleangofumpt -l .cleangolangci-lint run --config .golangci.yml ./cmd/... ./internal/provider/routing/...(0 issues)go test ./cmd/... ./internal/provider/routing/...all pass