Are you an LLM? Read llms.txt for a summary of the docs, or llms-full.txt for the full context.
Skip to content

Roadmap

Planned features and improvements for Postbase.

Current Version

v0.6.0 (January 2026) - Beta

Release Notes

v0.6.0 - Documentation & Landing Page (January 27, 2026)

New Features:
  • Documentation Site: Comprehensive docs at docs.postbase.sh
    • 36 documentation pages covering all features
    • Getting started guides and tutorials
    • Full CLI and API reference
    • SDK documentation with examples
    • Built with Vocs for fast, modern experience
  • Landing Page: New marketing site at postbase.sh
    • Modern dark theme with React + Tailwind
    • Feature showcase and pricing information
    • Deployed on Cloudflare Workers
Infrastructure:
  • New @postbase/docs package with Vocs
  • New @postbase/web package with React + Vite
  • Cloudflare Workers deployment for both sites
  • SPA routing support for web package

v0.5.2 - Point-in-Time Recovery (January 2026)

New Features:
  • Custom PostgreSQL image with WAL streaming
  • Continuous WAL archiving to Cloudflare R2
  • Point-in-time recovery to any second
  • Recovery monitoring and management
  • PITR status in backup service
CLI Commands:
# Restore to specific point in time
postbase cloud pitr restore production \
  --target-time "2026-01-25T14:30:00Z" \
  -p myapp
 
# Check PITR status
postbase cloud pitr status production -p myapp

v0.5.1 - Data Protection (January 2026)

New Features:
  • Daily automated backups at 2:00 AM UTC
  • Manual backup creation via CLI
  • Backup restore operations
  • Cloudflare R2 storage for zero egress fees
  • Backup retention policies
CLI Commands:
# Create manual backup
postbase cloud backups create production -p myapp
 
# List backups
postbase cloud backups list production -p myapp
 
# Restore from backup
postbase cloud backups restore production --backup-id abc123

v0.5.0 - Cloud Platform (January 2026)

New Features:
  • Cloud PostgreSQL provisioning via Railway
  • GitHub OAuth authentication
  • Project and database management
  • Environment-based deployments (staging/production)
  • Secure auto-generated passwords
CLI Commands:
# Login to cloud
postbase cloud login
 
# Create project
postbase cloud projects create myapp
 
# Provision database
postbase cloud provision production -p myapp

2026 Roadmap

Q1 2026 - Usage-Based Billing

Status: In Development

Granular, per-second billing with Solana payments:

  • Prepaid credits via USDC on Solana
  • Per-second compute billing
  • Real-time usage dashboard
  • Low balance alerts (< 48 hours remaining)
  • Auto-pause at $0 (data preserved)
  • CLI commands for credits management

Pricing Model:

Compute:  $0.013 - $0.21/hour (per instance size)
Storage:  $0.20/GB-month
Backups:  $0.02/GB-month
PITR:     $0.10/day (beyond 3 free days)
Egress:   $0.06/GB
# Check balance
postbase cloud balance
 
# Add credits (opens wallet connection)
postbase cloud credits add 25
 
# View usage breakdown
postbase cloud usage

Q2 2026 - Read Replicas

Status: Planning

Read replicas for horizontal scaling:

  • Regional read replicas
  • Automatic failover
  • Connection routing
  • Replica lag monitoring
# Create read replica
postbase cloud replicas create production-read \
  -p myapp \
  --source production \
  --region eu-west1
 
# Get read-only connection string
postbase cloud replicas url production-read -p myapp

Q3 2026 - High Availability

Status: Planning

Multi-node PostgreSQL clusters:

  • Automatic failover
  • Zero-downtime upgrades
  • Connection pooling (PgBouncer)
  • Health monitoring

Q4 2026 - Teams & Security

Status: Planning

Team collaboration features:

  • Team invitations
  • Role-based access control (RBAC)
  • Audit logging
  • Password rotation
  • Encryption at rest
# Invite team member
postbase cloud teams invite alice@example.com --role admin
 
# Set permissions
postbase cloud databases permissions set production \
  --user alice@example.com \
  --role read-only

2027 Roadmap

Q1 2027 - Monitoring Dashboard

Status: Planning

Comprehensive monitoring:

  • Query performance metrics
  • Connection analytics
  • Storage utilization
  • Custom dashboards
  • Alert configuration

Q2-Q3 2027 - Advanced Features

Status: Planning

Enterprise capabilities:

  • Multi-region deployments
  • Database branching
  • Schema diff and sync
  • Advanced query optimization

2028 Roadmap

Q1-Q2 2028 - AI/ML Integration

Status: Conceptual

AI-powered features:

  • Query optimization suggestions
  • Anomaly detection
  • Natural language queries
  • Schema recommendations

Q3-Q4 2028 - Enterprise

Status: Conceptual

Enterprise-grade features:

  • SSO/SAML integration
  • Compliance certifications (SOC2, HIPAA)
  • Custom SLAs
  • Dedicated support

Feature Requests

Have a feature request? Let us know:

Version History

VersionDateHighlights
0.6.0Jan 27, 2026Documentation site, landing page
0.5.2Jan 2026PITR, custom PostgreSQL image
0.5.1Jan 2026Backups, SDK, Supabase image
0.5.0Jan 2026Cloud platform, Railway integration
0.4.0Dec 2025Admin UI, migrations
0.3.0Nov 2025CLI, daemon
0.2.0Oct 2025Initial release

Contributing

Postbase is open source. Contributions welcome:

  1. Fork the repository
  2. Create a feature branch
  3. Submit a pull request

See Contributing Guide for guidelines.