Update dependencies and add dependency management docs
- Upgrade charmbracelet/x/ansi v0.10.1 -> v0.11.3 - Upgrade spf13/cobra v1.8.1 -> v1.10.2 - Upgrade golang.org/x/text v0.3.8 -> v0.32.0 - Add dependency management section to AGENTS.md
This commit is contained in:
19
AGENTS.md
19
AGENTS.md
@@ -29,3 +29,22 @@ This file exists for compatibility with tools that look for AGENTS.md.
|
||||
- NEVER stop before pushing - that leaves work stranded locally
|
||||
- NEVER say "ready to push when you are" - YOU must push
|
||||
- If push fails, resolve and retry until it succeeds
|
||||
|
||||
## Dependency Management
|
||||
|
||||
Periodically check for outdated dependencies:
|
||||
|
||||
```bash
|
||||
go list -m -u all | grep '\['
|
||||
```
|
||||
|
||||
Update direct dependencies:
|
||||
|
||||
```bash
|
||||
go get <package>@latest
|
||||
go mod tidy
|
||||
go build ./...
|
||||
go test ./...
|
||||
```
|
||||
|
||||
Check release notes for breaking changes before major version bumps.
|
||||
|
||||
Reference in New Issue
Block a user