v3.2.0 May 15, 2025

Real-Time Sync Engine 2.0

A complete overhaul of our WebSocket pipeline delivering sub-50ms propagation times globally.

✨ Features

  • New `watch()` method for reactive config updates
  • Multi-region failover routing
  • Dashboard config diff viewer

⚡ Improvements

  • Reduced SDK bundle size by 32%
  • Optimized JSON parsing for large payloads
  • Added connection state events
app.watch((config) => { console.log('Config updated:', config.features.dark_mode); });
v3.1.8 April 22, 2025

Stability & Memory Leak Patch

Critical fixes for long-running Node.js and Python workloads.

🐛 Fixes

  • Resolved memory leak in event listener cleanup
  • Fixed race condition on cold starts
  • Patched CORS header injection bug
  • Corrected retry logic on 5xx responses
v3.1.5 March 10, 2025

Audit Logs & Export

Compliance-ready tracking for enterprise environments.

✨ Features

  • CSV & JSON export for audit trails
  • Webhook integration for change notifications
  • Role-based access control (RBAC) v2

⚡ Improvements

  • Faster dashboard load times
  • Improved search in config tree
v3.0.0 January 20, 2025

Zero-Downtime Architecture

Major release introducing hot-reload capabilities and breaking API changes.

⚠️ Breaking Changes

  • Renamed `AppConfig.init()` to `AppConfig.connect()`
  • Removed deprecated `sync_interval` config key
  • Node.js 16 support dropped (18+ required)

✨ Features

  • Zero-downtime config propagation
  • Native TypeScript definitions
  • GraphQL query endpoint
// v2 (deprecated) AppConfig.init({ sync_interval: 5000 }); // v3 (new) AppConfig.connect(apiKey);