Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
1dd6f5c
refactor: restructure packages and drop unused code
ravisuhag Apr 18, 2026
6f8fc36
feat(server): add h2c server with health checks and timeouts
ravisuhag Apr 18, 2026
e7e41ef
feat(middleware): add Connect interceptors and HTTP middleware
ravisuhag Apr 18, 2026
12a2c29
feat(app): add service bootstrap
ravisuhag Apr 18, 2026
1f44bcf
feat(cli): add CLI bootstrap and rewrite printer
ravisuhag Apr 18, 2026
15d6c36
refactor(config): upgrade deps and remove stdout printing
ravisuhag Apr 18, 2026
5f97557
fix: upgrade golangci-lint to v2 and Go to 1.24
ravisuhag Apr 18, 2026
e2df2b3
docs: add README, migration guide, and GoDoc examples
ravisuhag Apr 18, 2026
a38dd1b
refactor(cli): replace cli.Execute with cli.Init decorator pattern
ravisuhag Apr 18, 2026
6b941e9
test(cli): add tests for Init, Output, and Prompter
ravisuhag Apr 18, 2026
b3cfd31
test(app): add test for OnStart failure cleanup behavior
ravisuhag Apr 18, 2026
8a66841
feat(cli): add ConfigCommand helper for config init/list
ravisuhag Apr 18, 2026
0f6ef68
deps: upgrade cobra v1.8.1 → v1.10.2, pflag v1.0.5 → v1.0.9
ravisuhag Apr 18, 2026
71c0949
deps: upgrade all direct dependencies to latest
ravisuhag Apr 18, 2026
02cd603
feat(cli): support cobra GroupID and set error prefix
ravisuhag Apr 18, 2026
4e0d8f7
refactor(version): unexport internal functions
ravisuhag Apr 19, 2026
3239333
docs: update migration guide with GroupID, ConfigCommand, dep versions
ravisuhag Apr 19, 2026
77c342a
feat(prompt): add Password method for masked secret input
ravisuhag Apr 19, 2026
eaafbde
feat(cli): add typed error handling, remove IsCommandErr
ravisuhag Apr 19, 2026
f560a14
docs: add error handling examples and migration guide
ravisuhag Apr 19, 2026
71818f7
feat(cli): cache version checks and add TTY-aware table output
ravisuhag Apr 19, 2026
3eb7605
feat(cli): add terminal width and separate stderr for status output
ravisuhag Apr 19, 2026
8e152b6
refactor(cli): add Execute, unexport error types, modernize idioms
ravisuhag Apr 19, 2026
65c5fdd
fix: address review feedback from CodeRabbit
ravisuhag Apr 19, 2026
2eab3de
docs: add language tag to code block and note defaults.Set error
ravisuhag Apr 19, 2026
4837a4f
feat(cli): add IOStreams for centralized I/O and testability
ravisuhag Apr 19, 2026
866c776
refactor(terminal): remove functions superseded by IOStreams
ravisuhag Apr 19, 2026
90a1347
feat(cli): add --json flag with field selection for structured output
ravisuhag Apr 19, 2026
6a1eb85
fix: address review findings across packages
ravisuhag Apr 20, 2026
05a493a
fix(cli): DX improvements and comprehensive integration tests
ravisuhag Apr 20, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ jobs:
with:
go-version-file: "go.mod"
- name: Run linter
uses: golangci/golangci-lint-action@v6
uses: golangci/golangci-lint-action@v7
with:
version: v1.60
version: v2.11
23 changes: 10 additions & 13 deletions .golangci.yml
Original file line number Diff line number Diff line change
@@ -1,24 +1,21 @@
output:
formats:
- format: line-number
version: "2"
formatters:
enable:
- goimports
- gofmt
linters:
enable-all: false
disable-all: true
disable:
- errcheck
enable:
- govet
- goimports
- thelper
- tparallel
- unconvert
- wastedassign
- revive
- unused
- gofmt
- whitespace
- misspell
linters-settings:
revive:
ignore-generated-header: true
severity: warning
severity:
default-severity: error
settings:
revive:
severity: warning
Loading
Loading