Ecosystem metrics
- New Repos
- 5
- New
- Commits
- 487
- down 9.6%
- Releases
- 5
- down 28.6%
- Contributors
- 52
- up 18.2%
- Merges
- 18
- up 157.1%
Activity Overview
Commits and releases over time
- Commits
- Releases
- Authors
Repository Explorer
No repositories match that filter.
6986 commits in all time
Jun 17, 2026 12:47 – Sep 15, 2026 12:47 UTC
chore: regenerate the API client with oapi-codegen v2.8.0
make generate now runs the codegen version go.mod requires, so bring api/lf.go up to it rather than leave the next regeneration to carry the generator bump alongside an unrelated spec change. Same spec, v5.0.1-stable; the diff is the generator's: Valid() methods on enums, fuller doc comments and reworked query parameter encoding. The unused Api_keyScopes constant is gone. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
27324ec2
pull/198/head
1/1,227 ++ 186 --
feat: search the shown fields with --filter
--filter only looked at the message, but round numbers and peer and account addresses are written as fields, and they are what people search for. `--filter 49291042` found nothing on the entry rendered with Round=49291042. The search now covers each field Render prints, matched as decoded, unquoted key=value text, so the value, the key or the pair all match. A value Render quotes is searched without its quotes. Hidden fields stay out: "function" names the Go package, and matching it would keep a line for a reason the line does not show. Render and Keep share one test of what is shown, so the two cannot drift. The prescreen stays one-sided. The line writes a pair as "Round":49291042, so the text is split at each "=" and every part is required on its own. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
d33642a3
pull/193/head
8/162 ++ 32 --
build: read the codegen version from go.mod instead of hardcoding it
The comment claimed the generator was "pinned in go.mod" while the recipe ran oapi-codegen@v2.4.1 against a go.mod requiring v2.8.0. `go run pkg@version` ignores the module's requirements entirely, so the two were free to drift, and had: the next `go get -u` would bump the library the generated code is compiled against while `make generate` kept emitting v2.4.1 output. The version now comes from `go list -m`, so the claim holds by construction and a library bump carries the generator with it. Left as `go run pkg@version` rather than a go.mod `tool` directive on purpose: the directive pulls the generator's own dependency graph into this module, which cost twelve indirect requirements and a bump to rogpeppe/go-internal for a tool nothing in the build imports. Recursively expanded, so the query runs for `make generate` and not for `make build` or `make test`, and guarded so an unresolvable version says so rather than running `oapi-codegen@`. Note that api/lf.go is still v2.4.1 output, so the next `make generate` will carry a generator bump alongside whatever the spec changed. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01RrRQEXGWtmBskmUbiZbRi1
c45a2770
pull/198/head
1/15 ++ 6 --
fix: resolve the algod release with git ls-remote
The GitHub REST API allows 60 unauthenticated requests an hour per IP, which shared CI runners exhaust, and the lookup then fails with the generic "could not resolve" error. git ls-remote has no such limit, no per_page cap and needs no JSON scraping. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
9c2e5893
pull/198/head
1/5 ++ 2 --
Merge 2133316916d2ebfb6d38ed697fc09cb85b02b480 into 957cae3b29beb61a0174418faf23b55f17020bd5
224444a4
pull/197/merge
3/80 ++ 5 --
Merge f20207612a3d087ce051809dc7f0c7eb0ca86a65 into 5e49d36b414009b9375d80d000e3ac7cbfe954c0
63c1ddaf
pull/1190/merge
1/5 ++ 1 --
Merge 37820212f72c0143d60f74b19fe3dd10639252e5 into 5e49d36b414009b9375d80d000e3ac7cbfe954c0
7bdba410
pull/1189/merge
1/4 ++ 0 --
Merge d093bddda6a6f909858cbfebe051a0383a8b2eae into bbfbdf8c8e0e1ec6bb8f93e77bfb90ec6c51733b
f487f723
pull/1156/merge
3/18 ++ 3 --
Merge 1a5729e2eea6d7b0f34d2361499ac7cfd43bfff0 into 5e49d36b414009b9375d80d000e3ac7cbfe954c0
aefa4368
pull/1170/merge
1/169 ++ 0 --
Merge ffdc4ff53d4a83af310cafe14645ef006e433ff8 into e8559cc9a0173ca6f9dc28f6913251efed33d625
32841198
pull/6703/merge
49/2,826 ++ 950 --
Merge 767bbbddb884bae419b292186e1af0174be9ab54 into e8559cc9a0173ca6f9dc28f6913251efed33d625
9bba1c49
pull/6501/merge
19/1,195 ++ 268 --