Major security, observability, and configuration improvements:
## Security Hardening
- Implemented configurable CORS (no more wildcards)
- Added comprehensive auth middleware for admin endpoints
- Enhanced webhook HMAC validation
- Added input validation and rate limiting
- Security headers and CSP policies
## Configuration Management
- Made N8N webhook URL configurable (WHOOSH_N8N_BASE_URL)
- Replaced all hardcoded endpoints with environment variables
- Added feature flags for LLM vs heuristic composition
- Gitea fetch hardening with EAGER_FILTER and FULL_RESCAN options
## API Completeness
- Implemented GetCouncilComposition function
- Added GET /api/v1/councils/{id} endpoint
- Council artifacts API (POST/GET /api/v1/councils/{id}/artifacts)
- /admin/health/details endpoint with component status
- Database lookup for repository URLs (no hardcoded fallbacks)
## Observability & Performance
- Added OpenTelemetry distributed tracing with goal/pulse correlation
- Performance optimization database indexes
- Comprehensive health monitoring
- Enhanced logging and error handling
## Infrastructure
- Production-ready P2P discovery (replaces mock implementation)
- Removed unused Redis configuration
- Enhanced Docker Swarm integration
- Added migration files for performance indexes
## Code Quality
- Comprehensive input validation
- Graceful error handling and failsafe fallbacks
- Backwards compatibility maintained
- Following security best practices
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
37 lines
1.4 KiB
YAML
37 lines
1.4 KiB
YAML
language: go
|
|
go:
|
|
- "1.22.x"
|
|
- "1.21.x"
|
|
go_import_path: github.com/nats-io/nats.go
|
|
install:
|
|
- go get -t ./...
|
|
- curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin
|
|
- if [[ "$TRAVIS_GO_VERSION" =~ 1.22 ]]; then
|
|
go install github.com/mattn/goveralls@latest;
|
|
go install github.com/wadey/gocovmerge@latest;
|
|
go install honnef.co/go/tools/cmd/staticcheck@latest;
|
|
go install github.com/client9/misspell/cmd/misspell@latest;
|
|
fi
|
|
before_script:
|
|
- $(exit $(go fmt ./... | wc -l))
|
|
- go vet -modfile=go_test.mod ./...
|
|
- if [[ "$TRAVIS_GO_VERSION" =~ 1.22 ]]; then
|
|
find . -type f -name "*.go" | xargs misspell -error -locale US;
|
|
GOFLAGS="-mod=mod -modfile=go_test.mod" staticcheck ./...;
|
|
fi
|
|
- golangci-lint run ./jetstream/...
|
|
script:
|
|
- go test -modfile=go_test.mod -v -run=TestNoRace -p=1 ./... --failfast -vet=off
|
|
- if [[ "$TRAVIS_GO_VERSION" =~ 1.22 ]]; then ./scripts/cov.sh TRAVIS; else go test -modfile=go_test.mod -race -v -p=1 ./... --failfast -vet=off -tags=internal_testing; fi
|
|
after_success:
|
|
- if [[ "$TRAVIS_GO_VERSION" =~ 1.22 ]]; then $HOME/gopath/bin/goveralls -coverprofile=acc.out -service travis-ci; fi
|
|
|
|
jobs:
|
|
include:
|
|
- name: "Go: 1.22.x (nats-server@main)"
|
|
go: "1.22.x"
|
|
before_script:
|
|
- go get -modfile go_test.mod github.com/nats-io/nats-server/v2@main
|
|
allow_failures:
|
|
- name: "Go: 1.22.x (nats-server@main)"
|