Changelog
Follow @goldskyio on Twitter to stay updated on everything we ship.
Visual canvas for Turbo Pipelines

Building Turbo pipelines is now more visual. You can now design your entire pipeline using our drag-and-drop canvas editor (YAML optional).
We've added two powerful new transform types:
- Script transforms let you write JavaScript or TypeScript directly in the canvas, with syntax highlighting and real-time error checking
- Dynamic tables give you in-memory or Postgres-backed state for complex enrichment patterns
The canvas automatically detects YAML-only sources (like Kafka or ClickHouse) and switches to YAML mode when needed. Everything you've come to expect from Mirror pipelines is now available for Turbo.
Teams

We've rolled out team-level organization across the platform. Teams let you share subscriptions, projects, and billing across your organization.
What's new:
- Create and manage teams from the dashboard or CLI (
goldsky project create --team-id) - Invite team members with role-based permissions (Owner, Admin, Editor, Viewer)
- Single subscription shared across all team projects
- Team names auto-generated during onboarding
If you're on an existing project, you'll see a new Teams section in your settings.
Solana Fast Scan
Backfilling Solana data is now dramatically faster. Fast Scan uses a ClickHouse index to skip irrelevant slots during backfills. Instead of scanning every slot, your pipeline only processes the ones that match your filter. Enable it with the fast_scan option in your pipeline config.
This is especially powerful for program-specific pipelines where you only need a fraction of chain activity.
Compose CLI updates
The Compose CLI now includes built-in install and update commands for extensions. You can also set secrets directly with compose secret set -t <token>.
We've also fixed extension binary resolution—the CLI now checks ~/.goldsky/bin/ first, so you won't hit conflicts with other binaries in your PATH.
- Added Stellar dataset support for operations, transactions, and events via XDR
- CLI extensions now resolve from ~/.goldsky/bin/ to avoid PATH conflicts
- Fixed billing display showing incorrect Turbo entity limits on free plans
- Fixed YAML editing resetting one_row_per_request to false on save
- Improved Postgres connection handling with deadlock-aware retry logic