- Bump version 0.1.0 -> 0.3.0 - Add systemd service unit (config/s5p.service) and install-service Makefile target - Add CLI argument parsing tests (tests/test_cli.py, 27 tests) - Expand protocol tests with SOCKS5/4/HTTP handshake, error, and auth coverage (tests/test_proto.py, 30 tests) - Add full API reference to docs/USAGE.md with response schemas for all GET/POST endpoints - Update INSTALL.md, CHEATSHEET.md with systemd section - Update ROADMAP.md, TASKS.md for v0.3.0
50 lines
1.7 KiB
Markdown
50 lines
1.7 KiB
Markdown
# s5p -- Roadmap
|
|
|
|
## v0.1.0
|
|
|
|
- [x] SOCKS5 server (CONNECT command)
|
|
- [x] Proxy chaining (SOCKS5, SOCKS4/4a, HTTP CONNECT)
|
|
- [x] Per-hop authentication
|
|
- [x] YAML config + CLI flags
|
|
- [x] DNS leak prevention
|
|
- [x] Container deployment (Alpine + podman-compose)
|
|
- [x] Graceful SIGTERM/SIGINT shutdown
|
|
- [x] cProfile support
|
|
- [x] Dynamic proxy source API integration
|
|
- [x] Weighted proxy selection (recency-based)
|
|
- [x] Per-proxy backoff (connection failure cooldown)
|
|
- [x] Stale proxy expiry (last_seen TTL)
|
|
- [x] Pool stats in periodic metrics log
|
|
- [x] Instant warm start (trust cached state, defer all health tests)
|
|
- [x] Static chain health check (pre-flight before pool tests)
|
|
- [x] SIGHUP hot config reload
|
|
- [x] Dead proxy reporting to source API
|
|
|
|
## v0.2.0
|
|
|
|
- [x] Built-in control API (runtime metrics, pool state, config reload)
|
|
- [x] Tor control port integration (circuit renewal via NEWNYM)
|
|
- [x] Metrics (connections/sec, bytes relayed, hop latency)
|
|
- [x] Multi-listener with per-port chain depth
|
|
- [x] Per-listener latency tracking
|
|
- [x] Dynamic health test concurrency (auto-scales to ~10% of pool)
|
|
- [x] Multi-Tor round-robin (`tor_nodes`)
|
|
- [x] Named proxy pools with per-listener assignment (`proxy_pools:`)
|
|
- [x] MITM source filter (`mitm: true/false` on pool sources)
|
|
|
|
## v0.3.0 (current)
|
|
|
|
- [x] SOCKS5 server authentication (username/password)
|
|
- [x] Systemd service unit
|
|
- [x] CLI test coverage
|
|
- [x] Protocol test coverage (SOCKS5/4/HTTP handshakes)
|
|
- [x] API documentation (full response schemas)
|
|
- [ ] UDP ASSOCIATE support (SOCKS5 UDP relay)
|
|
- [ ] BIND support
|
|
- [ ] Chain randomization (random order, random subset)
|
|
|
|
## v1.0.0
|
|
|
|
- [ ] Stable API and config format
|
|
- [ ] Performance benchmarks
|