Conversation
- update BRANCHING and deployment specs to reflect staging as integration, main as beta, and tagged releases as stable latest - add a real production deployment guide covering TLS, reverse proxies, firewall rules, persistence, backups, upgrades, and health monitoring - add the v0.1.0 changelog entry summarizing the first release feature set and delivery pipeline
… support - detect provider on OpenAI-compatible endpoints from the request model instead of assuming OpenAI - add first-class Google upstream routing and Gemini support for OpenAI SDK style requests - support Anthropic models on /v1/chat/completions through an OpenAI-compat translation layer - route native Ollama /api/* requests to the Ollama upstream and reject unresolved models instead of silently falling back - update proxy and config tests to cover provider resolution, compatibility translation, and routing errors
═══════════════════════════════════════════ ✓ All quality gates passed ✓ Binary builds and starts correctly ✓ Dashboard builds and loads ✓ Health endpoint responds ✓ Auth flow works on fresh install ✓ No blocking TODOs or FIXMEs ✓ No hardcoded debug values ✓ No leftover mock data ✓ All required files present ✓ Oberwatch is ready for v0.1.0 ═══════════════════════════════════════════
- Dockerfile: run as non-root oberwatch user - Pin all 3rd party GitHub Actions to commit hashes - Upgrade golang.org/x/crypto v0.44.0 → v0.45.0 (CVE-2025-58181, CVE-2025-47914) - Docker build now depends on CI passing (workflow_run trigger)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Prepare Oberwatch for the v0.1.0 stable release. This PR promotes all work from staging into main, bringing the proxy from a single-provider OpenAI forwarder to a fully multi-provider routing layer with SQLite persistence, budget enforcement, live alerting, a polished dashboard, installer scripts, and hardened CI/CD — all passing the full quality gate checklist.
136 files changed, 6 668 insertions, 474 deletions across 25 commits.
Changes
Multi-Provider Proxy Routing
SQLite Persistence & Budget Enforcement
Dashboard & UX
Installer & Production Deployment
CI/CD & Security Hardening
Test Coverage & Quality Gate
Testing
Checklist