> Full Neon documentation index: https://neon.com/docs/llms.txt

# Backend for apps and agents, Postgres 18 by default, and more

## Backend for apps and agents: coming soon

As [announced last week](https://neon.com/docs/changelog/2026-05-29#neon-is-building-the-backend-for-apps-and-agents), three new services are coming to Neon.

- [Storage](): S3-compatible object storage that branches with your database. Every branch gets its own isolated storage state, so files and data stay in sync across dev, staging, and production.
- [Compute](): Serverless functions that run alongside your Postgres database. Deploy code, trigger jobs asynchronously, and manage everything through the same CLI and API you already use.
- [AI Gateway](): Route, log, and rate-limit LLM calls to OpenAI, Anthropic, or Gemini through a single proxy built into your Neon project. Streaming responses and per-request logging included. No extra infrastructure required.

[Sign up for early access](https://neon.com/blog/were-building-backends#access) to be among the first to try them when they ship.

## Postgres 18 for newly created Neon projects

![Create PG18 project](https://neon.com/docs/changelog/create_project_18.png)

Postgres 18 is now the default for newly created Neon projects. Neon continues to support Postgres 14, 15, 16, and 17, if you prefer to stick with those. For a rundown of what's new in Postgres 18, see our [Postgres 18 blog post](https://neon.com/blog/postgres-18). For Neon's Postgres version support policy, see [Postgres Version Support](https://neon.com/docs/postgresql/postgres-version-policy).

## 5x more network transfer on all paid plans

![Public network transfer allowance](https://neon.com/docs/changelog/data_transfer_allowance.png)

We've increased the public network transfer (egress) allowance on all paid plans from 100 GB to **500 GB per month**. The new allowance takes effect automatically with no changes required on your end, and it will be reflected on your June invoice. To learn more about how network transfer is measured and billed, see [Network transfer](https://neon.com/docs/introduction/network-transfer). For background on why we made this change, see [our blog post](https://neon.com/blog/more-data-transfer-on-paid-plans).

## Faster Text-to-SQL in the SQL Editor

![Text-to-SQL in the SQL Editor](https://neon.com/docs/changelog/text_to_sql_editor.png)

Text-to-SQL suggestions in the Neon SQL Editor are now significantly faster. You'll notice quicker responses when asking the AI to generate queries from natural language, so there's less waiting and more querying. For an overview of the SQL Editor's AI features, see [SQL Editor AI features](https://neon.com/docs/get-started/query-with-neon-sql-editor#ai-features).

## Link, branch, and query from the Neon CLI

**Neon CLI v2.22.2** is a major CLI update that brings Vercel-style project linking, branch checkout, a top-level `psql` command, and full Data API management to the terminal. If you use the [Neon CLI](https://neon.com/docs/reference/neon-cli), upgrade to access these commands. We're actively evolving the CLI as a first-class tool for both developers and AI agents, and you'll see more improvements in this direction going forward.

**New commands**

- [`neon link`](https://neon.com/docs/reference/cli-link): Bind the current directory to a Neon project. Writes a `.neon` context file with your `orgId`, `projectId`, and `branchId`. Supports interactive prompts, non-interactive flags, and `--agent` JSON mode for AI coding assistants.

  ```bash
  neon link
  ```

- [`neon checkout`](https://neon.com/docs/reference/cli-checkout): Pin a branch in `.neon` so subsequent commands target it without passing `--branch` on every command.

  ```bash
  neon checkout <branch>
  ```

- [`neon psql`](https://neon.com/docs/reference/cli-psql): Connect to a database via `psql` as a dedicated top-level command. Pass arguments after `--` directly to `psql`.

  ```bash
  neon psql production -- -c "SELECT version()"
  ```

- [`neon data-api`](https://neon.com/docs/reference/cli-data-api): Provision and manage the [Neon Data API](https://neon.com/docs/data-api/overview) with `create`, `get`, `update`, `refresh-schema`, and `delete` subcommands.

  ```bash
  neon data-api create --database neondb --auth-provider neon_auth
  ```

- [`neon set-context`](https://neon.com/docs/reference/cli-set-context) improvements:
  - **`--branch-id`**: Set which branch your commands target, the same way you set `--project-id` and `--org-id`.

    ```bash
    neon set-context --branch-id br-steep-math-aiu3vve7
    ```

  - **Find your project from subfolders**: Run CLI commands from any subdirectory. The CLI walks up parent folders looking for a `.neon` file to load your linked project.

    ```bash
    cd my-app/src/components
    neon psql
    ```

  - **Auto-add `.neon` to `.gitignore`**: The first time a `.neon` file is created, the CLI adds it to `.gitignore` in that folder so local project settings are not committed by accident.

For command reference and options, see the [Neon CLI overview](https://neon.com/docs/reference/neon-cli) or get set up quickly with the [CLI Quickstart](https://neon.com/docs/reference/cli-quickstart).

These commands require **neonctl 2.22.2** or later. For upgrade instructions including CI/CD usage, see [Neon CLI upgrade](https://neon.com/docs/reference/cli-install#upgrade).

## Manually pay an invoice

Organization admins and personal account owners can now pay an outstanding invoice immediately from the Neon Console, without waiting for the automatic charge on the first of the month. This is useful as a recovery option when an auto-debit fails.

To pay an invoice manually, go to **Billing** and open the **View/Pay invoices** drawer. Select the invoice and follow the link to its hosted payment page. For more, see [Manage billing](https://neon.com/docs/introduction/manage-billing).

## Expanded infrastructure capacity in AWS Europe (Frankfurt)

We've expanded infrastructure capacity in the AWS Europe (Frankfurt) region (`eu-central-1`) with new NAT gateway IP addresses and new VPC endpoint service addresses for Private Networking.

**Tip: Update your IP allowlists**

If you have IP allowlists on external systems that Neon connects to, **update those allowlists to include the new NAT gateway addresses**. Connections may be affected intermittently if traffic routes through non-allowlisted NAT gateways.

If you use Private Networking in `eu-central-1`, you can now use the additional VPC endpoint service addresses for enhanced capacity and reliability. See the [Regions documentation](https://neon.com/docs/introduction/regions#aws-nat-gateway-ip-addresses) for the complete list of NAT gateway IPs and the [Private Networking guide](https://neon.com/docs/guides/neon-private-networking) for VPC endpoint service addresses by region.
