How does Neon compare to AWS RDS for PostgreSQL? Your questions, answered

Changelog

The latest product updates from Neon

RSS feed

Neon serverless driver is now generally available (GA)

The Neon serverless driver for JavaScript/TypeScript has reached version 1.0.0 and is now generally available! Built for environments like Vercel Functions, Cloudflare Workers, and even browsers, the driver carries SQL over HTTP or WebSockets — no raw TCP required.

This GA release brings a cleaner, more maintainable codebase, stronger SQL injection safeguards, support for composable tagged-template queries, and better performance when inserting binary data over HTTP.

What you need to know about the 1.0.0 GA release:

  • It requires Node.js v19 or later.

  • It includes a breaking change but only if you're calling the HTTP query template function as a conventional function. The first usage shown below remains safe and supported. However, the second usage is an SQL injection risk (notice the parentheses) and is no longer permitted and now throws an error. You'll need to update your app if you use it.

    // this usage remains safe and supported
    const resultA = await sql`SELECT * FROM table WHERE id = ${id}`;
    // this usage is not safe and now throws an error
    const resultB = await sql(`SELECT * FROM table WHERE id = ${id}`);

For more about these changes and others in the 1.0.0 GA release, please see the 1.0.0 release notes or read the blog post.

Streamlined Neon Auth setup

With Neon Auth, your user data is available right in your database.

We've simplified Neon Auth onboarding so you can add authentication to your project faster. With a cleaner UI and clearer steps, it's now easier to get started adding your first users with Neon Auth.

Streamlined Neon Auth setup

Learn more in our docs.

MCP Server updates

We're continuing to improve our MCP Server. This week, we added built-in support for the AI rules we announced two weeks ago. In case you missed it, we provide AI rules for setting up Neon Auth, querying your database with the Neon serverless driver, and integrating Neon with Drizzle ORM. Keep an eye out for more AI rules as we expand this resource.

Windows developers will also find improved platform compatibility in this release. See the MCP Server changelog to find the latest updates.

Fixes & improvements
  • Getting started panel

    Added a new Integrate Neon with your AI tools option to the Project Dashboard, making it easier to connect Neon with AI tools like Cursor, Windsurf, Zep, Qdrant, and Weaviate.

    new ai card in get started panel

  • Neon API

    • Added started_at timestamp field to the Endpoint response object. This field indicates when a compute endpoint was last started, providing better visibility into compute lifecycle events.
    • Updated the Delete VPC endpoint API to clarify that deleted VPC endpoints cannot be re-added to the same Neon organization.
  • Drizzle Studio update

    We updated the Drizzle Studio integration that powers the Tables page in the Neon Console to version 1.0.19. For the latest improvements and fixes, see the Neon Drizzle Studio Integration Changelog.

Search faster with pg_search on Neon

pg_search extension

We’ve partnered with ParadeDB to bring pg_search to Neon, delivering up to 1,000x faster full-text search inside Postgres. The pg_search extension introduces Elasticsearch-grade ranking, typo tolerance, faceted search, and JSON-aware filtering—all within Postgres. Powered by a BM25-based inverted index, pg_search outperforms native Postgres FTS (tsvector/tsquery), making it ideal for search-heavy applications. It’s available now for Neon databases running Postgres 17 on AWS. To learn more, read the announcement and check out our pg_search docs.

Neon spend is now MACC-eligible on Azure

Neon Postgres purchases made through the Azure Marketplace are now counted toward your Microsoft Azure Consumption Commitment (MACC). As an Azure Benefit Eligible partner, any spend on Neon Postgres via the Azure Marketplace helps fulfill your committed Azure spend with no extra steps required. Learn more.

Get usage notifications in Slack

You can now receive Neon usage notifications directly in your Slack channels! Get updates on your resource usage, find your projects, and invite team members to your organization - without leaving your workspace.

Neon Slack commands including new subscribe feature

Use /neon subscribe in any public channel to start receiving notifications, and /neon unsubscribe to turn them off. The bot will guide you through any necessary setup steps.

To learn more, see the Neon App for Slack docs.

Fixes & improvements
  • Neon Console

    • Expanded the database drop-down menu width in the Neon SQL Editor to accommodate longer database names. Previously, longer names were not fully visible due to the narrow menu width.
    • Added an Unable to fetch projects message to the Projects page in the Neon Console. Previously, an error page was displayed when the project list couldn't be retrieved.
  • Autoscaling default settings

    We've updated the default autoscaling settings for newly created projects on paid Neon plans to provide a better balance of performance and efficiency:

    Neon planMinimum compute sizeMaximum compute size
    Launch14
    Scale18
    Business18

    These optimized defaults help ensure projects scale smoothly to meet workload demands while maintaining cost efficiency. This change applies only to newly created projects—existing projects and computes remain unaffected. You can review and adjust your autoscaling settings anytime in your project settings. From your Project Dashboard, go to Settings > Compute.

  • Postgres effective_cache_size setting is now optimized for better query plans

    Previously, Neon didn’t explicitly set the Postgres effective_cache_size Postgres parameter, so it defaulted to 4 GiB—often too low for larger compute sizes and autoscaling configurations. We now set this value based on the maximum size of Neon's Local File Cache (LFC) for a compute's maximum compute size, which helps the Postgres query planner make better decisions and improves query performance. For information about maximum LFC size per compute size, see the table in How to size your compute.

  • Neon API

  • Drizzle Studio update

    We updated the Drizzle Studio integration that powers the Tables page in the Neon Console to version 1.0.18. For the latest improvements and fixes, see the Neon Drizzle Studio Integration Changelog.

  • Fixes

    • Resolved an issue where resetting a role password in the Neon Console would result in an "invalid password" error in the SQL Editor and on the Tables page.
    • Revised the copy at the bottom of the Connect to your database modal for older Neon projects. The copy previously mentioned that passwords are stored, which is only true for Neon projects created after password storage was introduced.

Neon is now HIPAA compliant ✅

Neon is now fully HIPAA compliant, adding to our existing security certifications (SOC 2 Type 2, ISO 27001, ISO 27701) and regulatory alignments (GDPR, CCPA).

Neon's compliance certifications with HIPAA highlighted

✨New✨: HIPAA compliance certification added to our security achievements

HIPAA (Health Insurance Portability and Accountability Act) is a U.S. law that sets national standards for the protection of personal health information (PHI) and regulates how healthcare providers, insurers, and business associates handle electronic health records (EHRs).

If you develop applications that must comply with HIPAA, you can now build on Neon. HIPAA is available as an add-on to Neon's Business and Enterprise plans. To get started, reach out to the Neon Sales team. They'll work with you on a Business Associate Agreement (BAA) and enable HIPAA for your account. Read the blog post for more: Neon is HIPAA Compliant.

Business and Enterprise customers can request a copy of Neon's HIPAA compliance report through our Trust Center.

Neon joins GitHub's Secret Scanning Partner program 🔒

Neon is now a GitHub Secret Scanning Partner, helping protect users by automatically detecting exposed Neon database credentials and API keys in public GitHub repositories. When a secret is detected, GitHub notifies Neon, triggering alerts to our security team and affected users. This integration adds an extra layer of security, ensuring leaked credentials are identified and mitigated before they can be exploited. Learn more in our security documentation.

AI rules for building with Neon 🤖

We've released official rules (.mdc files) to help AI-powered development tools better understand and generate Neon-related code. These rules cover Neon Auth implementation, serverless deployment best practices, and Drizzle ORM integration. Try them out in Cursor or any AI tool that supports custom context rules. View the rules repository.

Neon Auth added to MCP Server 🛠️

We've also added a new provision_neon_auth command to the Neon MCP Server that automates setting up Neon Auth in your Neon projects. This tool:

  • Creates the necessary auth schema and tables
  • Configures Stack Auth integration
  • Provides all required environment variables and credentials

Try it out in any IDE or AI tool that supports the Model Context Protocol (MCP). Just ask to "set up authentication for my Neon project" and the MCP Server will handle the rest.

"LAST" login indicator

We've added a simple LAST tag on our login screen that shows which authentication method you previously used. No more guessing which login method to choose when returning to Neon!

Login screen showing a LAST indicator on the Google login option

Fixes & improvements
  • Neon Console

    • Updated AWS region names to match their official AWS identifiers (e.g., "AWS US East 1" instead of "AWS US East"), making it easier to identify familiar regions when creating a new project.

      AWS region selector showing numbered regions

    • The Connect to your database modal on the Project Dashboard now remembers your last selected connection snippet (like Node.js, Python, psql, etc.), automatically showing your preferred connection snippet when you return to the modal.

    • Improved SQL Editor responsiveness by unlocking the Run button more quickly after query execution.

  • Neon API

    Added consistent email validation across all endpoints (1-256 characters).

  • Neon CLI

    The create-app command has been removed.

  • 1Password integration

    Improved how connection strings are saved in 1Password — it now stores the complete connection string in a single field for easier copy/paste functionality.

  • Organization billing

    Added support for organizations to downgrade to the Free plan, with clear visibility into any applicable limitations before downgrading.

  • Neon on Azure

    Added support for changing your Neon plan directly via the Azure portal. See Changing your plan for instructions.

Was this page helpful?

Subscribe to our changelog.
No spam, guaranteed.