AWS Workshop on Feb 27: Learn how to use Neon as a dev environment for AWS RDS - Sign up

Changelog

The latest product updates from Neon

Added support for the pg_repack extension

The pg_repack extension is now available in Neon. This extension helps remove bloat from tables and indexes while optionally restoring the physical order of clustered indexes — all without requiring an exclusive lock during processing.

For usage details, refer to the pg_repack documentation.

  • Rate limiting for Neon public API. To ensure stability and fair usage, we’ve introduced per-project rate limits to the Neon public API. This change helps prevent accidental overloads or excessive API calls that could disrupt service for other users. While most users won’t notice a difference, if your project exceeds the limit you'll receive clear error messages with retry details.

  • Neon API

    FF: We added a new endpoint for deploying a Neon Identity integration programmatically. Neon Identity lets you sync user profiles from your auth provider directly to your database. Join the Early Access Program to try it out. Sign up here.

    Check out our docs to learn more.

    Currently supporting Stack Auth, more providers coming soon.

    curl --request POST \
       --url https://console.neon.tech/api/v2/projects/identity/create \
       --header 'accept: application/json' \
       --header 'authorization: Bearer $NEON_API_KEY' \
       --header 'content-type: application/json' \
       --data '{
         "auth_provider": "stackauth",
         "project_id": "hidden-sun-87604935",
         "branch_id": "br-polished-star-a8ueuz2h",
         "database_name": "neondb",
         "role_name": "neondb_owner"
       }'
Back to all changelog posts