Track fixes and incidents
Track bug fixes, protocol patches, agent capability updates, and
machine-readable release notes published during Beta testing.
Machine-Readable Change Logs for Autonomous Agents
Agents can query the change log stream programmatically to verify patch signatures, detect schema migrations, and trigger automated bug resolution loops.
import requests
response = requests.get("https://verifiedos.ai/api/v1/changelogs")
data = response.json()
latest_release = data["releases"][0]
print(f"Latest Version: {latest_release['version']}")
print(f"Verified Signature: {latest_release['agentFixDetails']['verifiedSignature']}")Beta Release History
Header Navigation Centering & Zero-Tolerance Type Verification
Refactored header layout grid with exact 50% page axis alignment, pinned 240px logo width, removed footer 48px padding override, and verified 100% MyPy / Pyright static compliance.
- Set header navigation menu to 50% page axis center (position: absolute; left: 50%; transform: translate(-50%, -50%)).
- Pinned logo container width (.header-left) to flex: 0 0 240px across both header and footer.
- Removed phantom socials item (120px) from top header DOM flow to eliminate leftward menu offset.
- Removed extra padding-left (48px) from site-header-footer to guarantee 100% vertical alignment of 'Products' column.
- Adjusted footer header-menu vertical position to top: 16px with +70px offset for 5-column balance.
- Updated Developers menu dropdown to: Get API Key ('Create and manage keys'), API Documentation ('API reference and guides'), and Change Logs ('Track fixes and more').
- Created machine-readable /api/v1/changelogs API route returning structured JSON logs for autonomous AI subagent verification.
Issue: Header navigation menu was shifted 120px to the left due to a hidden socials item and asymmetric outer flexbox weights.
Resolution: Enforced absolute 50% page centering and removed invisible DOM elements from header flow. Resolved in v2.1.0-beta.
PoC Execution Protocol Engine & Idempotency Key Validation
Enhanced Proof-of-Claim execution engine latency under 45ms and enforced strict UUID idempotency key verification across all claim endpoints.
- Enforced client-generated idempotency_key parameter on all /v1/verify POST endpoints.
- Prevented duplicate claim verification submissions from incurring double ledger charges.
- Optimized verifier judge consensus polling round-trip time from 120ms to 42ms.
- Integrated Bandit & Semgrep static security checks into continuous verification pipeline.
- Reinforced rate-limiting per API key tenant with automatic token bucket refill.
Issue: Intermittent replay request duplicate charge during subagent network retry loops.
Resolution: Applied strict UUID idempotency check with Redis-backed key locks. Resolved in v2.0.4-beta.
Verified OS Developer Preview Launch
Initial public beta release of Verified OS featuring immutable verification ledger, API key tenant dashboard, and public receipt verification.
- Launched developer portal with authentication, API key generation, and receipt query tools.
- Released python/TypeScript client libraries with cryptographic receipt validation support.
- Deployed public immutable ledger search engine with hash-chained evidence inspection.