This block + 6,000 more — yours with Pro

Features Added Removed Diff List

3/170
DocsAll

The upgrade

The whole platform, in one diff.

No migration matrix, no multi-week rewrite. Every improvement lands as a single-line swap in your config — here's exactly what changes.

app/platform/config.ts
  • cache: { layer: 'memory', ttl: 60 }
    cache: { layer: 'edge', ttl: 3600, swr: true }
    Edge cache replaces in-memory
  • regions: ['us-east-1']
    regions: ['global'], // 34 cities, auto-routed
    One region becomes the whole planet
  • logs: { level: 'info' }
    observability: { logs, metrics, traces, profiling }
    Logs become full observability
  • deploy: { strategy: 'rolling' }
    deploy: { strategy: 'blue-green', rollback: 'instant' }
    Rolling deploys become instant rollback
  • auth: { provider: 'password' }
    auth: { provider: 'sso', mfa: 'required', audit: true }
    Passwords become SSO + MFA + audit log
  • scale: { min: 1, max: 4 }
    scale: { min: 0, max: Infinity, coldStart: '< 80ms' }
    Fixed capacity becomes scale-to-zero
a1b4c9fupgrade: move platform to v36 insertions6 deletions1 file