Release Notes - v0.2.0¶
Release Date: 2026-04-25
Overview¶
This release restructures omni-github as a root-level Go module for simpler imports. The nested omnistorage/ subdirectory has been removed.
Breaking Changes¶
Module Path Changed¶
Before:
After:
Installation Changed¶
Before:
After:
Migration Guide¶
-
Update your
go.mod: -
Update imports in your Go files:
-
Run
go mod tidyto clean up dependencies.
Dependencies¶
github.com/google/go-github/v84v84.0.0 (upgraded from v82)
Why This Change?¶
Unlike omni-aws which has multiple modules (omnillm for Bedrock, omnistorage for S3), omni-github has only one module. The nested structure added unnecessary complexity:
| Repository | Modules | Structure |
|---|---|---|
| omni-aws | 2 (omnillm, omnistorage) | Nested go.mod per module |
| omni-github | 1 | Root-level go.mod |
Requirements¶
- Go 1.25.0 or later
- GitHub personal access token with
reposcope
Documentation¶
- README - Full documentation with examples
- CHANGELOG - Version history
- pkg.go.dev - API reference